body {
            font-family: 'Roboto', sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Altera para alinhar no topo */
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: rgb(114, 47, 55);
            color: #FFFFFF;
            text-align: center;
            overflow-y: auto; /* Permite rolagem vertical */
            overflow-x: hidden; /* Esconde rolagem horizontal */
            position: relative;
        }
        .header {
            width: 100%;
            background-color: rgb(80, 30, 35);
            padding: 15px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }
        .header .logo img {
            max-width: 180px;
            height: auto;
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
        }
        .container {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            max-width: 700px;
            width: 90%;
            position: relative;
            z-index: 1;
            animation: fadeIn 1.5s ease-in-out;
            border: none;
            margin-top: 20px;
            margin-bottom: 20px;
            box-sizing: border-box;
            flex-shrink: 0; /* Impede que o container encolha */
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3em;
            margin-bottom: 15px;
            color: #CCCCCC;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        p {
            line-height: 1.6;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        .contact-info {
            margin-top: 20px;
            border-top: 2px solid #FFD700;
            padding-top: 15px;
        }
        .contact-info p {
            margin: 8px 0;
            font-size: 1em;
        }
        .contact-info a {
            color: #FFD700;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
            display: inline;
            padding: 0;
            border-radius: 0;
        }
        .contact-info a:hover {
            color: #FFFFFF;
            text-decoration: underline;
            background-color: transparent;
        }
        .loading-dots {
            margin-top: 20px;
            font-size: 2em;
            color: #FFD700;
        }
        .loading-dots span {
            animation: blink 1.4s infinite both;
        }
        .loading-dots span:nth-child(2) {
            animation-delay: .2s;
        }
        .loading-dots span:nth-child(3) {
            animation-delay: .4s;
        }
        @keyframes blink {
            0% { opacity: .2; }
            20% { opacity: 1; }
            100% { opacity: .2; }
        }
        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 0;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .header .logo img {
                max-width: 120px;
            }
            .container {
                padding: 20px;
                margin-top: 15px;
                margin-bottom: 15px;
            }
            h1 {
                font-size: 2.5em;
            }
            p {
                font-size: 0.9em;
            }
            .contact-info p {
                font-size: 0.8em;
            }
            .loading-dots {
                font-size: 1.5em;
            }
        }

        @media (max-width: 480px) {
            .header .logo img {
                max-width: 100px;
            }
            .container {
                padding: 15px;
                margin-top: 10px;
                margin-bottom: 10px;
            }
            h1 {
                font-size: 2em;
            }
            p {
                font-size: 0.8em;
            }
            .contact-info p {
                font-size: 0.7em;
            }
            .loading-dots {
                font-size: 1.2em;
            }
        }


