body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8faff;
    color: #333;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 600px; /* Reduzir a largura máxima para um design mais minimalista */
    margin: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    overflow: hidden;
}

.header {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 36px;
    color: #007bff;
}

.logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.logo p {
    font-size: 18px;
    color: #555;
    margin: 0;
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background-color: #e0f7fa;
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.status-badge i {
    margin-right: 8px;
    font-size: 16px;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #007bff;
    background: linear-gradient(to right, #007bff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 18px;
    color: #666;
    max-width: 500px; /* Ajustar largura máxima para descrição */
    margin: 0 auto 40px auto;
}

/* Remover estilos para info-cards e contact-info */

.social-media {
    margin-top: 40px; /* Ajustar margem superior */
    margin-bottom: 40px;
}

.social-media h3 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #007bff;
    font-size: 30px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #28a745;
}

/* Remover estilos para notify-button */

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 14px;
}

.footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .logo p {
        font-size: 16px;
    }

    h2 {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }

    /* Remover media queries para info-cards, contact-items e notify-button */

    .social-icons a {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo i {
        font-size: 30px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo p {
        font-size: 14px;
    }

    h2 {
        font-size: 26px;
    }

    .social-icons a {
        font-size: 26px;
    }
}
