/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5c0e62;
    --primary-dark: #430a46;
    --primary-light: #7b3a81;
    --accent-color: #d4af37;
    --accent-dark: #c19b26;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9f7fe;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

strong {
    font-weight: 700;
    color: var(--primary-color);
}

.secao-cabecalho {
    text-align: center;
    margin-bottom: 50px;
}

.secao-cabecalho h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
}

.secao-descricao {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 20px;
}

.linha-decorativa {
    height: 3px;
    width: 80px;
    background: var(--accent-color);
    margin: 0 auto;
    position: relative;
}

.linha-decorativa::before,
.linha-decorativa::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    top: 0;
}

.linha-decorativa::before {
    left: -40px;
}

.linha-decorativa::after {
    right: -40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
}

.menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.menu li a:hover::after {
    width: 100%;
}

.btn-menu {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-menu:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-mobile span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Botões */
.btn-principal {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-principal:hover {
    background-color: var(--accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-secundario {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
    border: 2px solid white;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secundario:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-video {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(92, 14, 98, 0.3);
}

.btn-video:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(92, 14, 98, 0.4);
}

.btn-video i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-grande {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 30px 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-grande:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.cta-center {
    text-align: center;
    margin: 30px 0;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,32L48,53.3C96,75,192,117,288,122.7C384,128,480,96,576,85.3C672,75,768,85,864,122.7C960,160,1056,224,1152,234.7C1248,245,1344,203,1392,181.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    flex: 1;
}

.hero-image {
    flex: 1;
    max-width: 400px;
    margin-left: auto;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    top: -15px;
    left: -15px;
    z-index: -1;
    opacity: 0.6;
}

.hero h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: white;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2.destacado {
    font-size: 3.8rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitulo {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero .chamada {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ctas {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 70px;
}

/* Seção Quem é a Protagonista */
.secao-protagonista {
    background-color: var(--bg-color);
    padding: 100px 0 80px;
    position: relative;
}

.caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.item:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.item i {
    font-size: 38px;
    color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 50%;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Seção O que é o Despertar */
.secao-despertar {
    background-color: #f5f5f7;
    padding: 100px 0;
    position: relative;
}

.conteudo-despertar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.imagem-despertar {
    flex: 1;
    max-width: 45%;
}

.imagem-decorada {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.imagem-decorada img {
    border-radius: 15px;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.texto-despertar {
    flex: 1;
}

.card-info {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.card-info::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 100px;
    color: rgba(92, 14, 98, 0.1);
    font-family: serif;
    line-height: 0.8;
}

.card-info p {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.card-info p:first-of-type {
    padding-top: 20px;
}

.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Seção Antes e Depois */
.secao-antes-depois {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.antes, .depois {
    margin-bottom: 80px;
}

.conteudo-antes-depois {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.imagem-circular {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid white;
    position: relative;
    flex-shrink: 0;
}

.imagem-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.imagem-circular:hover img {
    transform: scale(1.1);
}

.lista {
    flex: 1;
}

.lista-negativa,
.lista-positiva {
    list-style-type: none;
    padding: 0;
}

.lista-negativa li,
.lista-positiva li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

.lista-negativa li i,
.lista-positiva li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
}

.lista-negativa li i {
    color: #e74c3c;
}

.lista-positiva li i {
    color: #28a745;
}

.lista-positiva {
    padding-left: 30px;
}

.depois .lista {
    padding-left: 180px;
}

/* Seção Como Funciona */
.secao-como-funciona {
    background-color: var(--primary-color);
    padding: 100px 0;
    color: white;
}

.secao-como-funciona .secao-cabecalho h2 {
    color: white;
}

.texto-como-funciona p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

/* Seção Programação de Atendimentos */
.secao-programacao {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.semanas-programacao {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.semana {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: white;
}

.semana-header {
    background-color: var(--primary-color);
    padding: 15px 20px;
}

.semana-header h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

.semana-conteudo {
    padding: 25px;
    background-color: #f8e6fa;
}

.dia-atendimento {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dia-atendimento:last-child {
    margin-bottom: 0;
}

.dia-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}

.dia-texto {
    font-size: 1rem;
}

.dia-texto strong {
    margin-right: 5px;
}

/* Seção O que não é */
.secao-o-que-nao-e {
    background-color: #f6dbff;
    padding: 100px 0;
}

.cards-nao-e {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-nao-e {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-left: 5px solid #e74c3c;
}

.card-nao-e:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-nao-e i {
    color: #e74c3c;
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.card-nao-e p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Seção CTA */
.secao-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.secao-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,32L48,53.3C96,75,192,117,288,122.7C384,128,480,96,576,85.3C672,75,768,85,864,122.7C960,160,1056,224,1152,234.7C1248,245,1344,203,1392,181.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-detalhes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.detalhe {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detalhe i {
    font-size: 24px;
    color: var(--accent-color);
}

.detalhe span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Modal de Vídeo */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

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

.modal-content h3 {
    margin-bottom: 30px;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--accent-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer Styles */
.footer-simples {
    background-color: #5c0e62;
    padding: 25px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    flex: 1;
}

.footer-left h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 8px 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-left p {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-right a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

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

    .footer-left {
        margin-bottom: 5px;
    }

    .footer-right {
        justify-content: center;
    }
}

/* Animações */
.animated {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero h2.destacado {
        font-size: 3.2rem;
    }
    
    .hero .chamada {
        font-size: 1.6rem;
    }

    .caracteristicas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .ctas {
        justify-content: center;
    }
    
    .hero-image {
        margin: 30px auto 0;
    }
    
    .conteudo-despertar {
        flex-direction: column;
    }
    
    .imagem-despertar {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .conteudo-antes-depois {
        flex-direction: column;
    }
    
    .lista {
        order: 2;
    }
    
    .depois .lista {
        order: 2;
    }
    
    .depois .imagem-circular {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
    }
    
    .menu.active {
        display: flex;
    }
    
    .btn-menu {
        margin-top: 10px;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero h2.destacado {
        font-size: 2.5rem;
    }
    
    .hero .chamada {
        font-size: 1.4rem;
    }
    
    .ctas {
        flex-direction: column;
    }
    
    .caracteristicas {
        grid-template-columns: 1fr;
    }
    
    .etapas-numeros {
        grid-template-columns: 1fr;
    }
    
    .cards-nao-e {
        flex-direction: column;
        align-items: center;
    }
    
    .card-nao-e {
        width: 100%;
    }
    
    .cta-detalhes {
        flex-direction: column;
        gap: 20px;
    }
    
    .secao-antes-depois {
        padding: 70px 0;
    }
    
    .conteudo-antes-depois {
        gap: 30px;
    }
    
    .imagem-circular {
        width: 220px;
        height: 220px;
    }
    
    .antes, .depois {
        margin-bottom: 60px;
    }
    
    .lista-negativa li, 
    .lista-positiva li {
        font-size: 0.95rem;
    }
    
    .texto-como-funciona p {
        font-size: 1rem;
    }
    
    .semana-conteudo {
        padding: 20px;
    }
    
    .dia-atendimento {
        margin-bottom: 12px;
    }
    
    .dia-texto {
        font-size: 0.9rem;
    }
    
    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .info-card {
        width: 100%;
    }
    
    .secao-depoimentos {
        padding: 70px 0;
    }
    
    .secao-depoimentos .secao-cabecalho h2 {
        font-size: 1.6rem;
    }
    
    .secao-quem-sou,
    .secao-faq {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h2.destacado {
        font-size: 2.2rem;
    }
    
    .hero .chamada {
        font-size: 1.3rem;
    }
    
    .secao-cabecalho h2 {
        font-size: 2rem;
    }
    
    .item {
        padding: 20px;
    }
    
    .item i {
        font-size: 30px;
        min-width: 60px;
        height: 60px;
    }
    
    .card-info {
        padding: 25px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .btn-grande {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .secao-depoimentos .secao-cabecalho h2 {
        font-size: 1.4rem;
    }
    
    .card-info p:first-of-type {
        padding-top: 30px;
    }
    
    .faq-pergunta {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .faq-resposta.ativo {
        padding: 15px;
    }
    
    .perfil-foto-central img {
        width: 150px;
        height: 150px;
        border-width: 6px;
    }
}

/* Cards informativos na seção Como Funciona */
.info-importante {
    max-width: 900px;
    margin: 40px auto 0;
}

.info-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.info-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 25px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-light);
}

/* Seção Depoimentos */
.secao-depoimentos {
    background-color: #333;
    color: white;
    padding: 100px 0;
    position: relative;
}

.secao-depoimentos .secao-cabecalho h2 {
    color: white;
    font-size: 2rem;
}

.swiper-container {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.depoimento-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.depoimento-slide img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* Exibir elementos de navegação do Swiper com cor branca */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    z-index: 10;
    background: transparent;
    border-radius: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    color: white;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-next {
    right: -50px;
}

.swiper-pagination {
    display: block;
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background-color: #ffffff !important;
    opacity: 0.7;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #f7eafc !important;
}

/* Estilo de cursor para indicar que o slide é arrastável */
.swiper-slide {
    cursor: grab;
}

.swiper-slide:active {
    cursor: grabbing;
}

/* Seção Quem Sou Eu */
.secao-quem-sou {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.perfil-foto-central {
    text-align: center;
    margin-bottom: 40px;
}

.perfil-foto-central img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: var(--shadow);
    display: inline-block;
}

.perfil-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.perfil-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.perfil-info p:first-of-type {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Seção FAQ - Melhorar animações */
.secao-faq {
    background-color: #f7eafc;
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow);
}

.faq-pergunta {
    background-color: white;
    color: var(--primary-color);
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-left: 5px solid transparent;
}

.faq-pergunta:hover {
    background-color: #f9f7fe;
}

.faq-pergunta.ativo {
    border-left: 5px solid var(--primary-color);
}

.faq-pergunta i {
    transition: transform 0.4s ease-in-out;
}

.faq-pergunta.ativo i {
    transform: rotate(180deg);
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.faq-resposta.ativo {
    max-height: 500px !important;
    padding: 20px;
}

.faq-resposta p {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    transition-delay: 0.1s;
}

.faq-resposta.ativo p {
    opacity: 1;
    transform: translateY(0);
}

.faq-resposta p:last-child {
    margin-bottom: 0;
}

/* Estilos para o modal de captura de leads */
.lead-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.lead-modal-content {
    position: relative;
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.lead-modal-content h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(92, 14, 98, 0.2);
    outline: none;
}

/* Responsividade para o modal */
@media (max-width: 768px) {
    .lead-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 25px;
    }
    
    .lead-modal-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .lead-modal-content {
        padding: 20px;
    }
    
    .form-group input {
        padding: 10px 12px;
    }
}

/* Estilos para o modal de vídeo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    background-color: #121212;
    margin: 2% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.lead-modal-content h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
} 