/* 
 * FTECH ACESSÓRIOS - Landing Page Style 
 * Mobile First | Clean Design | SEO Optimized 
 */

:root {
    --primary-color: #ff6600;
    --primary-dark: #cc5200;
    --secondary-color: #25d366;
    --accent-color: #ffc107;

    /* Off-white premium — não cansa a vista */
    --bg-white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #1a1a1a;

    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --text-light: #ffffff;

    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.13);
    --shadow-orange: 0 8px 32px rgba(255, 102, 0, 0.25);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header heights — usadas pelo JS de shrink */
    --header-h: 72px;
    --header-h-sm: 56px;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =======================================
   TIPOGRAFIA PREMIUM — Apple-style
======================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.18;
    /* letter-spacing negativo = visual moderno e denso */
    letter-spacing: -0.02em;
}

h1 span,
h2 span,
h3 span,
.section-title {
    color: var(--primary-color);
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.65;
}

.highlight {
    color: var(--primary-color);
}

/* =======================================
   BOTÕES — Micro-animação de conversão
======================================= */
.btn-primary,
.btn-secondary,
.btn-cta-small,
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease,
        background-color 0.2s ease;
    gap: 8px;
    border: none;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-orange);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 12px 40px rgba(255, 102, 0, 0.38);
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
}

.btn-secondary:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-cta-small {
    padding: 9px 18px;
    font-size: 0.88rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
}

.btn-cta-small:hover {
    transform: scale(1.05);
    background-color: #1ebe5d;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* =======================================
   HEADER — Sticky com shrink suave no scroll
======================================= */
.header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px) saturate(1.8);
    -webkit-backdrop-filter: blur(14px) saturate(1.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    /* Transição suave de altura e sombra */
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Estado encolhido — ativado pelo JS ao rolar */
.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header.scrolled .logo img {
    max-height: 38px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo {
    display: block;
    max-width: 180px;
    height: auto;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: none;
    /* Escondido por padrão no mobile */
}

/* Menu Mobile */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-menu ul li a {
        display: block;
        padding: 10px;
        font-weight: 500;
    }
}

/* =======================================
   HERO SECTION — Dark Premium
======================================= */
.hero {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #0d1117 0%, #161b27 55%, #0f1620 100%);
    overflow: hidden;
    color: white;
}

/* Blob laranja de fundo */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.14) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

/* Blob verde sutil */
.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 5.5vw, 3.6rem);
    color: white;
    margin-bottom: 1.3rem;
    line-height: 1.1;
    /* Tipografia imponente — Apple/Stripe-style */
    letter-spacing: -0.03em;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7;
}

/* Override: highlight laranja no título */
.hero-content h1 .highlight {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.35);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 360px;
}

/* Ajuste dos botões no contexto dark */
.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

/* Badge hero verde */
.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    color: #4ade80;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ---- Tags flutuantes de serviços ---- */
.hero-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.hero-tag i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.hero-tag:hover {
    background: rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.3);
    color: white;
}

/* ---- Stats Bar ---- */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 520px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Phone Visual ---- */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone-wrapper {
    position: relative;
    width: 300px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Glow laranja por trás */
.hero-phone-wrapper::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.35) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.hero-phone-img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(255, 102, 0, 0.25)) drop-shadow(0 4px 24px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
}

/* Ícones orbitando o celular */
.hero-orbit-badge {
    position: absolute;
    z-index: 20;
    /* Garante acima do SVG e do glow */
    background: rgba(13, 17, 35, 0.88);
    border: 1px solid rgba(255, 102, 0, 0.35);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    animation: float 4s ease-in-out infinite;
}

.hero-orbit-badge i {
    color: var(--primary-color);
}

.orbit-1 {
    top: 8%;
    right: -10px;
    animation-delay: 0s;
}

.orbit-2 {
    bottom: 15%;
    right: -10px;
    animation-delay: 1s;
}

.orbit-3 {
    top: 42%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}



/* =======================================
   SERVIÇOS — Glassmorphism + respiro 100px
======================================= */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Glassmorphism card */
.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Brilho sutil de vidro no topo */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.2);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 100%);
    color: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 22px;
    transition: var(--transition);
    border: 1px solid rgba(255, 102, 0, 0.15);
}

.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: transparent;
    transform: rotate(-4deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.3);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Diferenciais */
.features {
    padding: 100px 0;
    background-color: #ffffff;
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
}

.feature-item h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-secondary);
}

/* Tabela Comparativa */
.comparison-container {
    margin-top: 60px;
    overflow-x: auto;
    /* Scroll lateral em mobile */
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    /* Garante layout fixo em telas pequenas */
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    background-color: var(--bg-dark);
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.col-criteria {
    text-align: left;
    font-weight: 600;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-ftech {
    background-color: var(--primary-color);
    /* Laranja Vibrante */
    color: var(--text-light);
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--primary-color);
    padding: 15px 10px;
    box-shadow: var(--shadow-md);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    border-bottom: 4px solid var(--primary-dark);
    position: relative;
    z-index: 1;
}

.col-others {
    color: var(--text-primary);
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 15px 10px;
}

.highlight-text {
    color: var(--text-light);
    /* Texto branco no fundo verde */
}

/* Depoimentos */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Google Reviews Widget Style */
.google-reviews-container {
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid #e0e0e0;
}

.google-review-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
    border: 1px solid #f0f0f0;
    position: relative;
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #333;
}

.review-meta {
    font-size: 0.8rem;
    color: #777;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
}

.g-logo-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
}


/* Widget Trustindex — herda fonte Inter do site */
.trustindex-widget-wrapper {
    margin: 40px 0 20px;
    min-height: 280px;
    /* Força herança de tipografia no widget externo */
    font-family: var(--font-body) !important;
}

/* Sobreposição de fonte no iframe / shadow DOM do Trustindex */
.trustindex-widget-wrapper *,
.trustindex-widget-wrapper [class*="ti-"] {
    font-family: var(--font-body) !important;
}

/* CTA pós-avaliações */
.post-reviews-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.cta-hook {
    font-size: 1.05rem;
    color: #444;
    text-align: center;
    margin: 0;
}

.cta-hook strong {
    color: var(--primary-color);
}

/* Botão CTA WhatsApp — Verde conversão + scale hover */
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #1cb954 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 17px 38px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: -0.01em;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.38);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.2s ease;
}

.btn-cta-whatsapp:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
    color: #fff;
}

/* Botão Google Reviews - Premium */

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    color: #3c4043;
    border: 1.5px solid #e8eaed;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.google-reviews-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.06), rgba(234, 67, 53, 0.04));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.google-reviews-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #202124;
}

.google-reviews-btn:hover::before {
    opacity: 1;
}

.google-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.google-btn-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202124;
}

.google-btn-sub {
    font-size: 0.75rem;
    color: #5f6368;
    margin-top: 1px;
}



.btn-whatsapp-loja {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
}

.btn-whatsapp-loja:hover {
    background-color: #1DA851;
    color: white;
}

/* =======================================
   SLIDER ANTES/DEPOIS — UX de alta conversão
======================================= */
.transformation-gallery {
    padding: 100px 0;
    background-color: #ffffff;
}

.image-comparison-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
    /* Garante proporção fixa */
    overflow: hidden;
    /* Fundo Premium Tech — substitui o preto chapado */
    background: linear-gradient(135deg, #0d1117 0%, #161b27 50%, #0d1117 100%);
    cursor: col-resize;
}

/* Camada Base (Fundo - ANTES/QUEBRADO) */
.img-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Camada Overlay (Frente - DEPOIS/CONSERTADO) */
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Começa oculto da direita para esquerda */
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-base img,
.img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Garante que a imagem inteira apareça sem cortes */
    object-position: center;
    pointer-events: none;
    display: block;
}

/* Labels */
.comp-label {
    position: absolute;
    top: 20px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-base {
    left: 20px;
    background: rgba(220, 53, 69, 0.9);
    /* Vermelho para Quebrado */
    z-index: 10;
    transition: opacity 0.2s ease;
}

/* Quando o mouse entra, o ANTES some pois o DEPOIS está sendo revelado */
.image-comparison-container:hover .label-base {
    opacity: 0;
}

.label-overlay {
    right: 20px;
    background: rgba(37, 211, 102, 0.9);
    /* Verde para Novo */
    z-index: 10;
}

/* Slider Handle — barra + círculo com pulse */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    /* Inicia em 50% por padrão — JS confirma no DOMContentLoaded */
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), #ff8c42);
    pointer-events: none;
    z-index: 20;
    box-shadow: 0 0 16px rgba(255, 102, 0, 0.7);
    transition: left 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2.5px solid var(--primary-color);
    /* Pulse suave para convidar interação */
    animation: handle-pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
}

@keyframes handle-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5),
            0 4px 14px rgba(0, 0, 0, 0.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0),
            0 4px 14px rgba(0, 0, 0, 0.25);
    }
}

/* Styles Antigos removidos */

/* Painéis informativos ANTES / DEPOIS */
.info-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32%;
    /* Cobre toda a faixa preta lateral */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza horizontalmente */
    justify-content: center;
    /* Centraliza verticalmente */
    text-align: center;
    z-index: 15;
    pointer-events: none;
    padding: 24px 16px;
    gap: 16px;
}

.panel-antes {
    left: 0;
    align-items: center;
    /* Centralizado no espaço */
    padding: 12px 16px;
    background: linear-gradient(to right, rgba(13, 17, 23, 0.85) 50%, transparent);
    transition: opacity 0.4s ease;
}

.panel-depois {
    right: 0;
    align-items: center;
    /* Centralizado no espaço */
    padding: 12px 16px;
    background: linear-gradient(to left, rgba(13, 17, 23, 0.85) 50%, transparent);
    opacity: 0;
    /* Oculto por padrão — JS controla */
    transition: opacity 0.4s ease;
}

/* Badge ANTES / DEPOIS */
.panel-badge {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    color: white;
    flex-shrink: 0;
}

.badge-antes {
    background: rgba(220, 53, 69, 0.95);
}

.badge-depois {
    background: rgba(37, 211, 102, 0.95);
}

/* Lista de itens */
.panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
    /* Centraliza os itens da lista */
}

.panel-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    /* Aumentado de 0.72 para 0.82 */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    line-height: 1.3;
    white-space: nowrap;
    width: 100%;
}

.list-antes li i {
    color: #ff6b6b;
    font-size: 0.85rem;
}

.list-depois li i {
    color: #25d366;
    font-size: 0.85rem;
}

/* ✦ Partícula Sparkle — Efeito Mágico na barra */
.sparkle-particle {
    position: absolute;
    pointer-events: none;
    z-index: 30;
    font-size: 0.9rem;
    color: var(--primary-color);
    user-select: none;
    filter: drop-shadow(0 0 4px #ffaa00);
    will-change: transform, opacity;
}


/* =======================================
   CTA INTERMEDIÁRIOS (Entre seções)
======================================= */
.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 52px;
    padding: 36px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff8f3 0%, #fff3ec 100%);
    border: 1.5px solid rgba(255, 102, 0, 0.15);
    text-align: center;
}

.section-cta-alt {
    background: linear-gradient(135deg, #f0faf4 0%, #e8f5ee 100%);
    border-color: rgba(37, 211, 102, 0.2);
}

.section-cta-text {
    font-size: 1rem;
    color: #444;
    margin: 0;
}

.section-cta-text strong {
    color: var(--primary-color);
}

/* Variante laranja do botão CTA */
.btn-cta-orange {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55a00 100%) !important;
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.35) !important;
}

.btn-cta-orange:hover {
    box-shadow: 0 10px 32px rgba(255, 102, 0, 0.5) !important;
}

/* Botão XL para o banner final */
.btn-cta-xl {
    font-size: 1.15rem !important;
    padding: 18px 44px !important;
    gap: 14px !important;
    letter-spacing: 0.4px;
}

/* =======================================
   CTA BANNER FINAL — PREMIUM
======================================= */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 50%, #0f1823 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

/* Bolas decorativas de fundo */
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-banner::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.18) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.cta-banner::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -80px;
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.15);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: #ff914d;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.25;
    margin: 0;
}

.cta-highlight {
    color: var(--primary-color);
    position: relative;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

.cta-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin: 8px 0;
}

.cta-trust-bar span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

.cta-trust-bar i {
    color: var(--primary-color);
}

.cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}



.secondary-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.btn-cta-large {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
    /* Glow inicial */
}

.btn-cta-large:hover {
    background-color: #ff8533;
    /* Laranja mais claro no hover */
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 102, 0, 0.7);
    /* Glow intenso no hover */
}

/* Mapa e Localização */
.location {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.units-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.unit-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unit-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 102, 0, 0.12);
    border-color: rgba(255, 102, 0, 0.2);
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.unit-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-header h3 i {
    color: var(--primary-color);
}

/* Destaque Matriz */
.unit-card.matriz-highlight {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.badge.matriz-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.badge {
    background-color: #e6f2ff;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.unit-info p {
    margin-bottom: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.unit-info p i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.map-actions {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.action-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: block;
}

/* App Buttons com Legenda */
.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.app-label {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.btn-icon-wrapper:hover .btn-icon {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.google {
    background-color: #4285F4;
}

.waze {
    background-color: #33CCFF;
    color: #fff;
}

.apple {
    background-color: #222;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: #aeaeae;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    background: white;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}


.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: white;
}

/* Desktop Responsividade (Media Queries) */
@media (min-width: 769px) {
    .container {
        padding: 0 40px;
    }

    .header-container {
        padding: 0;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-menu ul {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    /* Hero — sem coluna direita, centralizado fica melhor */
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-content {
        align-items: center;
        max-width: 760px;
    }

    .hero-service-tags,
    .hero-stats {
        justify-content: center;
    }

    .hero-stats {
        max-width: 640px;
    }



    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature-item {
        flex: 1;
    }

    .units-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    /* z-index alto o suficiente para ficar acima de qualquer overlay, mas
       a .slider-handle (z-index: 20) fica dentro de um container com overflow:hidden,
       portanto não há conflito de stacking context */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Animação de pulso para chamar atenção */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
}

/* =======================================
   MOBILE FIXES — max-width: 768px
======================================= */
@media (max-width: 768px) {

    /* ---- Hero ---- */
    .hero {
        padding: 64px 0 56px;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        letter-spacing: -0.025em;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 12px 20px;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    /* ---- Seções gerais — 60px no mobile para respiro adequado ---- */
    .services,
    .features,
    .testimonials,
    .transformation-gallery,
    .location {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* ================================================
       TABELA COMPARATIVA — stack vertical no mobile
    ================================================ */
    .comparison-container {
        overflow-x: hidden !important;
    }

    .comparison-table {
        min-width: 0 !important;
        width: 100% !important;
        display: block !important;
        box-shadow: none;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Header oculto */
    .table-header {
        display: none !important;
    }

    /* Cada .table-row vira um card */
    .table-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        padding: 0 !important;
        border-bottom: 2px solid #f0f0f0;
        border-radius: 0;
    }

    .table-row .col-criteria {
        background: #f0f0f0;
        font-weight: 700;
        font-size: 0.88rem;
        padding: 10px 16px;
        color: #333;
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .table-row .col-ftech {
        background: var(--primary-color);
        color: white;
        font-weight: 600;
        font-size: 0.88rem;
        padding: 10px 16px;
        border-radius: 0;
        border: none;
        box-shadow: none;
        text-align: left;
    }

    .table-row .col-ftech::before {
        content: "✓ FTECH: ";
        font-size: 0.75rem;
        font-weight: 800;
        display: block;
        opacity: 0.8;
        margin-bottom: 2px;
    }

    .table-row .col-others {
        background: #fafafa;
        color: #777;
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 0;
        text-align: left;
    }

    .table-row .col-others::before {
        content: "Outros: ";
        font-size: 0.72rem;
        font-weight: 700;
        display: block;
        color: #aaa;
        margin-bottom: 2px;
    }

    /* ================================================
       SLIDER ANTES/DEPOIS — painéis como overlays mobile
    ================================================ */

    /* Painéis como overlays sutis nas bordas — não cobrem o centro */
    .info-panel {
        width: 42%;
        padding: 8px 10px;
        gap: 6px;
        /* Semi-transparente para não bloquear a imagem */
        opacity: 0.92;
    }

    .panel-list li {
        font-size: 0.72rem;
        gap: 4px;
        white-space: normal;
    }

    .panel-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        letter-spacing: 1px;
    }

    .image-comparison-container {
        aspect-ratio: 3/2;
        border-radius: 12px;
    }

    /* ================================================
       FOOTER — logo com cores originais
    ================================================ */
    .footer-logo img {
        filter: none !important;
    }

    /* ---- CTAs intermediários ---- */
    .section-cta {
        padding: 24px 20px;
        margin-top: 36px;
    }

    .btn-cta-whatsapp {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    /* ---- CTA banner final ---- */
    .cta-banner {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-trust-bar {
        gap: 10px 16px;
    }

    .cta-trust-bar span {
        font-size: 0.8rem;
    }

    /* ---- Unidades ---- */
    .units-grid {
        grid-template-columns: 1fr !important;
    }

    /* ---- Section CTAs ---- */
    .section-cta-text {
        font-size: 0.95rem;
    }
}

/* =======================================
   BOTÃO ROTA GPS — Unidades
   Direcion a para Google Maps com coordenadas exatas
======================================= */
.btn-rota-gps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background-color: #4285F4;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

.btn-rota-gps:hover {
    background-color: #1a73e8;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-rota-gps i {
    font-size: 1rem;
}

/* Mobile: garantir z-index do float sobre tudo */
@media (max-width: 768px) {
    .whatsapp-float {
        z-index: 9999;
        bottom: 20px;
        right: 16px;
    }
}