/*
Theme Name: Mariana Leite Advocacia
Theme URI: https://marianaleite.adv.br
Author: Pedro
Author URI: https://seusite.com
Description: Tema WordPress para advocacia especializada em Direito Bancário e do Consumidor. Design pixel-perfect com animações, carrossel de vídeos e popup exit-intent.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mariana-leite
Tags: one-column, custom-colors, custom-menu, featured-images, responsive-layout, translation-ready
*/

/* ==========================================
   VARIÁVEIS GLOBAIS
   ========================================== */
:root {
    --fonte-texto: 'Poppins', sans-serif;
    --fonte-titulos: 'Playfair Display', 'Georgia', serif;
    
    --cor-escura: #3a3732;
    --cor-accent: #af6343;
    --cor-clara: #f7f3ed;
    --cor-accent-light: #d4a18a;
    --cor-escura-clara: #4a4640;
    --cor-card-bg-light: #efe9df;

    --cor-primaria: var(--cor-clara);
    --cor-texto-principal: var(--cor-escura);
    --divisoria-secao-cor: rgba(175, 99, 67, 0.25);
    
    --section-light-bg: linear-gradient(180deg, #ffffff 0%, var(--cor-clara) 100%);
    --card-bg: linear-gradient(145deg, #FFFFFF 0%, var(--cor-card-bg-light) 100%);
    --card-borda: var(--card-bg-light);
    --card-borda-hover: var(--cor-accent);
    
    --btn-whatsapp: linear-gradient(135deg, #25D366, #128C7E);
    --btn-whatsapp-hover: linear-gradient(135deg, #128C7E, #075E54);
    
    --sombra-card: 0 8px 30px rgba(58, 55, 50, 0.12);
    --sombra-card-hover: 0 20px 40px rgba(175, 99, 67, 0.15);
    
    --sobre-bg: linear-gradient(180deg, #FFFFFF 0%, var(--cor-clara) 100%);
    --sobre-titulo-cor: var(--cor-escura);
    --sobre-texto-cor: #5a544e;
    --sobre-highlight: var(--cor-accent);
    --sobre-border: rgba(175, 99, 67, 0.2);
    
    --depoimentos-bg: var(--section-light-bg);
    --depoimentos-titulo-cor: var(--cor-accent);
    --depoimentos-subtitulo-cor: #6b6359;
    --depoimentos-card-bg: #ffffff;
    --depoimentos-card-texto-cor: #4a4640;
    --depoimentos-botao-bg: var(--cor-accent);
    --depoimentos-botao-hover-bg: var(--cor-escura);
    
    --video-carousel-bg: var(--section-light-bg);
    --video-card-bg: #ffffff;
    --video-overlay: rgba(26, 24, 21, 0.55);
    --video-play-btn-bg: rgba(175, 99, 67, 0.95);
    --video-play-btn-hover: rgba(175, 99, 67, 1);
    --video-progress-bg: rgba(58, 55, 50, 0.15);
    --video-progress-fill: var(--cor-accent);
    
    --header-height-mobile: 68px;
    --header-height-desktop: 90px;
    --touch-target: 48px;
}

/* ==========================================
   RESET & BASE MOBILE-FIRST
   ========================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { 
    background: var(--cor-primaria); 
    font-family: var(--fonte-texto); 
    color: var(--cor-texto-principal); 
    line-height: 1.6; 
    overflow-x: hidden; 
    -webkit-tap-highlight-color: transparent;
}

html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
button, a, [role="button"] { 
    min-height: var(--touch-target); 
    min-width: var(--touch-target);
    font-family: var(--fonte-texto); 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(0, 4%) rotate(0deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popupSlideIn { from { opacity: 0; transform: translateY(-20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulseSoft { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes navHoverUnderline { from { width: 0; opacity: 0; } to { width: 100%; opacity: 1; } }

/* ==========================================
   EXIT INTENT POPUP
   ========================================== */
.exit-intent-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 24, 21, 0.85); backdrop-filter: blur(8px);
    z-index: 9999; display: none; align-items: center; justify-content: center;
    padding: 1rem; animation: fadeInUp 0.3s ease forwards;
}

.exit-intent-popup {
    background: linear-gradient(145deg, #FFFFFF 0%, var(--cor-card-bg-light) 100%);
    border-radius: 1.25rem; padding: 2rem 1.5rem; max-width: 90vw; width: 100%;
    text-align: center; box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--cor-accent); position: relative;
    animation: popupSlideIn 0.4s ease forwards; max-height: 90vh; overflow-y: auto;
}

.exit-intent-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: rgba(175, 99, 67, 0.15); border: none;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cor-escura); font-size: 1rem; cursor: pointer;
    transition: all 0.3s ease; font-family: var(--fonte-texto);
}
.exit-intent-close:hover { background: var(--cor-accent); color: white; transform: rotate(90deg); }

.exit-intent-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--cor-accent), var(--cor-accent-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; color: white; font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(175, 99, 67, 0.4); animation: pulseSoft 2s ease infinite;
}

.exit-intent-title {
    font-family: var(--fonte-titulos); font-size: 1.25rem; font-weight: 700;
    color: var(--cor-escura); margin-bottom: 0.75rem; line-height: 1.3;
}

.exit-intent-text {
    color: #5a544e; font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem;
    font-family: var(--fonte-texto);
}

.exit-intent-cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; background: var(--btn-whatsapp); background-size: 200% 200%;
    animation: gradientShift 3s ease infinite; color: white;
    padding: 0.875rem 1.5rem; border-radius: 2rem; font-weight: 600;
    font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); font-family: var(--fonte-texto);
    width: 100%; max-width: 320px;
}
.exit-intent-cta:hover { background: var(--btn-whatsapp-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); animation: none; }
.exit-intent-cta i { color: #FFFFFF !important; font-size: 1.2rem; }

.exit-intent-nothanks {
    display: block; margin-top: 1rem; color: #8a8278;
    font-size: 0.85rem; text-decoration: none; transition: color 0.3s ease;
    padding: 0.5rem; font-family: var(--fonte-texto);
}
.exit-intent-nothanks:hover { color: var(--cor-accent); }

/* ==========================================
   HEADER ABSOLUTO
   ========================================== */
#mainHeader { 
    background: linear-gradient(180deg, rgba(247, 243, 237, 0.98) 0%, rgba(239, 233, 223, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(175, 99, 67, 0.15);
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    height: var(--header-height-mobile);
}

.header-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    gap: 0.5rem; 
    height: 100%;
    position: relative;
}

.logo-section {
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    text-decoration: none; 
    min-width: 0; 
    flex: 1;
    max-width: 70%;
    padding: 0.25rem 0;
}

.logo-img {
    height: 38px; 
    width: auto; 
    max-width: 100px;
    object-fit: contain; 
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.logo-section:active .logo-img { transform: scale(0.98); }

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.header-title {
    font-size: 0.95rem; 
    font-weight: 700; 
    font-family: var(--fonte-titulos);
    color: #1a1815; 
    line-height: 1.1; 
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis;
    margin: 0;
}

.header-subtitle {
    font-size: 0.7rem; 
    color: var(--cor-accent); 
    font-weight: 500;
    font-family: var(--fonte-texto); 
    margin-top: 0.1rem;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

/* NAVEGAÇÃO DESKTOP */
.header-nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex: 2;
    justify-content: center;
}

.header-nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    color: var(--cor-escura);
    text-decoration: none;
    font-family: var(--fonte-texto);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav-link:hover,
.header-nav-link.active {
    color: var(--cor-accent);
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cor-accent);
    border-radius: 2px;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.header-nav-link:hover::after,
.header-nav-link.active::after {
    width: 80%;
    opacity: 1;
}

.menu-toggle {
    background: none; 
    border: none;
    font-size: 1.3rem; 
    color: var(--cor-escura);
    cursor: pointer; 
    transition: all 0.2s ease;
    width: var(--touch-target); 
    height: var(--touch-target);
    padding: 0; 
    align-items: center; 
    justify-content: center;
    border-radius: 0.5rem;
    flex-shrink: 0;
}
.menu-toggle:hover { 
    color: var(--cor-accent); 
    background: rgba(175, 99, 67, 0.08);
}
.menu-toggle:active { 
    transform: scale(0.95); 
    background: rgba(175, 99, 67, 0.15);
}
.menu-toggle:focus {
    outline: 2px solid var(--cor-accent);
    outline-offset: 2px;
}

/* MENU MOBILE */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 24, 21, 0.6); backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); z-index: 998;
    opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; left: 0; width: 85%; max-width: 300px; height: 100%;
    background: linear-gradient(180deg, #f7f3ed 0%, #efe9df 100%);
    z-index: 999; padding: 1.25rem 1rem;
    transform: translateX(-105%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; overflow-x: hidden;
    box-shadow: 8px 0 40px rgba(0,0,0,0.2); border-right: 1px solid rgba(175, 99, 67, 0.15);
    display: flex; flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cor-accent), var(--cor-accent-light));
}

.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0.75rem 1rem; margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(175, 99, 67, 0.15);
}
.mobile-menu-logo { display: flex; align-items: center; gap: 0.5rem; }
.mobile-menu-logo-img { height: 32px; width: auto; }
.mobile-menu-logo-text { font-family: var(--fonte-titulos); font-size: 0.9rem; font-weight: 600; color: var(--cor-escura); }
.mobile-menu-close { background: rgba(175, 99, 67, 0.1); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cor-escura); font-size: 1rem; cursor: pointer; transition: all 0.2s ease; }
.mobile-menu-close:hover { background: var(--cor-accent); color: white; }

.mobile-menu-links { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.mobile-menu-links a { display: flex; align-items: center; padding: 0.9rem 1rem; border-radius: 0.6rem; color: var(--cor-escura); text-decoration: none; font-weight: 500; font-size: 0.95rem; font-family: var(--fonte-texto); transition: all 0.2s ease; border-left: 3px solid transparent; gap: 0.6rem; }
.mobile-menu-links a i { width: 20px; text-align: center; color: var(--cor-accent); font-size: 0.9rem; }
.mobile-menu-links a:hover, .mobile-menu-links a.active { background: linear-gradient(90deg, rgba(175, 99, 67, 0.12), transparent); border-left-color: var(--cor-accent); color: var(--cor-accent); transform: translateX(3px); }
.mobile-menu-links a:active { background: rgba(175, 99, 67, 0.18); }
.mobile-menu-whatsapp { margin-top: auto; padding: 1rem 0.75rem 1.25rem; border-top: 1px solid rgba(175, 99, 67, 0.15); }
.mobile-menu-whatsapp .section-whatsapp { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.9rem 1.25rem; }

/* HERO SECTION */
#heroSection { 
    position: relative; padding: 5.5rem 1rem 3rem; min-height: auto; background: #1a1815;
    display: flex; align-items: center; justify-content: center; overflow: hidden; 
}
.hero-video-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; filter: blur(1px) brightness(0.85); }
#heroSection::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.82) 50%, rgba(0, 0, 0, 0.8) 100%); z-index: 1; pointer-events: none; }
#heroSection::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 70%, rgb(241, 78, 8) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(247, 152, 11, 0.7) 0%, transparent 50%); animation: float 25s ease-in-out infinite; z-index: 0; pointer-events: none; }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 500px; margin: 0 auto; text-align: center; animation: fadeInUp 0.6s ease forwards; padding: 0 0.5rem; }
.hero-title { font-size: 1.6rem; font-weight: 700; font-family: var(--fonte-titulos); color: #FFFFFF; line-height: 1.25; margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.hero-title-highlight { color: #FFFFFF; font-weight: 600; }
.hero-paragraph { font-size: 1rem; color: #e8e3db; margin: 0 auto 1.75rem; line-height: 1.6; font-family: var(--fonte-texto); text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.section-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--btn-whatsapp); background-size: 200% 200%; animation: gradientShift 3s ease infinite; color: white; padding: 0.875rem 1.75rem; border-radius: 2rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); margin-top: 0.5rem; font-family: var(--fonte-texto); width: 100%; max-width: 300px; }
.section-whatsapp:hover { background: var(--btn-whatsapp-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); animation: none; }
.section-whatsapp i { color: #FFFFFF !important; font-size: 1.2rem; }

/* GERAIS & SEÇÕES */
.section-title { font-size: 1.6rem; font-weight: 700; font-family: var(--fonte-titulos); color: var(--cor-accent); text-align: center; margin-bottom: 2.5rem; letter-spacing: 0.3px; line-height: 1.3; padding: 0 1rem; }
#como-funciona, #tipos-fraude, #sobre, #direitos, .testimonial-section, #video-carousel-section { padding: 3.5rem 1rem; }

/* COMO FUNCIONA */
#como-funciona { background: var(--section-light-bg); border-top: 1px solid var(--divisoria-secao-cor); border-bottom: 1px solid var(--divisoria-secao-cor); }
.steps-list { max-width: 600px; margin: 0 auto; }
.step-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; transition: transform 0.3s ease; animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.step-item:nth-child(1) { animation-delay: 0.1s; } .step-item:nth-child(2) { animation-delay: 0.2s; } .step-item:nth-child(3) { animation-delay: 0.3s; } .step-item:nth-child(4) { animation-delay: 0.4s; } .step-item:nth-child(5) { animation-delay: 0.5s; }
.step-item:hover { transform: translateX(3px); }
.step-number { color: var(--cor-accent); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; transition: transform 0.3s ease; }
.step-item:hover .step-number { transform: scale(1.1); }
.step-content h3 { color: #000000; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.35rem; font-family: var(--fonte-titulos); line-height: 1.3; }
.step-content p { color: #5a544e; font-size: 0.9rem; line-height: 1.5; font-family: var(--fonte-texto); }

/* FRAUDES */
#tipos-fraude { padding: 3.5rem 1rem; background: linear-gradient(180deg, var(--cor-clara) 0%, #FFFFFF 100%); border-top: 1px solid var(--divisoria-secao-cor); border-bottom: 1px solid var(--divisoria-secao-cor); }
.fraude-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 600px; margin: 0 auto; padding: 0 0.5rem; }
.fraude-card { background: var(--card-bg); padding: 1.5rem 1.25rem; border-radius: 0.75rem; box-shadow: var(--sombra-card); border: 1px solid var(--card-borda); transition: all 0.4s ease; text-align: center; position: relative; overflow: hidden; animation: fadeInUp 0.6s ease forwards; opacity: 0; font-family: var(--fonte-texto); }
.fraude-card:nth-child(1) { animation-delay: 0.1s; } .fraude-card:nth-child(2) { animation-delay: 0.2s; } .fraude-card:nth-child(3) { animation-delay: 0.3s; } .fraude-card:nth-child(4) { animation-delay: 0.4s; } .fraude-card:nth-child(5) { animation-delay: 0.5s; } .fraude-card:nth-child(6) { animation-delay: 0.6s; }
.fraude-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(175, 99, 67, 0.15), transparent); transition: left 0.5s; }
.fraude-card:hover::before { left: 100%; }
.fraude-card:hover { transform: translateY(-5px); border-color: var(--card-borda-hover); box-shadow: var(--sombra-card-hover); }
.fraude-icon { width: auto; height: auto; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--cor-accent); font-size: 1.5rem; transition: transform 0.3s ease; }
.fraude-card:hover .fraude-icon { transform: scale(1.1); color: var(--cor-accent-light); }
.fraude-card h3 { color: var(--cor-escura); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; font-family: var(--fonte-titulos); line-height: 1.3; }
.fraude-card p { color: #5a544e; font-size: 0.9rem; line-height: 1.5; font-family: var(--fonte-texto); }

/* SOBRE */
#sobre { padding: 3.5rem 1rem; background: var(--sobre-bg); border-top: 1px solid var(--sobre-border); border-bottom: 1px solid var(--sobre-border); }
.about-container { max-width: 700px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.about-image { position: relative; border-radius: 0.75rem; overflow: hidden; box-shadow: var(--sombra-card); border: 3px solid var(--cor-accent); width: 100%; max-width: 300px; margin: 0 auto; }
.about-image img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-title { font-family: var(--fonte-titulos); font-size: 1.5rem; font-weight: 700; color: var(--sobre-titulo-cor); line-height: 1.3; margin-bottom: 1rem; text-align: center; }
.text-gold { color: var(--sobre-highlight); font-weight: 600; }
.about-paragraph { color: var(--sobre-texto-cor); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; font-family: var(--fonte-texto); text-align: justify; }
.btn-whatsapp-section { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--btn-whatsapp); background-size: 200% 200%; animation: gradientShift 3s ease infinite; color: white; padding: 0.875rem 1.75rem; border-radius: 2rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); margin-top: 1rem; font-family: var(--fonte-texto); width: 100%; max-width: 280px; }
.btn-whatsapp-section:hover { background: var(--btn-whatsapp-hover); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); animation: none; }
.btn-whatsapp-section i { color: #FFFFFF !important; font-size: 1.1rem; }

/* CARROSSEL DE VÍDEOS */
#video-carousel-section { padding: 3.5rem 1rem; background: var(--video-carousel-bg); border-top: 1px solid var(--divisoria-secao-cor); border-bottom: 1px solid var(--divisoria-secao-cor); }
.video-carousel-wrapper { max-width: 700px; margin: 0 auto; position: relative; width: 100%; }
.video-carousel-viewport { overflow: hidden; border-radius: 0.75rem; position: relative; }
.video-carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); width: 100%; will-change: transform; }
.video-slide { flex: 0 0 100%; width: 100%; min-width: 100%; display: flex; justify-content: center; padding: 0; }
.video-card { background: var(--video-card-bg); border-radius: 0.75rem; overflow: hidden; box-shadow: var(--sombra-card); border: 1px solid var(--divisoria-secao-cor); width: 100%; max-width: 100%; transition: all 0.3s ease; display: flex; flex-direction: column; font-family: var(--fonte-texto); }
.video-card:hover { transform: translateY(-3px); box-shadow: var(--sombra-card-hover); border-color: var(--cor-accent); }
.video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; cursor: pointer; overflow: hidden; }
@supports not (aspect-ratio: 16/9) { .video-wrapper { padding-bottom: 56.25%; height: 0; } }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--video-overlay); display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; pointer-events: none; z-index: 1; }
.video-wrapper.playing .video-overlay { opacity: 0; pointer-events: none; }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 56px; height: 56px; background: var(--video-play-btn-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); z-index: 2; pointer-events: auto; border: 3px solid rgba(255,255,255,0.3); }
.video-play-btn:hover { background: var(--video-play-btn-hover); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4); }
.video-play-btn i { margin-left: 2px; }

.video-progress-container { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: var(--video-progress-bg); cursor: pointer; z-index: 3; transition: height 0.2s ease; }
.video-wrapper:hover .video-progress-container, .video-wrapper.playing .video-progress-container { height: 6px; }
.video-progress-bar { height: 100%; width: 0%; background: var(--video-progress-fill); border-radius: 0 0 0 2px; transition: width 0.1s linear; position: relative; }
.video-progress-bar::after { content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; background: #fff; border-radius: 50%; opacity: 0; transition: opacity 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.video-wrapper:hover .video-progress-bar::after, .video-wrapper.playing .video-progress-bar::after { opacity: 1; }

.video-info { padding: 1rem 1.25rem; text-align: center; flex-shrink: 0; }
.video-info h3 { font-family: var(--fonte-titulos); font-size: 1.05rem; font-weight: 600; color: var(--cor-escura); margin-bottom: 0.3rem; line-height: 1.3; }
.video-info p { font-family: var(--fonte-texto); color: #5a544e; font-size: 0.85rem; line-height: 1.45; }

/* BOTÕES CARROSSEL */
.carousel-btn { position: absolute; top: 30%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--cor-accent); color: white; border: none; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; z-index: 20; box-shadow: 0 4px 15px rgba(175, 99, 67, 0.4); padding: 0; font-family: var(--fonte-texto); }
.carousel-btn:hover { background: var(--cor-escura); transform: translateY(-50%) scale(1.1); }
.carousel-btn.prev { left: -18px; } .carousel-btn.next { right: 18px; }

/* BOLINHAS MENORES */
.carousel-indicators { display: flex; justify-content: center; gap: 0.4rem; margin-top: 1rem; }
.carousel-indicator { width: 6px; height: 6px; border-radius: 50%; background: rgba(175, 99, 67, 0.3); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; min-width: auto; min-height: auto; }
.carousel-indicator.active { background: var(--cor-accent); transform: scale(1.4); }
.carousel-indicator:hover { background: var(--cor-accent-light); }

.carousel-counter { text-align: center; margin-top: 0.5rem; font-size: 0.8rem; color: #8a8278; font-family: var(--fonte-texto); }

/* DEPOIMENTOS */
.testimonial-section { background: var(--depoimentos-bg); padding: 3.5rem 1rem; border-top: 1px solid var(--divisoria-secao-cor); border-bottom: 1px solid var(--divisoria-secao-cor); }
.testimonial-header { text-align: center; margin-bottom: 2rem; }
.testimonial-title { font-family: var(--fonte-titulos); font-size: 1.6rem; font-weight: 700; color: var(--depoimentos-titulo-cor); margin-bottom: 0.4rem; line-height: 1.3; }
.testimonial-subtitle { font-size: 0.95rem; color: var(--depoimentos-subtitulo-cor); max-width: 100%; margin: 0 auto; font-family: var(--fonte-texto); padding: 0 0.5rem; }
.testimonials-container { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; padding: 0 0.5rem; margin-bottom: 2rem; }
.testimonial-card { background: var(--depoimentos-card-bg); color: var(--cor-texto-principal); border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 2px 10px rgba(58, 55, 50, 0.1); width: 100%; max-width: 100%; display: flex; flex-direction: column; transition: all 0.3s ease; border: 1px solid var(--divisoria-secao-cor); font-family: var(--fonte-texto); animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.testimonial-card:nth-child(1) { animation-delay: 0.1s; } .testimonial-card:nth-child(2) { animation-delay: 0.2s; } .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(58, 55, 50, 0.15); border-color: var(--cor-accent); }
.testimonial-header-card { display: flex; align-items: center; margin-bottom: 0.75rem; }
.testimonial-stars { display: flex; gap: 0.2rem; margin-right: 0.5rem; }
.testimonial-stars i { color: var(--cor-accent); font-size: 0.9rem; }
.google-logo { color: #4285F4; font-size: 1.1rem; font-weight: bold; font-family: Arial, sans-serif; background: #f8f9fa; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid #e0e0e0; flex-shrink: 0; }
.testimonial-author { font-weight: 600; color: var(--depoimentos-titulo-cor); margin-bottom: 0.2rem; font-family: var(--fonte-titulos); font-size: 0.95rem; }
.testimonial-text { color: var(--depoimentos-card-texto-cor); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.75rem; flex-grow: 1; font-family: var(--fonte-texto); }
.testimonial-meta { color: var(--depoimentos-subtitulo-cor); font-size: 0.8rem; display: flex; align-items: center; gap: 0.5rem; font-family: var(--fonte-texto); }
.testimonial-meta i { color: var(--cor-accent); }
.testimonial-button-container { text-align: center; }
.testimonial-button { background: var(--depoimentos-botao-bg); color: #fff; padding: 0.75rem 2rem; border-radius: 2rem; text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; font-family: var(--fonte-texto); transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(58, 55, 50, 0.3); width: 100%; max-width: 280px; }
.testimonial-button:hover { background: var(--depoimentos-botao-hover-bg); transform: translateY(-2px); }

/* DIREITOS */
#direitos { padding: 3.5rem 1rem; background: var(--section-light-bg); border-top: 1px solid var(--divisoria-secao-cor); border-bottom: 1px solid var(--divisoria-secao-cor); }
.direitos-list { max-width: 600px; margin: 0 auto; }
.direito-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 0; border-bottom: 1px solid var(--divisoria-secao-cor); animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.direito-item:nth-child(1) { animation-delay: 0.1s; } .direito-item:nth-child(2) { animation-delay: 0.2s; } .direito-item:nth-child(3) { animation-delay: 0.3s; }
.direito-item:last-child { border-bottom: none; }
.direito-check { background: linear-gradient(135deg, var(--cor-accent), var(--cor-accent-light)); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; flex-shrink: 0; margin-top: 0.2rem; box-shadow: 0 4px 12px rgba(175, 99, 67, 0.25); transition: transform 0.3s ease; font-family: var(--fonte-titulos); }
.direito-item:hover .direito-check { transform: scale(1.1); }
.direito-item p { color: var(--cor-escura); font-size: 0.95rem; line-height: 1.5; font-family: var(--fonte-texto); }
.direito-item strong { color: var(--cor-accent); font-weight: 600; }

/* FOOTER */
.footer { background: linear-gradient(180deg, #2a2722 0%, #1e1b17 100%); color: var(--cor-clara); font-family: var(--fonte-texto); position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--cor-accent), transparent); }
.footer-main { max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; }
.footer-columns { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 3rem; }
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 250px; }
.footer-logo { height: 48px; width: auto; max-width: 150px; object-fit: contain; margin-bottom: 1rem; filter: brightness(1.05); transition: transform 0.3s ease; }
.footer-logo:hover { transform: scale(1.04); }
.footer-name { font-family: var(--fonte-titulos); font-size: 1.3rem; font-weight: 700; color: #ffffff; margin-bottom: 0.25rem; line-height: 1.2; }
.footer-area { font-size: 0.85rem; color: var(--cor-accent-light); font-weight: 400; letter-spacing: 0.3px; }
.footer-info { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; flex: 1; min-width: 250px; }
.footer-contact-row { display: flex; align-items: center; justify-content: center; gap: 0.65rem; }
.footer-contact-label { font-size: 0.75rem; color: rgba(247, 243, 237, 0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.1rem; font-weight: 500; }
.footer-contact-value { font-size: 0.9rem; color: rgba(247, 243, 237, 0.9); line-height: 1.4; }
.footer-contact-value a { color: rgba(247, 243, 237, 0.9); text-decoration: none; transition: color 0.3s ease; }
.footer-contact-value a:hover { color: #af6343; }
.footer-instagram { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.25rem; }
.footer-instagram a { color: #af6343; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; font-weight: 500; }
.footer-instagram a:hover { color: #d4a18a; }
.footer-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(175, 99, 67, 0.15), transparent); }
.footer-copy { max-width: 900px; margin: 0 auto; padding: 1.25rem 1.5rem; text-align: center; font-size: 0.78rem; color: rgba(247, 243, 237, 0.3); }
.footer-copy span { color: rgba(247, 243, 237, 0.45); }

/* WHATSAPP FLUTUANTE */
.whatsapp-button { position: fixed; bottom: 1rem; right: 1rem; background: var(--btn-whatsapp); background-size: 200% 200%; animation: gradientShift 3s ease infinite; color: white; width: 3.25rem; height: 3.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; z-index: 999; text-decoration: none; font-family: var(--fonte-texto); }
.whatsapp-button:hover { background: var(--btn-whatsapp-hover); transform: scale(1.1) rotate(5deg); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); animation: none; }
.whatsapp-button i { color: #FFFFFF !important; font-size: 1.4rem; }

/* RESPONSIVO */
@media (min-width: 768px) {
    :root { --header-height-mobile: 85px; }
    .header-container { padding: 0.75rem 1.5rem; } .logo-img { height: 42px; max-width: 115px; } .header-title { font-size: 1.15rem; } .header-subtitle { font-size: 0.75rem; }
    #heroSection { padding: 6rem 1.5rem 3.5rem; } .hero-title { font-size: 2rem; } .hero-paragraph { font-size: 1.05rem; } .section-title { font-size: 1.8rem; }
    .step-item { gap: 1.25rem; } .step-number { width: 44px; height: 44px; font-size: 1.2rem; } .step-content h3 { font-size: 1.15rem; }
    .about-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .about-title { font-size: 1.6rem; text-align: left; } .about-paragraph { text-align: left; } .about-image { max-width: 100%; margin: 0; }
    .fraude-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .video-carousel-wrapper { max-width: 650px; } .carousel-btn.prev { left: -20px; } .carousel-btn.next { right: -20px; } .carousel-btn { width: 42px; height: 42px; font-size: 1rem; } .video-play-btn { width: 60px; height: 60px; font-size: 1.4rem; } .video-info h3 { font-size: 1.15rem; } .video-info p { font-size: 0.9rem; }
    .testimonial-card { max-width: 340px; }
    #como-funciona, #tipos-fraude, #sobre, #direitos, .testimonial-section, #video-carousel-section { padding: 4rem 1.5rem; }
    .footer-main { padding: 3rem 2rem; } .footer-columns { gap: 4rem; } .footer-copy { padding: 1.25rem 2rem; }
}

@media (min-width: 1025px) {
    :root { --header-height-mobile: var(--header-height-desktop); }
    
    .header-nav-desktop { display: flex; }
    .menu-toggle { display: none; }
    .mobile-menu, .mobile-menu-overlay { display: none !important; }
    
    .header-container { padding: 0.875rem 2rem; } 
    .logo-img { height: 46px; max-width: 125px; } 
    .header-title { font-size: 1.3rem; } 
    .header-subtitle { font-size: 0.8rem; }
    
    #heroSection { padding: 7rem 2rem 4rem; min-height: 520px; } 
    .hero-title { font-size: 2.5rem; } 
    .hero-paragraph { font-size: 1.1rem; max-width: 600px; }
    
    .section-title { font-size: 2rem; margin-bottom: 3rem; }
    #como-funciona, #tipos-fraude, #sobre, #direitos, .testimonial-section, #video-carousel-section { padding: 5rem 2rem; }
    
    .steps-list { max-width: 800px; } 
    .step-item { gap: 1.5rem; padding: 1.25rem 0; } 
    .step-number { width: 48px; height: 48px; font-size: 1.25rem; }
    
    .about-container { max-width: 1100px; gap: 3.5rem; } 
    .about-title { font-size: 1.8rem; }
    
    .fraude-grid { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
    
    .video-carousel-wrapper { max-width: 680px; } 
    .carousel-btn.prev { left: -22px; } 
    .carousel-btn.next { right: -22px; } 
    .carousel-btn { width: 44px; height: 44px; font-size: 1.05rem; } 
    .video-play-btn { width: 64px; height: 64px; font-size: 1.5rem; } 
    .video-info h3 { font-size: 1.2rem; } 
    .video-info p { font-size: 0.95rem; }
    
    .testimonials-container { gap: 1.5rem; } 
    .testimonial-card { max-width: 380px; }
    
    .direitos-list { max-width: 750px; }
    
    .whatsapp-button { width: 3.5rem; height: 3.5rem; bottom: 1.5rem; right: 1.5rem; }
    
    .footer-main { padding: 3.5rem 3rem; } 
    .footer-columns { gap: 5rem; } 
    .footer-logo { height: 56px; max-width: 180px; } 
    .footer-name { font-size: 1.4rem; } 
    .footer-copy { padding: 1.25rem 3rem; }
}

@media (max-width: 359px) {
    :root { --header-height-mobile: 64px; }
    #heroSection { padding-top: 4.8rem; }
    .hero-title { font-size: 1.35rem; } .hero-paragraph { font-size: 0.9rem; } .section-title { font-size: 1.4rem; } .about-title { font-size: 1.3rem; } .about-paragraph { font-size: 0.88rem; }
    .fraude-card h3 { font-size: 1rem; } .fraude-card p { font-size: 0.85rem; }
    .carousel-btn.prev { left: 2px; } .carousel-btn.next { right: 2px; }
    .video-play-btn { width: 46px; height: 46px; font-size: 1.1rem; }
    .video-info { padding: 0.75rem 1rem; } .video-info h3 { font-size: 0.95rem; } .video-info p { font-size: 0.8rem; }
    .footer-logo { height: 42px; max-width: 130px; } .footer-name { font-size: 1.15rem; }
    .header-title { font-size: 0.9rem; } .header-subtitle { font-size: 0.65rem; } .logo-img { height: 34px; max-width: 90px; }
    .whatsapp-button { width: 3rem; height: 3rem; }
}

/* UTILITÁRIOS */
input, select, textarea { font-size: 16px !important; }
a { -webkit-tap-highlight-color: rgba(0,0,0,0); }
.scrollable { -webkit-overflow-scrolling: touch; }
@supports (padding: max(0px)) { .whatsapp-button { bottom: max(1rem, env(safe-area-inset-bottom)); right: max(1rem, env(safe-area-inset-right)); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
a:focus-visible, button:focus-visible, [role="button"]:focus-visible { outline: 2px solid var(--cor-accent); outline-offset: 2px; }