/* ============================================================
   DDTIZA - CSS Mobile-First
   Breakpoints: 480px | 576px | 768px | 992px | 1200px
   ============================================================ */

:root {
    --orange: #ff6600;
    --orange-dark: #e05a00;
    --orange-light: #ff8533;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --gray: #888888;
    --gray-light: #cccccc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #ff6600 0%, #ff3300 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-orange: 0 8px 30px rgba(255,102,0,0.35);
    --wa-green: #25d366;
    --wa-green-dark: #1da851;
    --wa-gradient: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    --shadow-wa: 0 8px 30px rgba(37,211,102,0.4);
    --radius: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* touch targets mínimos */
    --touch-min: 48px;
}

/* ======================================================
   RESET & BASE
====================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    /* evita zoom indesejado em inputs iOS */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;          /* base legível em mobile */
    line-height: 1.6;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    /* suaviza scroll no iOS */
    -webkit-overflow-scrolling: touch;
}

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

a { color: inherit; }

/* Remove hover em dispositivos touch para evitar "stuck hover" */
@media (hover: none) {
    .service-card:hover,
    .depoimento-card:hover,
    .diferencial-item:hover { transform: none !important; }
}

/* ======================================================
   LOADER
====================================================== */
#loader {
    position: fixed; inset: 0;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
    font-size: 2.2rem; font-weight: 900;
    color: var(--orange); letter-spacing: 4px;
    margin-bottom: 1.5rem;
    animation: pulse 1s ease-in-out infinite;
}
.loader-bar {
    width: 180px; height: 4px;
    background: var(--dark3); border-radius: 99px;
    overflow: hidden; margin: 0 auto;
}
.loader-progress {
    height: 100%; width: 0;
    background: var(--gradient); border-radius: 99px;
    animation: loadProgress 1.5s ease forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ======================================================
   NAVBAR
====================================================== */
#navbar {
    padding: 0.6rem 0;
    transition: var(--transition);
    background: rgba(10,10,10,0.92);   /* semi-transparente sempre no mobile */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
#navbar.scrolled {
    background: rgba(10,10,10,0.98);
    padding: 0.35rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
#navbar.scrolled .brand-logo { height: 72px; }

.navbar-brand {
    text-decoration: none;
    font-size: 1.6rem; font-weight: 900;
    display: flex; align-items: center;
    padding: 2px 0;
    margin-left: -28px;
    margin-right: 0;
}
.brand-dd  { color: var(--orange); }
.brand-tiza{ color: var(--white); }
.brand-logo {
    height: 92px;
    width: 440px;
    max-width: 100%;
    object-fit: fill;
    display: block;
    transition: var(--transition);
}
@media (hover: hover) {
    .navbar-brand:hover .brand-logo {
        transform: scale(1.03);
    }
}
#navbar.scrolled .brand-logo { height: 72px; width: 360px; }
@media (min-width: 992px) and (max-width: 1399px) {
    .brand-logo { width: 360px; }
    #navbar.scrolled .brand-logo { width: 300px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .brand-logo { width: 300px; height: 80px; }
    #navbar.scrolled .brand-logo { width: 260px; height: 64px; }
    .nav-link { padding: 0.5rem 0.45rem !important; font-size: 0.88rem; }
    .btn-cta-nav { padding: 0.5rem 0.9rem !important; font-size: 0.82rem; }
}
@media (max-width: 991px) {
    .navbar-brand { margin-left: -16px; }
    .brand-logo { height: 72px; width: 340px; }
    #navbar.scrolled .brand-logo { height: 60px; width: 300px; }
}
@media (max-width: 576px) {
    .navbar-brand { margin-left: -8px; }
    .brand-logo { height: 60px; width: 270px; border-radius: 10px; }
    #navbar.scrolled .brand-logo { height: 52px; width: 235px; }
}
.footer-logo {
    height: 78px;
    width: 320px;
    max-width: 100%;
    object-fit: fill;
    display: block;
    margin-bottom: 1rem;
}

.navbar-toggler {
    border: none;
    background: rgba(255,102,0,0.1) !important;
    border-radius: 8px;
    width: 44px; height: 44px;         /* touch target */
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.navbar-toggler:active { background: rgba(255,102,0,0.2) !important; }

/* Menu mobile */
.navbar-collapse {
    background: rgba(10,10,10,0.98);
    border-radius: 0 0 16px 16px;
    margin-top: 0.5rem;
    padding: 0.5rem 0 1rem;
}
@media (min-width: 992px) {
    .navbar-collapse { background: transparent; padding: 0; margin: 0; }
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500; font-size: 1rem;
    transition: var(--transition);
    /* touch target */
    padding: 0.75rem 1.2rem !important;
    display: flex; align-items: center;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:active { color: var(--orange) !important; }

.btn-cta-nav {
    background: var(--wa-gradient);
    color: var(--white) !important;
    border: none; border-radius: 50px;
    padding: 0.7rem 1.5rem !important;
    font-weight: 700; font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-wa);
    margin: 0.3rem 1.2rem;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: var(--touch-min);
}
.btn-cta-nav:active { transform: scale(0.96); color: var(--white) !important; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
@media (hover: hover) {
    .btn-cta-nav:hover { color: var(--white) !important; background: linear-gradient(135deg, #2de070 0%, #1da851 100%); box-shadow: 0 12px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }
}

@media (min-width: 992px) {
    .btn-cta-nav { margin: 0; min-height: auto; }
}

/* ======================================================
   HERO — mobile first
====================================================== */
#hero {
    position: relative;
    background: linear-gradient(160deg, #0a0a0a 0%, #1a0a00 55%, #0a0a0a 100%);
    overflow: hidden;
    /* no mobile: altura natural + padding generoso */
    padding-top: 90px;       /* altura da navbar */
    padding-bottom: 3rem;
    min-height: 100svh;      /* svh evita salto de barra de endereço no mobile */
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(255,102,0,0.14) 0%, transparent 65%);
    pointer-events: none;
}
.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none; overflow: hidden;
}

/* BADGE */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,102,0,0.15);
    border: 1px solid rgba(255,102,0,0.3);
    color: var(--orange); font-size: 0.82rem; font-weight: 600;
    padding: 0.45rem 1rem; border-radius: 50px;
    margin-bottom: 1rem;
}

/* TÍTULO */
.hero-title {
    font-size: 2.1rem;
    font-weight: 900; line-height: 1.1;
    color: var(--white); margin-bottom: 1rem;
}

.text-orange { color: var(--orange) !important; }

/* SUBTÍTULO */
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 1.5rem;
}

/* STATS */
.hero-stats {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 1.8rem;
}
.stat-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: var(--radius);
    padding: 0.65rem 1rem;
    display: flex; flex-direction: column;
    flex: 1; min-width: 120px;
}
.stat-number { font-size: 1.2rem; font-weight: 800; color: var(--orange); }
.stat-label  { font-size: 0.72rem; color: var(--gray); font-weight: 500; }

/* BOTÕES HERO */
.hero-buttons {
    display: flex; flex-direction: column; gap: 12px;
}
.btn-hero-primary {
    background: var(--wa-gradient);
    color: var(--white); border: none;
    padding: 0.95rem 1.5rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-wa);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: var(--touch-min);
    width: 100%;
}
.btn-hero-primary:active { transform: scale(0.96); color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
@media (hover: hover) {
    .btn-hero-primary:hover { color: var(--white); background: linear-gradient(135deg, #2de070 0%, #1da851 100%); box-shadow: 0 12px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white); border: 2px solid rgba(255,255,255,0.2);
    padding: 0.95rem 1.5rem; border-radius: 50px;
    font-weight: 600; font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: var(--touch-min);
    width: 100%;
}
.btn-hero-secondary:active { border-color: var(--orange); color: var(--orange); }

/* TRUST STRIP */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 1.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1rem;
    flex: 1;
    min-width: 160px;
}
.hero-trust-item i {
    font-size: 1.2rem;
    color: var(--orange);
    flex-shrink: 0;
}
.hero-trust-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.hero-trust-item span {
    display: block;
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.3;
}

.hero-trust-divider {
    width: 1px;
    background: rgba(255,255,255,0.07);
    align-self: stretch;
}

@media (max-width: 479px) {
    .hero-trust-divider { display: none; }
    .hero-trust-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .hero-trust-item:last-child { border-bottom: none; }
}

/* card Atendimento 24h — sempre visível e centralizado */
.hero-image-card {
    display: flex; flex-direction: column; justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    max-width: 320px;
    width: 100%;
    backdrop-filter: blur(10px);
}
.hero-card-inner {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    background: rgba(255,102,0,0.1);
    border-radius: var(--radius); padding: 1rem;
    margin-bottom: 1.5rem;
}
.hero-bug-icon { font-size: 2.5rem; color: var(--orange); }
.hero-card-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-card-text strong { font-size: 1rem; color: var(--white); }
.hero-card-text span { font-size: 0.8rem; color: var(--gray); }
.hero-rating { text-align: center; }
.hero-rating .stars { color: #ffd700; font-size: 1rem; margin-bottom: 0.3rem; }
.hero-rating span { font-size: 0.82rem; color: var(--gray-light); }

/* Remove gradiente do hero quando usa parallax */
#hero.has-parallax-bg { background: none; }

/* Imagem do hero começa abaixo da navbar e alinha o topo da foto */
#hero .parallax-bg-img {
    inset: 90px 0 0 0;
    background-position: center top;
    filter: none;
    transform: none;
}

/* seta scroll */
.hero-scroll {
    position: absolute; bottom: 1.2rem; left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll a { color: rgba(255,255,255,0.4); font-size: 1.1rem; }
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-8px); }
}

/* ======================================================
   TRUST BAR
====================================================== */
.trust-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(255,102,0,0.15);
    border-bottom: 1px solid rgba(255,102,0,0.15);
    padding: 1.2rem 0;
    overflow-x: auto;          /* scroll horizontal no mobile se necessário */
    -webkit-overflow-scrolling: touch;
}
.trust-bar .row { flex-wrap: nowrap; min-width: max-content; padding: 0 1rem; }

.trust-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--gray-light); font-size: 0.78rem; font-weight: 500;
    text-align: center; padding: 0 1rem; white-space: nowrap;
}
.trust-item i { font-size: 1.3rem; color: var(--orange); }

/* ======================================================
   SECTIONS — COMMONS
====================================================== */
.section-padding { padding: 3rem 0; }
.bg-dark-section { background: var(--dark); }

.section-tag {
    display: inline-block;
    background: rgba(255,102,0,0.15);
    color: var(--orange); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 0.35rem 1rem;
    border-radius: 50px; margin-bottom: 0.8rem;
}
.section-title {
    font-size: 1.7rem;
    font-weight: 800; color: var(--white); margin-bottom: 0.8rem;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--gray); font-size: 0.95rem;
    max-width: 580px; margin: 0 auto;
}

/* ======================================================
   SERVIÇOS
====================================================== */
.service-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    display: flex; flex-direction: column;
    transition: var(--transition);
    position: relative; overflow: hidden;
    /* active state para touch */
    -webkit-tap-highlight-color: transparent;
}
.service-card:active { transform: scale(0.98); }

.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,102,0,0.05), transparent);
    opacity: 0; transition: var(--transition);
}
@media (hover: hover) {
    .service-card:hover { transform: translateY(-6px); border-color: rgba(255,102,0,0.3); box-shadow: var(--shadow-orange); }
    .service-card:hover::before { opacity: 1; }
    .service-card:hover .service-icon-wrap { background: var(--orange); }
    .service-card:hover .service-icon-wrap i { color: var(--white); }
}

.service-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(255,102,0,0.12);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.service-icon-wrap i { font-size: 1.4rem; color: var(--orange); transition: var(--transition); }
.service-card h3  { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.service-card p   { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.8rem; }
.service-price    { color: var(--orange); font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; }

/* Botão de orçamento — touch target generoso */
.service-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255,102,0,0.1);
    color: var(--orange); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; border-radius: 50px;
    padding: 0.6rem 1.2rem;
    min-height: var(--touch-min);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.service-btn:active { background: rgba(255,102,0,0.2); }
.service-btn { border: none; cursor: pointer; width: 100%; }
.service-btn.dropdown-toggle::after { display: none; }
.service-btn-wrap { margin-top: auto; }
@media (hover: hover) {
    .service-btn:hover { background: rgba(255,102,0,0.18); color: var(--orange); }
}
.service-dropdown {
    background: var(--dark2);
    border: 1px solid rgba(255,102,0,0.25);
    border-radius: 12px;
    padding: 0.4rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    min-width: 180px;
}
.service-dropdown .dropdown-item {
    color: rgba(255,255,255,0.85);
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    font-size: 0.88rem; font-weight: 500;
    display: flex; align-items: center; gap: 10px;
    transition: var(--transition);
}
.service-dropdown .dropdown-item i {
    color: var(--orange);
    width: 18px; text-align: center;
    font-size: 0.95rem;
}
.service-dropdown .dropdown-item:hover,
.service-dropdown .dropdown-item:focus {
    background: rgba(255,102,0,0.12);
    color: var(--white);
}

/* ======================================================
   DIFERENCIAIS
====================================================== */
.diferencial-item {
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
@media (hover: hover) {
    .diferencial-item:hover { border-color: rgba(255,102,0,0.25); background: rgba(255,102,0,0.04); }
}

.diferencial-icon {
    width: 42px; height: 42px;
    background: rgba(255,102,0,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.7rem;
}
.diferencial-icon i { font-size: 1.1rem; color: var(--orange); }
.diferencial-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.diferencial-item p  { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

.diferencial-cta-card {
    background: var(--dark2);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
}
.diferencial-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,0.1);
    color: #ffd700; font-size: 0.8rem; font-weight: 600;
    padding: 0.35rem 1rem; border-radius: 50px;
    margin-bottom: 1rem;
}
.diferencial-cta-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem; }
.diferencial-cta-card p  { color: var(--gray); margin-bottom: 1.2rem; font-size: 0.92rem; }
.diferencial-list { list-style: none; margin-bottom: 1.5rem; }
.diferencial-list li {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.8); font-size: 0.88rem;
    padding: 0.35rem 0;
}
.diferencial-list li i { color: var(--orange); font-size: 0.75rem; }

.btn-orange {
    background: var(--wa-gradient);
    color: var(--white) !important; border: none;
    padding: 0.9rem 1.5rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-wa);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: var(--touch-min);
    -webkit-tap-highlight-color: transparent;
}
.btn-orange:active { transform: scale(0.96); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
@media (hover: hover) {
    .btn-orange:hover { background: linear-gradient(135deg, #2de070 0%, #1da851 100%); box-shadow: 0 12px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }
}

/* ======================================================
   QUEM SOMOS
====================================================== */
.quem-somos-card,
.metodo-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
@media (hover: hover) {
    .quem-somos-card:hover,
    .metodo-card:hover { border-color: rgba(255,102,0,0.25); transform: translateY(-4px); }
}
.quem-somos-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,102,0,0.12);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.quem-somos-logo i { font-size: 1.5rem; color: var(--orange); }
.quem-somos-card h3,
.metodo-card h3 {
    font-size: 1.35rem; font-weight: 800;
    color: var(--white); margin-bottom: 1rem;
    line-height: 1.3;
}
.quem-somos-card p {
    color: var(--gray); font-size: 0.95rem;
    line-height: 1.75; margin-bottom: 0.9rem;
}
.metodo-intro {
    color: var(--gray); font-size: 0.92rem;
    line-height: 1.7; margin-bottom: 1.5rem;
}
.metodo-etapas {
    display: flex; flex-direction: column; gap: 1rem;
}
.metodo-etapa {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 0.9rem; border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}
@media (hover: hover) {
    .metodo-etapa:hover {
        background: rgba(255,102,0,0.06);
        border-color: rgba(255,102,0,0.2);
        transform: translateX(4px);
    }
}
.metodo-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--wa-gradient, linear-gradient(135deg, #ff6600 0%, #e65c00 100%));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(255,102,0,0.35);
}
.metodo-info { display: flex; flex-direction: column; gap: 4px; }
.metodo-info strong {
    color: var(--white); font-size: 0.98rem; font-weight: 700;
}
.metodo-info span {
    color: var(--gray); font-size: 0.85rem; line-height: 1.55;
}

/* ======================================================
   FAQ
====================================================== */
.faq-icon-wrap {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(255,102,0,0.35);
}
.faq-icon-wrap i {
    font-size: 1.7rem; color: var(--white);
    font-weight: 900;
}
.faq-accordion .accordion-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,102,0,0.4);
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-accordion .accordion-item:hover {
    border-color: rgba(255,102,0,0.7);
}
.faq-accordion .accordion-button {
    background: transparent;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 1rem 1.25rem;
    box-shadow: none;
    border: none;
    text-align: left;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255,102,0,0.06);
    color: var(--orange);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.6rem; font-weight: 300;
    color: var(--orange);
    line-height: 1; margin-left: auto;
    width: auto; height: auto;
    transform: none !important;
    transition: var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none !important;
}
.faq-accordion .accordion-body {
    color: var(--gray);
    padding: 0 1.25rem 1.1rem;
    font-size: 0.92rem;
    line-height: 1.75;
    border-top: 1px solid rgba(255,102,0,0.15);
    padding-top: 1rem;
}
.btn-faq-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #1a0a00 0%, var(--orange) 130%);
    color: var(--white);
    font-weight: 700; font-size: 0.9rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255,102,0,0.3);
    transition: var(--transition);
    border: 1px solid rgba(255,102,0,0.4);
}
.btn-faq-cta i { font-size: 1.1rem; }
@media (hover: hover) {
    .btn-faq-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(255,102,0,0.45);
        color: var(--white);
        background: linear-gradient(135deg, #2a1100 0%, #ff7a1f 130%);
    }
}

/* ======================================================
   COMO FUNCIONAM OS SERVIÇOS
====================================================== */
.cf-section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
}
.cf-section-title span {
    color: var(--orange);
}
.cf-card {
    padding: 1.5rem 1rem;
}
.cf-icon-wrap {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cf-icon-box {
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
}
/* Ícone 365 */
.cf-365-icon {
    width: 96px; height: 96px;
    border-radius: 50%;
    border: 3px solid var(--orange);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative;
}
.cf-365-icon::before,
.cf-365-icon::after {
    content: '';
    position: absolute;
    border: 2.5px solid var(--orange);
    border-radius: 50%;
    width: 108px; height: 108px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 0%, 100% 50%);
}
.cf-365-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.cf-365-txt {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2.5px;
    margin-top: 3px;
}
/* Ícone escudo + casa */
.cf-shield-house {
    position: relative;
    width: 80px; height: 96px;
    display: flex; align-items: center; justify-content: center;
}
.cf-shield-outer {
    font-size: 5rem;
    color: var(--orange);
}
.cf-house-inner {
    position: absolute;
    font-size: 1.9rem;
    color: var(--black);
    top: 50%; left: 50%;
    transform: translate(-50%, -44%);
}
/* Título e texto dos cards */
.cf-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.9rem;
    line-height: 1.4;
}
.cf-divider {
    width: 48px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto 1rem;
}
.cf-desc {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.75;
    max-width: 300px;
    margin: 0 auto;
}
@media (max-width: 576px) {
    .cf-icon-box { font-size: 3rem; }
    .cf-365-icon { width: 78px; height: 78px; }
    .cf-365-num { font-size: 1.5rem; }
    .cf-shield-outer { font-size: 4rem; }
    .cf-house-inner { font-size: 1.5rem; }
}

/* ======================================================
   PRAGAS & ESTAÇÕES
====================================================== */
.pragas-titulo {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 800;
    color: var(--white);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.35;
}
.pragas-titulo span { color: var(--orange); }
.pragas-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pragas-grid::-webkit-scrollbar { display: none; }
.praga-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.1rem 0.7rem;
    cursor: pointer;
    flex: 0 0 auto;
    min-width: 95px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.praga-item--ativo {
    background: rgba(255,255,255,0.06);
    border-bottom-color: var(--orange);
}
@media (hover: hover) {
    .praga-item:hover { background: rgba(255,255,255,0.04); }
}
.praga-svg {
    width: 70px !important; height: 70px !important;
    min-width: 70px; max-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.7rem;
    transition: var(--transition);
    flex-shrink: 0;
}
@media (hover: hover) {
    .praga-item:hover .praga-svg { opacity: 0.85; }
}
.praga-svg img {
    width: 100% !important; height: 100% !important;
    max-width: 100%; max-height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.praga-nome {
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--gray);
    text-align: center;
    line-height: 1.3;
}

/* Slider de estações */
.estacoes-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.estacao-slide {
    display: none;
    min-height: 390px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.estacao-slide--ativo { display: block; }
.estacao-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.58);
}
/* Botões absolutos nas bordas do slide */
.est-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 2;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.75);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.est-btn--prev { left: 1.25rem; }
.est-btn--next { right: 1.25rem; }
.est-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}
/* Conteúdo das duas colunas */
.estacao-conteudo {
    position: relative; z-index: 1;
    display: flex;
    align-items: center;
    min-height: 390px;
    padding: 2.5rem 5rem;
    gap: 2rem;
}
.estacao-col-esq {
    flex: 0 0 38%;
    text-align: center;
}
.estacao-box {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.65);
    padding: 0.9rem 1.4rem;
    margin-bottom: 1.2rem;
    text-align: center;
    vertical-align: top;
}
.estacao-box p {
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}
.estacao-nome-h3 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0.2rem 0 0;
    line-height: 1.1;
}
.estacao-desc {
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    line-height: 1.75;
    text-align: center;
}
.estacao-col-dir {
    flex: 1;
    text-align: center;
}
.estacao-icones {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.estacao-icone-wrap {
    width: 90px !important; height: 90px !important;
    min-width: 90px; max-width: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.estacao-icone-wrap img {
    width: 100% !important; height: 100% !important;
    max-width: 100%; max-height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.estacao-linha {
    width: 60%;
    max-width: 320px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #28a745 50%, transparent 100%);
    margin: 0 auto 1rem;
}
.estacao-info {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
    word-break: break-word;
}
.hl-orange { color: var(--orange); font-weight: 600; }
.hl-yellow { color: #ffc107; font-weight: 600; }

@media (max-width: 767px) {

    /* ════════════════════════════════
       GRADE DE PRAGAS — grid 3×3
    ════════════════════════════════ */
    .pragas-lista { padding: 2rem 0; }
    .pragas-titulo { font-size: 1.05rem; padding: 0 1rem; line-height: 1.4; }

    .pragas-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        gap: 0.5rem !important;
        padding: 0 1rem 1rem !important;
        justify-items: center;
        scrollbar-width: none;
    }
    .pragas-grid::-webkit-scrollbar { display: none; }

    .praga-item {
        min-width: unset !important;
        width: 100% !important;
        max-width: 110px;
        padding: 0.75rem 0.4rem 0.5rem !important;
        border-bottom: 2px solid transparent;
        border-radius: 10px;
        margin: 0 auto;
    }
    .praga-svg {
        width: 64px !important; height: 64px !important;
        min-width: 64px !important; max-width: 64px !important;
        margin: 0 auto 0.5rem;
    }
    .praga-svg img {
        width: 100% !important; height: 100% !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        display: block !important;
    }
    .praga-nome {
        font-size: 0.7rem;
        text-align: center;
        display: block;
        line-height: 1.3;
    }

    /* ════════════════════════════════
       SLIDER DE ESTAÇÕES
    ════════════════════════════════ */
    .estacao-slide { min-height: auto; }
    .estacao-conteudo {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem;
        padding: 2.5rem 3rem !important;
        min-height: unset;
    }
    .estacao-col-esq,
    .estacao-col-dir {
        flex: none !important;
        width: 100% !important;
        text-align: center !important;
        min-width: 0 !important;
    }
    .estacao-box {
        display: inline-block !important;
        max-width: calc(100vw - 8rem) !important;
        text-align: center !important;
    }
    .estacao-nome-h3 { font-size: 1.4rem; letter-spacing: 2px; }
    .estacao-desc {
        font-size: 0.82rem;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .estacao-icone-wrap {
        width: 70px !important; height: 70px !important;
        min-width: 70px !important; max-width: 70px !important;
    }
    .estacao-icone-wrap img {
        width: 100% !important; height: 100% !important;
        object-fit: cover !important;
        border-radius: 50% !important;
    }
    .estacao-info {
        font-size: 0.85rem;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .estacao-linha { width: 80%; }

    /* Setas nas bordas */
    .est-btn {
        width: 36px !important; height: 36px !important;
        font-size: 0.8rem;
        top: 50% !important;
    }
    .est-btn--prev { left: 0.3rem !important; }
    .est-btn--next { right: 0.3rem !important; }

    /* ════════════════════════════════
       COMO FUNCIONA
    ════════════════════════════════ */
    .cf-section-title { font-size: 1.2rem; padding: 0 0.5rem; }
    .cf-icon-wrap { height: 85px; margin-bottom: 0.75rem; }
    .cf-title { font-size: 0.95rem; }
    .cf-desc { font-size: 0.85rem; }
    .cf-card { padding: 1rem 0.5rem; }

    /* ════════════════════════════════
       QUEM SOMOS / MÉTODO
    ════════════════════════════════ */
    .quem-somos-card,
    .metodo-card { padding: 1.5rem 1.2rem; }
    .metodo-etapa { gap: 0.65rem; }

    /* ════════════════════════════════
       SERVIÇOS
    ════════════════════════════════ */
    .service-card { padding: 1.5rem 1rem; }

    /* ════════════════════════════════
       PLANOS
    ════════════════════════════════ */
    .plan-card { margin-bottom: 0; }
    .plans-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* ════════════════════════════════
       DEPOIMENTOS
    ════════════════════════════════ */
    .depoimentos-scroll { padding-bottom: 0.75rem; }

    /* ════════════════════════════════
       CTA
    ════════════════════════════════ */
    .cta-title { font-size: 1.35rem; }
    .btn-cta-large,
    .btn-cta-outline { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 0.75rem; }

    /* ════════════════════════════════
       RODAPÉ
    ════════════════════════════════ */
    .footer-logo { width: 200px; }
    .footer-title { margin-top: 0.5rem; }

    /* ════════════════════════════════
       SEÇÕES GERAIS
    ════════════════════════════════ */
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.88rem; }
}

/* ======================================================
   DEPOIMENTOS
====================================================== */
.depoimento-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem; height: 100%;
    transition: var(--transition);
}
@media (hover: hover) {
    .depoimento-card:hover { border-color: rgba(255,102,0,0.25); transform: translateY(-5px); }
}

.depoimento-stars { color: #ffd700; font-size: 0.9rem; margin-bottom: 0.8rem; }
.depoimento-texto {
    color: rgba(255,255,255,0.8); font-size: 0.88rem;
    line-height: 1.8; margin-bottom: 1.2rem; font-style: italic;
}
.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
    width: 42px; height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; color: var(--white);
    flex-shrink: 0;
}
.depoimento-autor strong { display: block; font-size: 0.9rem; color: var(--white); }
.depoimento-autor small  { color: var(--gray); font-size: 0.75rem; }

/* Scroll horizontal de depoimentos no mobile */
.depoimentos-scroll {
    display: flex; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.depoimentos-scroll::-webkit-scrollbar { display: none; }
.depoimentos-scroll .depoimento-card {
    min-width: 280px; scroll-snap-align: start;
    flex-shrink: 0;
}
/* Indicadores de scroll */
.scroll-hint {
    display: flex; justify-content: center; align-items: center;
    gap: 6px; margin-top: 0.8rem;
    color: var(--gray); font-size: 0.78rem;
}
.scroll-hint i { color: var(--orange); }

/* ======================================================
   CTA
====================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #1a0800 0%, #0d0600 50%, #1a0800 100%);
    padding: 3.5rem 0;
    overflow: hidden;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,102,0,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-size: 1.7rem;
    font-weight: 900; color: var(--white); margin-bottom: 0.8rem;
    line-height: 1.2;
}
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }

.cta-buttons {
    display: flex; flex-direction: column; gap: 12px; align-items: stretch;
}
.btn-cta-large {
    background: var(--wa-gradient);
    color: var(--white); border: none;
    padding: 1rem 1.5rem; border-radius: 50px;
    font-weight: 700; font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-wa);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: var(--touch-min);
    -webkit-tap-highlight-color: transparent;
}
.btn-cta-large:active { transform: scale(0.96); color: var(--white); box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
@media (hover: hover) {
    .btn-cta-large:hover { color: var(--white); background: linear-gradient(135deg, #2de070 0%, #1da851 100%); box-shadow: 0 12px 35px rgba(37,211,102,0.5); transform: translateY(-2px); }
}

.btn-cta-outline {
    background: transparent;
    color: var(--white); border: 2px solid rgba(255,255,255,0.3);
    padding: 1rem 1.5rem; border-radius: 50px;
    font-weight: 600; font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: var(--touch-min);
}
.btn-cta-outline:active { border-color: var(--orange); color: var(--orange); }

.cta-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 1rem; }

/* ======================================================
   FOOTER
====================================================== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,102,0,0.15);
    padding: 3rem 0 1.5rem;
}
.footer-brand {
    font-size: 1.8rem; font-weight: 900;
    margin-bottom: 0.8rem; display: inline-block;
}
.footer-desc { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.footer-social a {
    width: 46px; height: 46px;       /* touch target */
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); font-size: 1rem;
    transition: var(--transition); text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.footer-social a:active { background: var(--orange); border-color: var(--orange); color: var(--white); }
@media (hover: hover) {
    .footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
}

.footer-title { color: var(--white); font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-list { list-style: none; }
.footer-list li {
    display: flex; align-items: center; gap: 8px;
    color: var(--gray); font-size: 0.85rem; padding: 0.28rem 0;
}
.footer-list li i { color: var(--orange); font-size: 0.65rem; }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; align-items: center; gap: 12px;
    color: var(--gray); font-size: 0.85rem;
    padding: 0.5rem 0;
    line-height: 1.4;
}
.footer-contact li i {
    color: var(--orange);
    width: 18px; flex-shrink: 0;
    font-size: 0.95rem;
    text-align: center;
}
.footer-contact a {
    color: var(--gray); text-decoration: none;
    transition: var(--transition);
    display: inline-flex; align-items: center;
    line-height: 1.4;
}
.footer-contact a:active { color: var(--orange); }
@media (hover: hover) {
    .footer-contact a:hover { color: var(--orange); }
}

.footer-hr { border-color: rgba(255,255,255,0.07); margin: 2rem 0 1.2rem; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }

/* ======================================================
   WHATSAPP FLUTUANTE — destaque máximo no mobile
====================================================== */
.whatsapp-float {
    position: fixed; bottom: 1.2rem; right: 1.2rem;
    background: #25d366;
    border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    color: var(--white); font-size: 1.6rem;
    text-decoration: none; z-index: 1000;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    padding: 0.8rem 1.2rem;
    -webkit-tap-highlight-color: transparent;
    /* label visível */
    font-weight: 700;
}
.whatsapp-float .wa-icon { font-size: 1.5rem; }
.whatsapp-float .wa-label {
    font-size: 0.85rem; font-weight: 700;
    white-space: nowrap; line-height: 1;
}
.whatsapp-float:active { transform: scale(0.96); color: var(--white); }

.whatsapp-pulse {
    position: absolute; inset: 0;
    background: #25d366; border-radius: inherit;
    animation: waPulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%  { transform: scale(1);   opacity: 0.6; }
    100%{ transform: scale(1.5); opacity: 0; }
}

/* ======================================================
   BACK TO TOP
====================================================== */
.back-to-top {
    position: fixed; bottom: 5.5rem; right: 1.2rem;
    width: 44px; height: 44px;
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white); font-size: 0.9rem;
    cursor: pointer; z-index: 1000;
    display: none; align-items: center; justify-content: center;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.back-to-top.show { display: flex; }
.back-to-top:active { background: var(--orange); border-color: var(--orange); }
@media (hover: hover) {
    .back-to-top:hover { background: var(--orange); border-color: var(--orange); }
}

/* ======================================================
   VÍDEO FACADE + MODAL
====================================================== */
.video-facade {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}
.video-facade:active { transform: scale(0.99); }
@media (hover: hover) {
    .video-facade:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,0.6); }
    .video-facade:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.12); }
}

.video-thumb {
    width: 100%; height: auto; display: block;
    aspect-ratio: 16/9; object-fit: cover;
}

.video-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.1) 100%);
}

.video-play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: transparent; border: none; padding: 0;
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
    pointer-events: none;
}

/* MODAL */
.video-modal {
    position: fixed; inset: 0;
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.open { opacity: 1; visibility: visible; }

.video-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.88);
    cursor: pointer;
}

.video-modal-box {
    position: relative; z-index: 1;
    width: 92vw; max-width: 900px;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.video-modal.open .video-modal-box { transform: scale(1); }

.video-modal-close {
    position: absolute; top: -44px; right: 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.9rem;
    transition: var(--transition);
}
.video-modal-close:hover { background: rgba(255,255,255,0.25); }

.video-responsive {
    position: relative; padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    border-radius: var(--radius-lg);
    background: #000;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.video-responsive iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: 0;
}

/* ======================================================
   PARALLAX BACKGROUND SECTIONS
====================================================== */
.has-parallax-bg {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.parallax-bg-img {
    position: absolute;
    inset: -80px 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.12);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

/* ======================================================
   UTILITIES
====================================================== */
.z-1 { position: relative; z-index: 1; }

/* ======================================================
   ANIMAÇÕES AOS
====================================================== */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="zoom-in"]    { transform: scale(0.94); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* desativa animações em quem prefere sem movimento */
@media (prefers-reduced-motion: reduce) {
    [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { animation-duration: 0.01ms !important; }
}

/* ======================================================
   ▲▲▲  BREAKPOINTS  ▲▲▲
   Mobile: base (< 480px)
   Large mobile: 480px+
   Tablet: 768px+
   Desktop: 992px+
   Large desktop: 1200px+
====================================================== */

/* ---------- 480px — large mobile ---------- */
@media (min-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-buttons { flex-direction: row; flex-wrap: wrap; }
    .btn-hero-primary, .btn-hero-secondary { width: auto; flex: 1; min-width: 200px; }
    .trust-bar .row { flex-wrap: wrap; min-width: auto; }
    .trust-item { white-space: normal; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2rem; }
    .cta-buttons { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .btn-cta-large, .btn-cta-outline { width: auto; }
    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; }
    .back-to-top { bottom: 6rem; right: 1.5rem; }
}

/* ---------- 768px — tablet ---------- */
@media (min-width: 768px) {
    /* Navbar */
    #navbar { padding: 1rem 0; background: transparent; }
    #navbar.scrolled { background: rgba(10,10,10,0.97); }
    .navbar-collapse { background: transparent; margin: 0; padding: 0; }
    .nav-link { padding: 0.5rem 0.6rem !important; font-size: 0.92rem; }
    .btn-cta-nav { margin: 0; padding: 0.55rem 1.1rem !important; font-size: 0.88rem; }
    .navbar-nav { gap: 0 !important; }

    /* Hero */
    #hero { padding-top: 170px; padding-bottom: 4rem; min-height: auto; }
    #hero .row.min-vh-100 { min-height: auto !important; padding-top: 2rem !important; padding-bottom: 1.5rem !important; }
    #hero .row.min-vh-100 { align-items: flex-start !important; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .stat-item { min-width: auto; }

    /* Sections */
    .section-padding { padding: 4.5rem 0; }
    .section-title { font-size: 2.4rem; }
    .cta-title { font-size: 2.2rem; }
    .cta-section { padding: 5rem 0; }

    /* Trust bar — grid normal no tablet */
    .trust-bar .row { flex-wrap: wrap; }
    .trust-item { font-size: 0.82rem; white-space: normal; padding: 0; }
    .trust-item i { font-size: 1.4rem; }

    /* Serviços — botão compacto manter estilo */

    /* Diferenciais */
    .diferencial-cta-card { margin-top: 0; }

    /* Depoimentos — grid normal, sem scroll */
    .depoimentos-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        scroll-snap-type: none;
    }
    .depoimentos-scroll .depoimento-card { min-width: auto; }
    .scroll-hint { display: none; }

    /* Footer */
    .footer { padding: 4rem 0 2rem; }

    /* Whatsapp float — compacto no tablet */
    .whatsapp-float { padding: 0; width: 58px; height: 58px; border-radius: 50%; justify-content: center; font-size: 1.7rem; }
    .whatsapp-float .wa-label { display: none; }
    .back-to-top { bottom: 7rem; }
}

/* ---------- 992px — desktop ---------- */
@media (min-width: 992px) {
    /* Hero — duas colunas, card visível */
    .hero-title { font-size: 3.5rem; }
    .hero-buttons { flex-direction: row; }
    .btn-hero-primary, .btn-hero-secondary { width: auto; min-width: auto; }
    .hero-image-card { max-width: 380px; padding: 2rem; }

    /* Sections */
    .section-padding { padding: 5rem 0; }
    .section-title { font-size: 2.8rem; }
    .cta-title { font-size: 2.8rem; }
    .cta-section { padding: 6rem 0; }
    .cta-buttons { justify-content: center; }

    /* Depoimentos — 3 colunas */
    .depoimentos-scroll { grid-template-columns: repeat(3, 1fr); }

    /* Diferenciais cta card */
    .diferencial-cta-card { padding: 2.5rem; }

    /* Loader logo maior no desktop */
    .loader-logo { font-size: 2.5rem; }
}

/* ---------- 1200px — large desktop ---------- */
@media (min-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .stat-number { font-size: 1.4rem; }
    .service-card { padding: 2rem; }
    .depoimento-card { padding: 2rem; }
}

/* ======================================================
   MODAL WHATSAPP ORÇAMENTO
====================================================== */
.wa-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 1rem;
}
.wa-modal-overlay.open {
    opacity: 1; visibility: visible;
}
.wa-modal-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(255,102,0,0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem 2rem;
    max-width: 460px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,102,0,0.08);
    transform: scale(0.88) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-modal-overlay.open .wa-modal-card {
    transform: scale(1) translateY(0);
}

/* Close button */
.wa-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #888; font-size: 0.9rem;
    cursor: pointer; transition: var(--transition);
}
.wa-modal-close:hover {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.3);
    color: #f87171;
}

/* Header */
.wa-modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}
.wa-modal-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem; color: #fff;
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
    animation: waIconPulse 2s ease-in-out infinite;
}
@keyframes waIconPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35); }
    50%      { box-shadow: 0 10px 40px rgba(37,211,102,0.55); }
}
.wa-modal-header h3 {
    font-size: 1.4rem; font-weight: 800;
    color: #fff; margin: 0 0 0.4rem;
}
.wa-modal-header p {
    color: #888; font-size: 0.88rem; margin: 0;
}

/* Form */
.wa-form-group {
    margin-bottom: 1.1rem;
}
.wa-form-group label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600;
    color: #ccc; margin-bottom: 0.5rem;
}
.wa-form-group label i {
    color: var(--orange); font-size: 0.85rem;
}
.wa-form-group input,
.wa-form-group select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.wa-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23ff6600'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.wa-form-group input::placeholder {
    color: #555;
}
/* Corrige fundo branco do autocomplete do navegador */
.wa-form-group input:-webkit-autofill,
.wa-form-group input:-webkit-autofill:hover,
.wa-form-group input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset !important;
    -webkit-text-fill-color: #fff !important;
    border-color: var(--orange) !important;
    transition: background-color 5000s ease-in-out 0s;
}
.wa-form-group input:focus,
.wa-form-group select:focus {
    border-color: var(--orange);
    background: rgba(255,102,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,102,0,0.12);
}
/* select option styling */
.wa-form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem;
}

/* Submit button */
.wa-modal-btn {
    width: 100%;
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    color: #fff; border: none;
    padding: 1rem;
    border-radius: 14px;
    font-size: 1.05rem; font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
    margin-top: 0.5rem;
}
.wa-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
    background: linear-gradient(135deg, #2de070 0%, #1da851 100%);
}
.wa-modal-btn:active {
    transform: scale(0.97);
}
.wa-modal-btn i {
    font-size: 1.2rem;
}

/* Note */
.wa-modal-note {
    text-align: center;
    color: #555; font-size: 0.75rem;
    margin: 1rem 0 0;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.wa-modal-note i {
    font-size: 0.65rem; color: #555;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .wa-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .wa-modal-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .wa-modal-overlay.open .wa-modal-card {
        transform: scale(1) translateY(0);
    }
    .wa-modal-card:not(.open) {
        transform: scale(1) translateY(100%);
    }
    .wa-modal-header h3 {
        font-size: 1.2rem;
    }
    .wa-modal-icon {
        width: 56px; height: 56px;
        font-size: 1.5rem;
    }
    .wa-form-group input,
    .wa-form-group select {
        padding: 1rem;
        font-size: 16px; /* previne zoom no iOS */
        min-height: 48px;
    }
    .wa-modal-btn {
        padding: 1.1rem;
        font-size: 1rem;
        min-height: 52px;
        border-radius: 12px;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .wa-modal-card {
        padding: 1.5rem 1.2rem 1.2rem;
    }
    .wa-modal-header h3 {
        font-size: 1.1rem;
    }
    .wa-modal-header p {
        font-size: 0.8rem;
    }
}

/* ======================================================
   PLANOS / PRICING (seção #diferenciais)
====================================================== */

.plans-badge-365 {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gradient);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    text-transform: uppercase;
}

.plans-subtitle {
    max-width: 560px;
    margin: 0.8rem auto 0;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Cards */
.plan-card {
    position: relative;
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.plan-card:hover {
    border-color: rgba(255, 102, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.plan-card--featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3), 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(30, 20, 10, 0.95);
}

.plan-card--featured:hover {
    box-shadow: 0 0 0 2px var(--orange), 0 24px 60px rgba(255, 102, 0, 0.2);
}

.plan-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.85rem;
    border-bottom-left-radius: 10px;
}

.plan-card-header {
    padding: 1.3rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
}

.plan-plus {
    color: var(--orange);
    font-size: 1.4rem;
    vertical-align: middle;
    line-height: 1;
}

.plan-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

.plan-card-body {
    padding: 1.1rem 1.5rem;
    flex: 1;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    text-align: left;
}

.plan-features li {
    color: var(--gray-light);
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-card-footer {
    padding: 0.9rem 1.5rem 1.4rem;
}

.btn-plan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 102, 0, 0.1);
    color: var(--orange);
    border: 1.5px solid rgba(255, 102, 0, 0.4);
    transition: var(--transition);
}

.btn-plan:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
    transform: translateY(-1px);
}

.btn-plan--featured {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-orange);
}

.btn-plan--featured:hover {
    background: linear-gradient(135deg, #ff8533 0%, #ff5500 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.5);
}

/* Tabela comparativa */
.plans-compare {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(6px);
}

.plans-compare-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.plan-table thead th {
    padding: 0.75rem 1rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.plan-table thead th:first-child { text-align: left; }

.plan-table thead th.featured-col {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.plan-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.plan-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }

.plan-table tbody td {
    padding: 0.65rem 1rem;
    text-align: center;
}

.plan-table tbody td:first-child {
    text-align: left;
    color: var(--gray-light);
}

.plan-table tbody td.featured-col { background: rgba(255, 102, 0, 0.05); }

.plan-dash {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

@media (max-width: 767px) {
    .plan-card-header,
    .plan-card-body,
    .plan-card-footer {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .plans-compare { padding: 1.2rem 0.8rem; }

    .plan-table thead th,
    .plan-table tbody td {
        padding: 0.55rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* ======================================================
   EXTRA SMALL — ≤ 360px
====================================================== */
@media (max-width: 360px) {
    /* Pragas — 3×3 ainda menor */
    .pragas-grid { gap: 0.25rem !important; padding: 0 0.5rem 0.75rem !important; }
    .praga-item { max-width: 85px !important; padding: 0.5rem 0.25rem 0.35rem !important; }
    .praga-svg { width: 46px !important; height: 46px !important; min-width: 46px !important; max-width: 46px !important; }
    .praga-nome { font-size: 0.58rem; }
    /* Slider */
    .estacao-conteudo { padding: 2rem 2.25rem !important; }
    .est-btn { width: 26px !important; height: 26px !important; font-size: 0.65rem; }
    .est-btn--prev { left: 0.15rem !important; }
    .est-btn--next { right: 0.15rem !important; }
    .estacao-icone-wrap { width: 52px !important; height: 52px !important; min-width: 52px !important; max-width: 52px !important; }
    .estacao-nome-h3 { font-size: 1.1rem; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    /* Navbar */
    .brand-logo { width: 200px !important; height: 50px !important; }

    /* Hero */
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-trust-strip { flex-direction: column; gap: 0.75rem; }
    .hero-trust-divider { display: none; }

    /* Trust bar */
    .trust-item { font-size: 0.78rem; }

    /* Pragas — grid 3×3 menor */
    .pragas-grid { gap: 0.35rem !important; padding: 0 0.75rem 1rem !important; }
    .praga-item { max-width: 95px !important; padding: 0.6rem 0.3rem 0.4rem !important; }
    .praga-svg { width: 54px !important; height: 54px !important; min-width: 54px !important; max-width: 54px !important; }
    .praga-nome { font-size: 0.62rem; }
    .pragas-titulo { font-size: 1rem; }

    /* Slider */
    .estacao-conteudo { padding: 2rem 2.75rem !important; }
    .est-btn { width: 30px !important; height: 30px !important; font-size: 0.7rem; }
    .est-btn--prev { left: 0.2rem !important; }
    .est-btn--next { right: 0.2rem !important; }
    .estacao-nome-h3 { font-size: 1.25rem; letter-spacing: 1.5px; }
    .estacao-icone-wrap { width: 60px !important; height: 60px !important; min-width: 60px !important; max-width: 60px !important; }

    /* Como Funciona */
    .cf-section-title { font-size: 1.1rem; }
    .cf-icon-wrap { height: 76px; }

    /* Seção geral */
    .section-title { font-size: 1.5rem; }
    .section-tag { font-size: 0.72rem; }

    /* Planos */
    .plan-name { font-size: 1.1rem; }
    .plan-features li { font-size: 0.82rem; }

    /* FAQ */
    .accordion-button { font-size: 0.88rem; padding: 0.9rem 1rem; }
    .accordion-body { font-size: 0.85rem; }

    /* Rodapé */
    .footer-logo { width: 170px; height: 52px; }
    .footer-desc { font-size: 0.82rem; }
    .footer-list li, .footer-contact li { font-size: 0.82rem; }
}
