/* ===================================
   RESET E CONFIGURAÇÕES GLOBAIS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores */
    --cream: #fef9f5;
    --peach: #f6c3ae;
    --brown: #3b0a06;
    --brown-dark: #2a0704;
    --purple: #9b87a2;
    --olive-dark: #48492a;
    --olive-light: #afb06a;

    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(59, 10, 6, 0.1);
    --shadow-md: 0 4px 16px rgba(59, 10, 6, 0.15);
    --shadow-lg: 0 8px 30px rgba(59, 10, 6, 0.25);
    --shadow-xl: 0 12px 40px rgba(59, 10, 6, 0.35);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVEGAÇÃO MODERNA
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(59, 10, 6, 0.1);
    z-index: 999;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(254, 249, 245, 0.98);
    box-shadow: 0 4px 30px rgba(59, 10, 6, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    transition: var(--transition-smooth);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--olive-dark);
    font-weight: 500;
}

.nav-logo:hover .logo-text {
    color: var(--olive-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive-dark);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--olive-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--olive-dark);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--brown);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brown);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===================================
   BOTÃO WHATSAPP FIXO
   =================================== */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 38px;
    height: 38px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--brown);
    color: var(--cream);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ===================================
   BOTÃO VOLTAR AO TOPO
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--brown);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--cream);
}

/* ===================================
   ANIMAÇÕES
   =================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   SEÇÃO HERO
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--peach) 0%, var(--olive-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"%3E%3Cdefs%3E%3ClinearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23f6c3ae;stop-opacity:0.3" /%3E%3Cstop offset="100%25" style="stop-color:%239b87a2;stop-opacity:0.2" /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx="200" cy="200" r="80" fill="url(%23grad1)"/%3E%3Ccircle cx="100" cy="400" r="60" fill="%23fef9f5" opacity="0.4"/%3E%3C/svg%3E') center/contain no-repeat;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Cpath d="M100,20 Q150,50 150,100 Q150,150 100,180 Q50,150 50,100 Q50,50 100,20" fill="%23afb06a" opacity="0.15"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-quote-destaque {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--brown);
    margin-bottom: 45px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info-box {
    background: rgba(254, 249, 245, 0.95);
    padding: 30px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

.hero-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hero-name {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-role {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--olive-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-crp {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--olive-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-atendimento {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--brown);
    font-weight: 500;
}

.hero-photo-container {
    margin: 40px auto;
    max-width: 500px;
    width: 100%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--brown);
    transition: var(--transition-smooth);
}

.hero-photo:hover {
    transform: scale(1.02);
}

.hero-experiencia {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: var(--brown);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
    font-style: italic;
    font-weight: 500;
    padding: 25px;
    background: rgba(254, 249, 245, 0.8);
    border-radius: 15px;
    border-left: 4px solid var(--peach);
}

/* ===================================
   BOTÕES CTA
   =================================== */
.cta-button {
    display: inline-block;
    background: var(--brown);
    color: var(--cream);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ===================================
   SEÇÕES GERAIS
   =================================== */
.section {
    padding: 90px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--brown);
    margin-bottom: 60px;
    font-weight: 600;
}

/* ===================================
   SEÇÃO PROBLEMAS
   =================================== */
.problemas-section {
    background: linear-gradient(135deg, rgba(72, 73, 42, 0.9) 0%, rgba(59, 10, 6, 0.85) 100%);
    position: relative;
    overflow: hidden;
}

.problemas-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="80" fill="%23afb06a" opacity="0.15"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 12s ease-in-out infinite;
}

.problemas-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"%3E%3Ccircle cx="150" cy="150" r="100" fill="%23f6c3ae" opacity="0.1"/%3E%3Ccircle cx="80" cy="220" r="60" fill="%239b87a2" opacity="0.08"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 10s ease-in-out infinite reverse;
}

.problemas-section .section-title {
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.problemas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.problema-card {
    background: linear-gradient(135deg, rgba(246, 195, 174, 0.2), rgba(175, 176, 106, 0.2));
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid rgba(246, 195, 174, 0.3);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.problema-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--peach);
    background: linear-gradient(135deg, rgba(246, 195, 174, 0.25), rgba(175, 176, 106, 0.25));
}

.problema-icon {
    width: 60px;
    height: 60px;
    background: rgba(246, 195, 174, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.problema-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--cream);
}

.problema-card:hover .problema-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--peach);
}

.problema-text {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--cream);
    line-height: 1.8;
    text-align: center;
}

.divisor {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--peach), var(--purple));
    margin: 50px auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.problemas-conclusao {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--peach);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.problemas-texto-final {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--cream);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===================================
   SEÇÃO PROPOSTA
   =================================== */
.proposta-section {
    background: linear-gradient(135deg, var(--olive-dark) 0%, var(--brown) 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.proposta-section::before {
    content: '';
    position: absolute;
    top: -8%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Crect x="40" y="40" width="120" height="120" rx="15" fill="%23fef9f5" opacity="0.08"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 9s ease-in-out infinite;
}

.proposta-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="80" fill="%23afb06a" opacity="0.1"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 11s ease-in-out infinite reverse;
}

.proposta-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.proposta-left {
    max-width: 800px;
    text-align: center;
}

.proposta-left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.proposta-left p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.proposta-video {
    width: 100%;
    max-width: 600px;
    /* Era 450px, agora 600px */
    margin: 0 auto;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, rgba(59, 10, 6, 0.3), rgba(72, 73, 42, 0.3));
    min-height: 400px;
    /* Define altura mínima para evitar o quadrado preto */
}

.video-container video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: contain;
    background: transparent;
}

.proposta-btn {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* ===================================
   SEÇÃO ABORDAGEM
   =================================== */
.abordagem-section {
    background: linear-gradient(135deg, rgba(155, 135, 162, 0.25) 0%, rgba(175, 176, 106, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.abordagem-section::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="80" fill="%23f6c3ae" opacity="0.15"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 10s ease-in-out infinite;
}

.abordagem-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"%3E%3Cpath d="M150,50 L250,150 L150,250 L50,150 Z" fill="%239b87a2" opacity="0.12"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 13s ease-in-out infinite reverse;
}

.abordagem-section .section-title {
    position: relative;
    z-index: 1;
}

.abordagem-section>.container>p {
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--olive-dark);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, rgba(254, 249, 245, 0.95), rgba(246, 195, 174, 0.15));
    border: 2px solid var(--peach);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(254, 249, 245, 1), rgba(246, 195, 174, 0.25));
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--olive-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--peach) 0%, var(--olive-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brown);
    stroke-width: 2.5;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.15);
    box-shadow: var(--shadow-md);
    animation: pulse 1s infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brown);
    font-weight: 600;
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--olive-dark);
}

.abordagem-conclusao {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--brown);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 500;
}

/* ===================================
   SEÇÃO SOBRE
   =================================== */
.sobre-section {
    background: linear-gradient(135deg, rgba(246, 195, 174, 0.2) 0%, rgba(175, 176, 106, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"%3E%3Crect x="50" y="50" width="200" height="200" rx="20" fill="%239b87a2" opacity="0.12"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 11s ease-in-out infinite;
}

.sobre-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="70" fill="%23f6c3ae" opacity="0.15"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 9s ease-in-out infinite reverse;
}

.sobre-section .section-title {
    position: relative;
    z-index: 1;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sobre-image {
    flex: 1;
    min-width: 300px;
}

.sobre-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.sobre-image img:hover {
    transform: scale(1.02);
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-text h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.sobre-crp {
    font-size: 1.1rem;
    color: var(--olive-dark) !important;
    margin-bottom: 25px !important;
    font-weight: 600;
}

.sobre-text p {
    font-size: 1.05rem;
    color: var(--brown);
    margin-bottom: 18px;
    line-height: 1.8;
}

.sobre-final {
    font-style: italic;
    margin-top: 25px !important;
    color: var(--olive-dark) !important;
    font-weight: 600;
    background: rgba(175, 176, 106, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--olive-dark);
}

/* ===================================
   SEÇÃO DEPOIMENTOS
   =================================== */
.depoimentos-section {
    background: linear-gradient(135deg, var(--purple) 0%, var(--peach) 100%);
    position: relative;
    overflow: hidden;
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: -8%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="70" fill="%23fef9f5" opacity="0.15"/%3E%3Ccircle cx="140" cy="60" r="40" fill="%23fef9f5" opacity="0.1"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 10s ease-in-out infinite;
}

.depoimentos-section::after {
    content: '';
    position: absolute;
    bottom: -12%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"%3E%3Cpolygon points="150,30 270,210 30,210" fill="%23fef9f5" opacity="0.12"/%3E%3C/svg%3E') center/contain no-repeat;
    animation: float 12s ease-in-out infinite reverse;
}

.depoimentos-section .section-title {
    color: var(--cream);
    position: relative;
    z-index: 1;
}

.depoimentos-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cream);
    margin-bottom: 50px;
    font-style: italic;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.depoimento-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.depoimento-aspas {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--peach), var(--purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.depoimento-aspas svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.depoimento-card:hover .depoimento-aspas {
    transform: rotate(10deg) scale(1.1);
}

.depoimento-text {
    font-style: italic;
    color: var(--brown);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===================================
   SEÇÃO CTA FINAL
   =================================== */
.cta-final {
    background: var(--brown);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-final .cta-button {
    background: var(--cream);
    color: var(--brown);
    position: relative;
    z-index: 1;
}

.cta-final .cta-button:hover {
    background: var(--peach);
    color: var(--brown);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--olive-dark);
    color: var(--cream);
    padding: 60px 20px 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 45px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--cream);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--peach);
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(254, 249, 245, 0.85);
}

.footer-crp {
    color: var(--olive-light) !important;
    font-weight: 600;
    margin-top: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: rgba(254, 249, 245, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--peach);
    transform: translateX(5px);
}

.footer-info {
    list-style: none;
}

.footer-info li {
    margin-bottom: 12px;
    color: rgba(254, 249, 245, 0.85);
    font-size: 1rem;
    padding-left: 20px;
    position: relative;
}

.footer-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--peach);
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(254, 249, 245, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition-smooth);
    border: 2px solid rgba(254, 249, 245, 0.2);
}

.social-links a:hover {
    background: var(--peach);
    color: var(--brown);
    transform: translateY(-5px);
    border-color: var(--peach);
}

.footer-bottom {
    border-top: 1px solid rgba(254, 249, 245, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(254, 249, 245, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom a {
    color: var(--peach);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--cream);
    text-decoration: underline;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    /* Navegação Mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(254, 249, 245, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 30px;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        text-align: left;
        font-size: 1.1rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Seções */
    .section {
        padding: 70px 20px;
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-quote-destaque {
        margin-bottom: 30px;
    }

    .hero-info-box {
        padding: 25px 30px;
        margin-bottom: 30px;
    }

    .hero-photo-container {
        max-width: 100%;
        margin: 30px auto;
    }

    .hero-experiencia {
        padding: 20px;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 16px 35px;
    }

    .problemas-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .sobre-content {
        flex-direction: column;
        gap: 40px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button svg {
        width: 34px;
        height: 34px;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
    }

    .proposta-video {
        max-width: 450px;
        /* Era 350px, agora 450px */
    }

    .video-container video {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-subtitle {
        font-size: 0.7rem;
    }

    .section {
        padding: 60px 15px;
    }

    .hero {
        padding: 100px 15px 50px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .problema-card,
    .feature-card,
    .depoimento-card {
        padding: 30px 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===================================
   ANIMAÇÕES DE SCROLL
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MODO ESCURO (opcional)
   =================================== */
@media (prefers-color-scheme: dark) {
    /* Você pode adicionar estilos para modo escuro aqui se desejar */
}

/* ===================================
   OTIMIZAÇÕES DE IMPRESSÃO
   =================================== */
@media print {

    .whatsapp-button,
    .scroll-to-top,
    .navbar,
    .nav-toggle {
        display: none !important;
    }

    .section {
        page-break-inside: avoid;
    }
}