/* --- Variáveis Globais --- */
:root {
    --primary: #d81b60; /* Rosa Sofá Belo */
    --primary-dark: #ad1457;
    --whatsapp: #25D366;
    --whatsapp-dark: #1da851;
    --dark: #222;
    --gray: #666;
    --bg-light: #f4f6f8;
    --white: #fff;
    --font: 'Poppins', sans-serif;
}

/* --- Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-gray { background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 10px; font-weight: 700; }
.section-header p { color: var(--gray); font-size: 1.1rem; }
.section-cta { text-align: center; margin-top: 40px; }

/* --- Botões (Conversão) --- */
.btn-hero {
    display: inline-block; padding: 18px 40px; background: var(--whatsapp); color: white;
    font-size: 1.1rem; font-weight: 700; border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); text-transform: uppercase;
}
.btn-hero:hover { background: var(--whatsapp-dark); transform: translateY(-3px); }

.btn-secondary {
    display: inline-block; padding: 12px 30px; border: 2px solid var(--primary);
    color: var(--primary); font-weight: 700; border-radius: 30px;
}
.btn-secondary:hover { background: var(--primary); color: white; }

.btn-whatsapp-solid {
    display: inline-block; padding: 15px 35px; background: var(--whatsapp); color: white;
    font-weight: 700; border-radius: 30px; font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-whatsapp-solid:hover { background: var(--whatsapp-dark); transform: scale(1.05); }

/* --- Header --- */
header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0; transition: 0.4s; background: transparent; }
header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 10px 0; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 90px; transition: 0.3s; }
header.scrolled .logo img { height: 75px; } /* Ajuste de altura na rolagem */


.desktop-nav a { margin-left: 20px; color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
header.scrolled .desktop-nav a { color: var(--dark); text-shadow: none; }
header.scrolled .desktop-nav a:hover { color: var(--primary); }

.btn-header { background: var(--primary); padding: 10px 20px; border-radius: 20px; text-shadow: none !important; color: white !important; }
.btn-header:hover { background: var(--primary-dark); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; }
.bar { width: 25px; height: 3px; background: white; margin: 5px; transition: 0.3s; }
header.scrolled .bar { background: var(--dark); }
.mobile-menu { display: none; background: white; padding: 20px; text-align: center; border-top: 1px solid #eee; }
.mobile-menu a { display: block; padding: 15px; color: var(--dark); font-weight: 600; }

/* --- Hero (75vh) - Desktop Style --- */
.hero {
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    overflow: hidden; 
    background: #000;
    
    /* CORREÇÃO: Espaço para a navbar fixa (Desktop) */
    padding-top: 100px; 
    min-height: calc(75vh + 100px); 
}

.hero-slides { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-bg.active { opacity: 0.5; } /* Imagem mais escura para ler texto */
.hero-content { position: relative; z-index: 10; animation: fadeInUp 1s ease; max-width: 800px; }

/* ESTILOS DE TEXTO DO HERO PARA DESKTOP */
.hero-content h1 { 
    font-size: 3rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    font-weight: 800; 
}
.hero-content p { 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
    opacity: 0.9; 
}

/* --- Serviços Grid --- */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid transparent; }
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.card h3 { margin-bottom: 10px; color: var(--primary); }

/* --- Galeria --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .img-box img {
    transform: scale(1.1); /* Zoom suave na imagem */
}

/* Etiqueta de Preço/Benefício na foto */
.tag-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Conteúdo do Card */
.card-content {
    padding: 25px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Botão Específico do Card */
.btn-card-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: #f0fff4; /* Fundo verde bem clarinho */
    color: var(--whatsapp-dark);
    border: 1px solid var(--whatsapp);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-card-wa img {
    width: 20px;
    height: 20px;
}

.btn-card-wa:hover {
    background-color: var(--whatsapp);
    color: white;
}

/* --- Diferenciais --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.diff-box { text-align: center; padding: 20px; }
.diff-box h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.3rem; }

/* --- Depoimentos (Carrossel Simples) --- */
.carousel-container { overflow: hidden; max-width: 800px; margin: 0 auto; text-align: center; }
.review-card { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin: 10px; }
.stars { color: #FFD700; margin-bottom: 15px; }

/* --- Seção Novo Capítulo --- */
.transformation-section {
    background: linear-gradient(to right, #ffffff, #f9f9f9); /* Gradiente sutil */
    padding: 80px 0;
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Lado Esquerdo: Texto */
.text-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 800;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.benefits-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Checklist Personalizado */
.custom-checklist {
    list-style: none;
    padding: 0;
}

.custom-checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.custom-checklist li:last-child {
    margin-bottom: 0;
}

.check-icon {
    min-width: 25px;
    height: 25px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    margin-top: 3px; 
}

.custom-checklist strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.custom-checklist span {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Wrapper */
.cta-wrapper {
    text-align: center; 
    background: #f0fff4; 
    padding: 25px;
    border-radius: 15px;
    border: 1px dashed var(--whatsapp);
}

.price-trigger {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-whatsapp-giant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, var(--whatsapp), var(--whatsapp-dark));
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}

.btn-whatsapp-giant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-giant img {
    width: 28px;
    height: 28px;
}

.security-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

/* Lado Direito: Imagem */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(216, 27, 96, 0.1); 
}

.image-wrapper img {
    width: 100%;
    height: 600px; 
    object-fit: cover;
    transition: transform 0.5s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Badge Flutuante na Imagem */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 5px solid var(--primary);
    animation: float 3s ease-in-out infinite;
}

.big-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.small-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

/* --- Footer --- */
footer {
    background-color: #f7f7f7; 
    color: #333;
    padding: 40px 0 20px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px; 
    margin-bottom: 30px;
    flex-wrap: wrap; 
}

.footer-column {
    flex: 1; 
    min-width: 250px; 
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark); 
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.service-list li a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.3s;
}

.service-list li a:hover, .link-footer:hover {
    color: var(--primary-dark);
}

/* Estilo para o botão WhatsApp no Footer */
.btn-whatsapp-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; 
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 15px 0;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 280px;
}

.btn-whatsapp-footer:hover {
    background-color: var(--whatsapp-dark);
}

.btn-whatsapp-footer img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.phone-number {
    font-size: 1rem;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 5px 0;
    color: #666;
}

/* --- WhatsApp Widget (Apenas o Ícone) --- */
.whatsapp-widget { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    z-index: 2000; 
}
.whatsapp-btn {
    width: 65px; height: 65px; background: var(--whatsapp); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: 0.3s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* --- Animações --- */
.pulse { animation: pulse-animation 2s infinite; }
.pulse-shadow { animation: pulse-green 2s infinite; }

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Responsividade (Media Queries) --- */

@media (max-width: 900px) {
    /* Layouts grandes que precisam ser alterados antes do mobile total */
    .split-layout {
        grid-template-columns: 1fr; /* Vira uma coluna só */
        gap: 30px;
    }
    .image-content {
        order: -1; /* Joga a imagem para cima no celular */
    }
    .image-wrapper img {
        height: 300px; /* Imagem menor no celular */
    }
    .text-content h2 {
        font-size: 2rem;
    }
    .floating-badge {
        left: 10px;
        bottom: 10px;
    }
}


@media (max-width: 768px) {
    /* Configurações gerais de mobile */
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }

    /* Menu e Navbar */
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    header.scrolled .logo img { height: 60px; } /* Logo ainda menor no mobile/scrolled */

    /* CORREÇÃO DO HERO PARA MOBILE */
    .hero {
        /* Ajuste do espaço da navbar */
        padding-top: 70px; 
        min-height: calc(75vh + 70px);
    }
    
    /* REDUÇÃO DO TEXTO (SOBRESCRITA) */
    .hero-content h1 {
        font-size: 1.8rem; /* Tamanho menor para celular */
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 0.95rem; /* Tamanho menor para celular */
        padding: 0 15px;
    }
    .btn-hero {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* Ajuste de Cards */
    .grid-4 { grid-template-columns: 1fr; }
    
    /* WhatsApp flutuante um pouco menor */
    .whatsapp-widget { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 55px; height: 55px; }
    .whatsapp-btn .fab { font-size: 30px !important; }
}

.cta-urgent-bar {
    padding: 40px 0; /* Espaçamento menor para ser mais agressiva */
    background: var(--primary); /* Usa a cor principal (Rosa Sofá Belo) */
    color: var(--white);
    text-align: center;
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-urgent-text {
    text-align: left;
}

.cta-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #ffc107; /* Amarelo ou outra cor vibrante para o "OFERTA" */
    text-transform: uppercase;
}

.cta-urgent-text h2 {
    font-size: 2rem;
    font-weight: 400; /* Reduz o peso para o 'strong' se destacar */
    line-height: 1.2;
    margin: 0;
}

.cta-urgent-text strong {
    font-weight: 800;
    color: #ffe0e9; /* Cor de destaque dentro do título */
}

/* Botão de Urgência (Mais Chamativo) */
.btn-urgent-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--whatsapp); /* Usa o verde do WhatsApp */
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap; /* Garante que o texto não quebre */
    transition: 0.3s;
}

.btn-urgent-wa i {
    font-size: 20px;
}

.btn-urgent-wa:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    color: #ffe0e9; /* Texto de escassez */
}

/* Responsividade para a Nova Seção */
@media (max-width: 900px) {
    .cta-urgent-bar {
        padding: 30px 0;
    }
    .cta-content-wrapper {
        flex-direction: column; /* Empilha no mobile */
        text-align: center;
    }
    .cta-urgent-text {
        text-align: center;
    }
    .cta-urgent-text h2 {
        font-size: 1.5rem;
    }
    .cta-urgent-action {
        width: 100%;
        max-width: 350px; /* Limita a largura do botão no mobile */
    }
    .btn-urgent-wa {
        width: 100%;
    }
}


/* =========================================================================
   Estrutura BÁSICA para Layout em Duas Colunas (split-layout)
   ========================================================================= */
/* Container principal para dividir o conteúdo */
.split-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha o conteúdo ao topo das colunas */
    gap: 40px; /* Espaço entre as colunas */
}

/* Define que ambas as colunas ocupem largura igual */
.split-layout .text-content,
.split-layout .image-content {
    flex: 1;
    min-width: 0; /* Permite que o conteúdo se ajuste corretamente */
}

/* Garante que a imagem preencha o espaço disponível */
.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Opcional: bordas arredondadas */
}

/* Estilo para envolver a imagem e posicionar o badge */
.image-content .image-wrapper {
    position: relative;
    display: block; /* Garante que a wrapper se ajuste à imagem */
}

/* Estilo para o Badge Flutuante (Floating Badge) */
.floating-badge {
    position: absolute;
    bottom: 20px; /* Distância da parte inferior da imagem */
    right: 20px; /* Distância da lateral direita da imagem */
    background-color: #007bff; /* Cor de fundo - Azul */
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-badge .big-num {
    font-size: 1.8rem;
    font-weight: 700;
}

.floating-badge .small-text {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* =========================================================================
   Ajustes para Mobile (Media Query)
   ========================================================================= */
@media (max-width: 992px) {
    /* Transforma as colunas em linhas no mobile */
    .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    /* Inverte a ordem no mobile (para que a imagem apareça antes do texto) */
    .split-layout.reverse-on-mobile {
        flex-direction: column-reverse;
    }
}

























/* Estilos da barra de promoção (Usado agora para o curso) */
.cta-urgent-bar {
    background-color: #2c3e50; /* Fundo escuro para contrastar */
    padding: 30px 0;
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
}

.cta-urgent-text {
    flex-basis: 65%; /* 65% da largura no desktop */
    color: white;
}

.cta-urgent-text h2 {
    margin: 5px 0 0 0;
    font-size: 1.8rem;
    line-height: 1.2;
}

.cta-tag {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    /* Cores do Tag do Curso (Novo) */
    background-color: #fce205; 
    color: #333;
    display: inline-block;
}

.cta-urgent-action {
    flex-basis: 30%; /* 30% da largura no desktop */
    text-align: right;
}

/* NOVO ESTILO DO BOTÃO NA BARRA (Para a promoção do curso) */
.btn-urgent-wa {
    background: #ff6a00; /* Laranja de Conversão */
    color: white !important;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    text-transform: uppercase;
}

.btn-urgent-wa:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 10px;
}

/* Responsividade para a barra */
@media (max-width: 768px) {
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .cta-urgent-text, .cta-urgent-action {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}



