/* ======================== */
/* Estilos Gerais e Seções */
/* ======================== */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f1419;
    color: #fff;
    margin: 0;
    padding: 0;
    /* --- SOLUÇÃO PARA O CABEÇALHO FIXO --- */
    /* Empurra o conteúdo para baixo. O valor '80px' é um exemplo, ajuste-o para a altura real do seu cabeçalho. */
    padding-top: 80px; 
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    text-align: center;
}

p {
    color: #a0a6b0;
    line-height: 1.6;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #0f1419;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b894 0%, #009c7a 100%);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #00d4aa;
    color: #00d4aa;
}

.btn-secondary:hover {
    background: rgba(0, 212, 170, 0.1);
    color: #00b894;
    border-color: #00b894;
}

/* ======================== */
/* Seção Hero (Home) */
/* ======================== */

.hero {
    background: linear-gradient(135deg, #13171b 0%, #181b19 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    /* Removido o padding-top daqui para evitar conflito com o 'body' */
}
.hero-buttons {
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(2px);
    cursor: pointer;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.packages-btn {
    text-align: center;
    margin-top: 60px;
}

/* ======================== */
/* Seção Sobre (About) */
/* ======================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    width: 100%;
}

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.18);
    border-color: #00d4aa;
    background: rgba(0, 212, 170, 0.10);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #a0a6b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ======================== */
/* Seção de Destaques */
/* ======================== */

.highlight-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-message h3 {
    color: #ffffff;
    margin-bottom: 16px;
}

.highlight-message p {
    color: #a0a6b0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 212, 170, 0.25);
}

.package-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: #0f1419;
}

.package-info {
    padding: 24px;
    flex-grow: 1;
}

.package-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.package-info p {
    color: #a0a6b0;
    margin-bottom: 16px;
}

.price {
    font-size: 1.2rem;
    color: #00d4aa;
    font-weight: bold;
    margin-bottom: 20px;
}

.fade-in-up {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== */
/* Rodapé (Footer) */
/* ======================== */

footer {
    background: rgba(15, 20, 25, 0.95);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section ul,
.footer-section li {
    color: #a0a6b0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    color: #a0a6b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4aa;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0a6b0;
}

/* ======================== */
/* Responsive Design */
/* ======================== */

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .highlight-message {
        padding: 40px 10px;
    }
}