:root {
    --brand-dark: #0b1b36; 
    --brand-darker: #061021;
    --brand-primary: #152d65;
    --brand-light: #f8f9fa;
    --brand-white: #ffffff;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-radius: 12px;
    --border-radius-lg: 24px;
    --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }
body { font-family: var(--font-body); background-color: var(--brand-white); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.2s ease; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; position: relative; }
.center { text-align: center; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: -0.5px; color: var(--brand-dark); word-break: break-word; }
.section-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--text-muted); max-width: 760px; margin-bottom: 2rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--brand-white); border-bottom: 1px solid #e2e8f0; }
.site-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 0.75rem 0; }
.site-header-logo img { height: 48px; width: auto; }
.site-nav { display: flex; gap: 2rem; }
.site-nav-link { color: var(--text-main); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.site-nav-link:hover { color: var(--brand-primary); }
.site-nav-toggle { display: none; }

/* Hero */
.hero-section { color: var(--text-light); padding: 8rem 0 6rem; position: relative; overflow: hidden; }
.hero-bg-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 0; transition: opacity 1.5s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(6,16,33,0.75) 0%, rgba(11,27,54,0.65) 100%); z-index: 1; }
.hero-section::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9Im5vbmUiLz4KPHBhdGggZD0iTTIwIDIwTDIwIDBMNDAgMjBMMjAgMjB6IiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDIpIi8+Cjwvc3ZnPg=='); opacity: 0.5; pointer-events: none; z-index: 1; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); max-width: 900px; margin-bottom: 1.25rem; color: #fff; }
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.7); max-width: 720px; margin-bottom: 1.5rem; }
.hero-text { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 700px; margin-bottom: 2.5rem; }
.hero-bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 3rem; max-width: 800px; }
.hero-bullet { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.95rem; }
.hero-bullet i { color: var(--brand-primary); }
.hero-cta-note { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; background: rgba(255,255,255,0.05); border-left: 4px solid var(--brand-primary); color: #fff; font-weight: 500; border-radius: 0 4px 4px 0; }

/* Sections general */
.section-padding { padding: 6rem 0; }
.bg-light { background: var(--brand-light); }

/* Grid blocks */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: stretch; }
@media(max-width: 768px) { .grid-2 { grid-template-columns: 1fr; gap: 2rem; } }

/* Cards & Lists */
.card { background: var(--brand-white); border: 1px solid #e2e8f0; border-radius: var(--border-radius-lg); padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Section image cards matching text height */
.section-image-card { position: relative; height: 100%; padding: 0; overflow: hidden; border: none; display: block; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border-radius: var(--border-radius-lg); background: var(--brand-white); }
.section-image-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 768px) {
    .section-image-card { min-height: 320px; max-height: 420px; }
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; color: var(--text-main); }
.check-list li i { color: var(--brand-primary); flex-shrink: 0; }

/* Ajuda Cards */
.ajuda-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
@media(max-width: 768px) { .ajuda-cards { grid-template-columns: 1fr; } }
.ajuda-card { background: #fff; border: 1px solid rgba(22, 53, 115, 0.1); border-left: 5px solid var(--brand-primary); border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.ajuda-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(22, 53, 115, 0.08); border-color: var(--brand-primary); }
.ajuda-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.ajuda-card-emoji { font-size: 1.5rem; background: rgba(22, 53, 115, 0.06); width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ajuda-card-title { font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); margin: 0; }
.ajuda-card-sub { font-size: 1.05rem; font-weight: 600; color: var(--brand-primary); margin-bottom: 0.5rem; display: block; }
.ajuda-card-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.ajuda-cta-banner { display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, rgba(22, 53, 115, 0.08) 0%, rgba(22, 53, 115, 0.03) 100%); border: 1px solid rgba(22, 53, 115, 0.15); padding: 1.25rem 1.5rem; border-radius: 12px; color: var(--brand-dark); font-weight: 600; font-size: 1.08rem; line-height: 1.5; }
.ajuda-cta-emoji { font-size: 1.5rem; flex-shrink: 0; background: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.feature-card { background: var(--brand-white); border: 1px solid #e2e8f0; padding: 2rem 1.5rem; border-radius: var(--border-radius-lg); text-align: left; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: flex-start; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.feature-card:hover { border-color: var(--brand-primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(21, 45, 101, 0.08); }
.feature-card i, .feature-card svg { width: 44px; height: 44px; color: var(--brand-primary); margin-bottom: 1.25rem; transition: transform 0.2s; }
.feature-card:hover i, .feature-card:hover svg { transform: scale(1.1); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.75rem; line-height: 1.4; min-height: 3.36rem; transition: color 0.2s; }
@media (max-width: 768px) {
    .feature-card h3 { min-height: auto; }
}
.feature-card:hover h3 { color: var(--brand-primary); }
.feature-card p { font-weight: 400; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* Segments */
.segments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); grid-auto-rows: 1fr; gap: 0.5rem 1rem; margin-bottom: 2rem; }
@media (min-width: 1024px) {
    .segments-grid { grid-template-columns: repeat(7, 1fr); }
}
.segment-tag { background: var(--brand-white); border: 1px solid #e2e8f0; padding: 1.5rem 1rem; text-align: center; border-radius: var(--border-radius); font-weight: 600; color: var(--brand-dark); transition: all 0.2s; display: flex; align-items: center; justify-content: center; min-height: 80px; }
.segment-tag:hover { border-color: var(--brand-primary); color: var(--brand-primary); box-shadow: 0 4px 12px rgba(30,115,190,0.1); }

/* Condicoes Box / Como Funciona Box */
.condicoes-box { background: linear-gradient(145deg, var(--brand-dark) 0%, #0d1f3d 100%); color: #fff; border-radius: 20px; padding: 4rem 3rem; box-shadow: 0 20px 40px rgba(6, 16, 33, 0.15); border: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
.condicoes-box::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brand-primary), #4bb5ff); }
.condicoes-header { margin-bottom: 3rem; }
.condicoes-icon { width: 64px; height: 64px; background: rgba(30, 115, 190, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.condicoes-icon i { color: #4bb5ff; width: 32px; height: 32px; }
.condicoes-box .section-title { color: #fff; margin-bottom: 1rem; }
.condicoes-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.condicoes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .condicoes-grid { grid-template-columns: 1fr; gap: 1.5rem; } .condicoes-box { padding: 3rem 1.5rem; } }
.condicoes-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 2.5rem; transition: transform 0.3s ease, background 0.3s ease; text-align: left; }
.condicoes-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-5px); }
.c-card-icon { margin-bottom: 1.5rem; display: inline-flex; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 12px; }
.c-card-icon i { color: #4bb5ff; width: 28px; height: 28px; }
.condicoes-card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fff; }
.c-card-highlight { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; white-space: nowrap; }
.c-card-text { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.5; }
.c-garantias-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.c-garantias-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.c-garantias-list li i { color: #4bb5ff; flex-shrink: 0; width: 20px; height: 20px; }
.condicoes-footer { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.95rem; text-align: center; }
.condicoes-footer i { color: var(--brand-primary); }

.comofunciona-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .comofunciona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .comofunciona-grid { grid-template-columns: repeat(3, 1fr); } }
.comofunciona-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 1.5rem; transition: transform 0.3s ease, background 0.3s ease; text-align: left; display: flex; flex-direction: column; }
.comofunciona-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.cf-step-number { width: 32px; height: 32px; background: var(--brand-primary); color: #fff; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1rem; flex-shrink: 0; }
.comofunciona-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #fff; font-weight: 700; line-height: 1.3; }
.comofunciona-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.5; flex-grow: 1; margin: 0; }

/* FAQ */
.faq-list { max-width: 100%; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--brand-white); border: 1px solid #e2e8f0; border-radius: var(--border-radius); }
.faq-item summary { padding: 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--brand-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--brand-primary); }
.faq-item[open] summary::after { content: '-'; }
.faq-answer { padding: 0 1.5rem 1.5rem; color: var(--text-muted); border-top: 1px solid #f1f5f9; margin-top: 1rem; padding-top: 1rem; }

/* Depoimentos Layout (Google Reviews & YouTube Videos) */
.depoimentos-sub-header { text-align: center; margin-bottom: 2rem; }
.google-reviews-carousel { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1.5rem; padding-bottom: 1rem; scrollbar-width: none; -ms-overflow-style: none; margin-bottom: 4rem; }
.google-reviews-carousel::-webkit-scrollbar { display: none; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--brand-white); border: 1px solid #e2e8f0; border-radius: 50%; width: 44px; height: 44px; font-size: 28px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 10; color: var(--brand-dark); transition: 0.2s; padding-bottom: 4px; }
.carousel-btn:hover { background: var(--brand-light); color: var(--brand-primary); }
.carousel-btn.prev-btn { left: -22px; }
.carousel-btn.next-btn { right: -22px; }
@media(max-width:768px) { .carousel-btn { display: none; } }
.google-reviews-carousel .review-card { flex: 0 0 calc(40% - 1rem); scroll-snap-align: start; }
@media(max-width: 768px) { .google-reviews-carousel .review-card { flex: 0 0 calc(85% - 1rem); } }
.review-card { background: var(--brand-white); border: 1px solid #e2e8f0; border-radius: var(--border-radius-lg); padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f1f5f9; }
.review-stars { display: flex; gap: 4px; color: #facc15; }
.review-stars i, .review-stars svg { width: 18px; height: 18px; fill: #facc15; }
.review-source { font-size: 0.85rem; font-weight: 700; color: #64748b; background: #f1f5f9; padding: 4px 10px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
.review-image-box { border: 2px dashed #cbd5e1; border-radius: 12px; background: #f8fafc; padding: 2.5rem 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 240px; color: #64748b; transition: all 0.2s ease; position: relative; overflow: hidden; }
.review-card:hover .review-image-box { border-color: var(--brand-primary); background: #f1f5f9; }
.review-image-box img { width: 100%; height: auto; border-radius: 8px; display: block; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.review-placeholder-text { display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* YouTube Videos Grid */
.yt-videos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.yt-video-card { width: 100%; max-width: 340px; background: var(--brand-white); border: 1px solid #e2e8f0; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.yt-video-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.yt-video-wrapper { position: relative; aspect-ratio: 16 / 9; background: #0f172a; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.yt-video-wrapper.shorts { aspect-ratio: 9 / 16; width: 100%; }
.yt-placeholder { text-align: center; padding: 1.5rem; color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; width: 100%; }
.yt-play-btn { width: 56px; height: 56px; background: #ef4444; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4); transition: transform 0.2s; }
.yt-video-card:hover .yt-play-btn { transform: scale(1.1); }
.yt-play-btn i, .yt-play-btn svg { width: 24px; height: 24px; color: #fff; fill: #fff; margin-left: 3px; }
.yt-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; z-index: 5; }
.yt-video-info { padding: 1.5rem; text-align: left; }
.yt-video-info h4 { font-size: 1.15rem; font-weight: 700; color: var(--brand-dark); margin-bottom: 0.5rem; }
.yt-video-info p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* CTA Box */
.cta-box { background: linear-gradient(135deg, var(--brand-primary) 0%, #0d1f3d 100%); color: #fff; border-radius: var(--border-radius-lg); padding: 4rem 2rem; text-align: center; box-shadow: 0 20px 40px rgba(11, 27, 54, 0.15); }
.cta-box .section-title { color: #fff; font-size: clamp(1.44rem, 3.5vw, 2.18rem); }
.cta-note { display: inline-flex; align-items: center; gap: 1rem; padding: 1rem 2rem; background: rgba(0,0,0,0.15); border-radius: 50px; font-weight: 500; margin-top: 2rem; }

/* Footer */
.main-footer { background: var(--brand-darker); color: rgba(255,255,255,0.5); padding: 3rem 0; text-align: center; }
.main-footer img { height: 60px; margin: 0 auto 1.5rem auto; opacity: 0.9; }
.main-footer a { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; display: inline-block; }
.main-footer a:hover { color: #fff; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
    animation-name: zoom;
    animation-duration: 0.3s;
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 992px) {
    .site-nav { display: none; }
    .site-nav-toggle { display: flex; flex-direction: column; gap: 5px; background: transparent; border: 1px solid #e2e8f0; padding: 10px; border-radius: 4px; cursor: pointer; }
    .site-nav-toggle-bar { width: 24px; height: 2px; background: var(--brand-dark); transition: all 0.3s ease; }
    
    .site-header.is-nav-open .site-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brand-white);
        padding: 1.5rem 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
        gap: 1.5rem;
    }
    
    .site-header.is-nav-open .site-nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .site-header.is-nav-open .site-nav-toggle-bar:nth-child(2) { opacity: 0; }
    .site-header.is-nav-open .site-nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    .hero-section { padding: 5rem 0 3rem; text-align: center; }
    .hero-bullets { text-align: left; }
    .hero-cta-note { border-radius: 4px; border-left: none; border-top: 4px solid var(--brand-primary); }
    .card { padding: 1.5rem; }
    .hide-mobile { display: none; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-note { flex-direction: column; text-align: center; border-radius: 16px; padding: 1.5rem; }
    .condicoes-footer { flex-direction: column; text-align: center; }
}
