/* --- RESET E CONFIGURAÇÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

/* --- HEADER PRINCIPAL (#152336) --- */
.main-header {
    width: 100%;
    background-color: #152336; 
    position: fixed;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo h1 {
    color: #C6A46C;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #C6A46C;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: #C6A46C;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- CARROSSEL HERO --- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh; /* Altura ideal Desktop */
    overflow: hidden;
    margin-top: 60px; /* Compensa Header */
    background-color: #152336;
}

.carousel-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

/* Overlay Progressivo (Escuro em cima e embaixo) */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(21, 35, 54, 0.6) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Evita cortar cabeças */
}

/* --- FRASES NAS IMAGENS --- */
.carousel-caption {
    position: absolute;
    bottom: 80px;
    left: 5%;
    z-index: 5;
    color: #fff;
    max-width: 600px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

.carousel-caption h2 {
    color: #C6A46C;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: 1.2rem;
    font-weight: 300;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- INDICADORES --- */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #C6A46C;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #C6A46C;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(198, 164, 108, 0.6);
}

/* --- RESPONSIVIDADE --- */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; margin: 5px auto; background-color: #C6A46C; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: #152336;
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 30px 0;
    }
    .nav-links.active { left: 0; }
    .nav-links li { margin: 15px 0; }
    
    .hero-carousel { height: 60vh; }
    .carousel-item img { object-position: center center; }
    
    .carousel-caption { bottom: 60px; }
    .carousel-caption h2 { font-size: 1.6rem; }
    .carousel-caption p { font-size: 1rem; }
}

/* --- SEÇÃO SOBRE (ESTILO LUXO) --- */
.about-section {
    background-color: #f8f5f0; /* Tom off-white da referência */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.about-section .container {
    max-width: 1100px;
    width: 100%;
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-column {
    flex: 1;
}

.about-column h2 {
    color: #C6A46C; /* Dourado da marca */
    font-family: 'Playfair Display', serif; /* Sugestão de fonte elegante se disponível */
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-column p {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Linha Divisória Vertical */
.vertical-divider {
    width: 1px;
    height: 300px;
    background-color: #d1c7b7; /* Bege acinzentado sutil */
    align-self: center;
}

/* --- RESPONSIVIDADE SOBRE --- */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-column p {
        text-align: center;
    }

    .vertical-divider {
        width: 60px;
        height: 1px;
        margin: 20px auto;
    }

    .about-section {
        padding: 60px 8%;
    }
}

/* --- SEÇÃO SERVIÇOS (MESMA COR DO HEADER #152336) --- */
.services-section {
    background-color: #152336; /* Cor idêntica ao Header */
    padding: 100px 5%;
    text-align: center;
}

.services-header span {
    color: #C6A46C; /* Dourado da marca */
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin: 15px 0 60px;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    /* Fundo levemente diferente para dar profundidade sobre o #152336 */
    background-color: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(198, 164, 108, 0.1); /* Borda sutil inicial */
    padding: 50px 30px;
    text-align: left;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* --- EFEITO HOVER (CONFORME REFERÊNCIA) --- */
.service-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #C6A46C; /* Ativa borda dourada no hover */
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-card:hover h3 {
    color: #C6A46C; /* Título muda para dourado no hover */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 8%;
    }
}

/* --- SEÇÃO PLANOS (ESTILO OFF-WHITE LUXO) --- */
.plans-section {
    background-color: #f8f5f0; /* Referência Seção Sobre */
    padding: 100px 5%;
    text-align: center;
}

.plans-header span {
    color: #C6A46C;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.plans-header h2 {
    color: #152336;
    font-size: 2.5rem;
    margin: 15px 0 60px;
    font-family: 'Playfair Display', serif;
}

.plans-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.plan-column {
    flex: 1;
    padding: 40px 20px;
}

.plan-column h3 {
    color: #C6A46C;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}

.plan-price {
    font-size: 1.2rem;
    color: #152336;
    margin-bottom: 30px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    text-align: center;
}

.plan-features li {
    color: #4a4a4a;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Divisória Vertical (Mesmo estilo da Seção Sobre) */
.plans-content .vertical-divider {
    width: 1px;
    height: 350px;
    background-color: #d1c7b7;
    align-self: center;
}

/* Destaque sutil para o plano central */
.plan-column.highlight {
    background-color: rgba(198, 164, 108, 0.05);
    border-radius: 5px;
}

/* --- RESPONSIVIDADE PLANOS --- */
@media (max-width: 768px) {
    .plans-content {
        flex-direction: column;
    }

    .plans-content .vertical-divider {
        width: 60px;
        height: 1px;
        margin: 20px auto;
    }
    
    .plan-column {
        padding: 20px 0;
    }
}

/* --- SEÇÃO DE DEPOIMENTOS (MESMA COR DO HEADER) --- */
.testimonials-section {
    background-color: #152336; /* Mesma cor do Header */
    padding: 100px 5%;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    overflow-x: hidden; /* Mudamos de 'auto' para 'hidden' para o JS assumir o controle */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.testimonials-header span {
    color: #C6A46C;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    margin: 15px 0 60px;
    font-family: 'Playfair Display', serif;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 20px;
}

.testimonial-card p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f1f1f1;
}

.testimonial-card h4 {
    color: #C6A46C;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    .testimonial-card p {
        font-size: 1.1rem;
    }
}

/* --- SEÇÃO CONTATO (REFERÊNCIA OFF-WHITE) --- */
.contact-section {
    background-color: #f8f5f0; /* Mesmo tom da seção Sobre e Planos */
    padding: 100px 5%;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo das Informações */
.contact-info {
    flex: 1;
}

.contact-info span {
    color: #C6A46C;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-info h2 {
    color: #152336;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin: 15px 0 25px;
}

.contact-info p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

/* --- CORREÇÃO DEFINITIVA DE ALINHAMENTO --- */
.info-details .info-item {
    display: flex;
    align-items: center; /* Alinha o ícone e o texto pelo centro vertical */
    gap: 15px;
    margin-bottom: 25px;
}

.info-details .icon {
    color: #C6A46C;
    font-size: 1.2rem;
    width: 24px; /* Fixa a largura para os textos começarem na mesma coluna */
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-details .info-item p {
    margin: 0 !important; /* Remove a margem padrão do <p> que causa o "degrau" */
    line-height: 1;      /* Garante que a altura da linha não empurre o texto */
    color: #4a4a4a;
    font-size: 1.05rem;
}

/* Estilo do Formulário */
.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid #d1c7b7;
    font-family: inherit;
    color: #152336;
    outline: none;
    transition: 0.3s;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #C6A46C;
}

.btn-send {
    background: transparent;
    color: #C6A46C;
    border: 1px solid #C6A46C;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-send:hover {
    background: #C6A46C;
    color: #fff;
}

/* --- RESPONSIVIDADE CONTATO --- */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Verde Oficial */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulseWhatsApp 2s infinite; /* Efeito de atenção */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Animação de Pulsação */
@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Esconder no mobile se preferir algo menor, ou manter fixo */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* --- RODAPÉ (MESMA COR DO HEADER #152336) --- */
.main-footer {
    background-color: #152336;
    padding: 30px 5%;
    color: #fff;
    border-top: 1px solid rgba(198, 164, 108, 0.2); /* Linha dourada sutil */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 20px; /* Ajuste de espaçamento entre ícones conforme instrução */
}

.social-icon {
    color: #C6A46C; /* Dourado da marca */
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}