/* ================================================================
   GOTECHBR - CSS PROFISSIONAL
   Complementa Bootstrap 5.3 - NÃO sobrescreve grid/btn do Bootstrap
   ================================================================ */

/* ================================================================
   1. DESIGN SYSTEM - VARIÁVEIS
   ================================================================ */
:root {
    --primary: #00A651;
    --primary-hover: #008c44;
    --primary-light: rgba(0, 166, 81, 0.1);
    --secondary: #7CB518;
    --accent: #C8DD00;
    --dark: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gradient-primary: linear-gradient(135deg, #00A651, #7CB518);
    --gradient-hero: linear-gradient(135deg, #00A651 0%, #005f30 100%);
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all .25s ease;
}

/* ================================================================
   2. BASE (não conflita com Bootstrap)
   ================================================================ */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
}

body {
    font-family: var(--font-body);
    color: #334155;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1e293b;
}

a {
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Fallback: caso Tailwind CDN não carregue, garante texto legível */
.tw-text-gray-500 { color: #64748b; }
.tw-text-gray-600 { color: #475569; }
.tw-text-gray-700 { color: #334155; }
.tw-text-gray-800 { color: #1e293b; }
.tw-text-gray-900 { color: #111827; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    z-index: 99999;
    font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ================================================================
   4. TOP BAR ESCURA (fina, full-width)
   ================================================================ */
.topbar {
    background: #1f1f1f;
    color: #c0c0c0;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1050;
}
.topbar .dropdown-menu {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    margin-top: 6px;
    min-width: 160px;
    z-index: 1051;
}
.topbar .dropdown-item {
    font-size: 13px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}
.topbar .dropdown-item.active {
    background: var(--primary);
    color: #fff;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}
.topbar-hours {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}
.topbar-hours i { font-size: 13px; margin-right: 5px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-social { display: flex; gap: 4px; }
.topbar-social a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #aaa; font-size: 13px; border-radius: 50%;
    transition: var(--transition);
}
.topbar-social a:hover { color: #fff; background: rgba(255,255,255,.1); }
.topbar-sep { width: 1px; height: 18px; background: #444; }
.topbar-lang {
    background: none; border: none; color: #bbb;
    font-size: 12px; padding: 2px 6px; cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
}
.topbar-lang:hover { color: #fff; }
.topbar-cart {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; text-decoration: none; font-size: 12px;
    font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
    background: var(--primary);
    padding: 5px 14px;
    border-radius: 4px 0 0 4px;
    transition: var(--transition);
}
.topbar-cart:hover { background: var(--primary-hover); color: #fff; }
.topbar-cart i { font-size: 15px; }
.topbar-badge {
    background: #fff; color: var(--primary) !important;
    font-size: 11px; border-radius: 50%;
    padding: 0 6px; font-weight: 800;
    line-height: 18px; min-width: 18px;
    text-align: center; vertical-align: middle;
    display: inline-block;
    font-variant-numeric: tabular-nums;
    text-transform: none; letter-spacing: 0;
}
.flag-icon {
    display: inline-block; width: 20px; height: 14px;
    border-radius: 2px; vertical-align: middle;
    box-shadow: 0 0 1px rgba(0,0,0,.3);
}
.flag-br {
    background: #009c3b;
    position: relative;
    overflow: hidden;
}
.flag-br::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 10px;
    background: #ffdf00;
    transform: translate(-50%, -50%) rotate(45deg);
}
.flag-br::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 6px;
    background: #002776;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.flag-us { background: linear-gradient(#b22234 33%, #fff 33%, #fff 66%, #3c3b6e 66%); }
.flag-es { background: linear-gradient(#c60b1e 25%, #ffc400 25%, #ffc400 75%, #c60b1e 75%); }

/* ================================================================
   4B. HEADER (logo + contatos)
   ================================================================ */
.site-header {
    background: #ffffff;
    padding-bottom: 0;
    position: sticky;
    top: 42px;
    z-index: 1041;
    overflow: visible;
    border-bottom: 1px solid rgba(0,166,81,.12);
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
/* Animated floating particles container */
.header-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.h-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: rgba(0,166,81,.3);
    animation: hParticleFloat var(--d) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}
.h-particle:nth-child(even) {
    background: rgba(124,181,24,.25);
}
.h-particle:nth-child(3n) {
    background: rgba(0,166,81,.2);
    box-shadow: 0 0 6px rgba(0,166,81,.15);
}
@keyframes hParticleFloat {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    10%  { opacity: .6; }
    25%  { transform: translate(15px, -10px) scale(1.2); }
    50%  { transform: translate(-10px, 8px) scale(0.8); opacity: .8; }
    75%  { transform: translate(20px, -5px) scale(1.1); }
    90%  { opacity: .5; }
    100% { transform: translate(0, 0) scale(1); opacity: 0; }
}
.header-row {
    display: flex;
    align-items: center;
    padding: 16px 0 14px;
    gap: 20px;
    position: relative;
    z-index: 1;
    height: 88px;
    overflow: visible;
}
.header-logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.header-logo {
    height: 85px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}
.header-info-group {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}
.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-left: 1px solid rgba(0,0,0,.08);
    white-space: nowrap;
}
.header-info-item:last-child { border-right: none; }
.header-info-item:first-child { border-left: none; }
.header-info-item > i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
}
.header-info-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.45;
    justify-content: center;
}
.header-info-item strong,
.header-info-item strong a {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    letter-spacing: .1px;
}
.header-info-item span,
.header-info-item span a {
    font-size: 11.5px;
    color: var(--gray-500);
    text-decoration: none;
    white-space: nowrap;
    margin-top: 1px;
}
.header-info-item a:hover { color: var(--primary); }

/* ================================================================
   5. MENU PILL
   ================================================================ */
.menu-pill {
    background:
        radial-gradient(circle 0.8px at 10px 12px, rgba(0,166,81,.12) 0.6px, transparent 0.6px),
        radial-gradient(circle 0.8px at 50px 25px, rgba(255,255,255,.04) 0.6px, transparent 0.6px),
        linear-gradient(90deg, #0f0f0f, #191919 50%, #0f0f0f);
    background-size: 60px 50px, 60px 50px, 100% 100%;
    border-radius: 9999px;
    box-shadow: 0 6px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07);
    position: relative;
    z-index: 1040;
    overflow: visible;
    transform: translateY(50%);
}
.menu-pill-inner {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0;
    position: relative;
    z-index: 2;
}
.menu-pill-nav {
    list-style: none;
    margin: 0; padding: 0 0 0 28px;
    display: flex;
    align-items: center;
    height: 50px;
}
.menu-pill-nav > li {
    display: flex;
    align-items: center;
    height: 100%;
}
.pill-link {
    color: rgba(255,255,255,.6);
    font-weight: 600;
    font-size: 11.5px;
    padding: 0 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
.pill-link:hover { color: #fff; }
.pill-link.active { color: var(--primary); }
.pill-link::after {
    content: '';
    position: absolute;
    bottom: 8px; left: 18px; right: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .2s;
}
.pill-link:hover::after { transform: scaleX(1); }
.pill-link.active::after { transform: scaleX(1); }
/* Seta do dropdown serviços */
.pill-link.dropdown-toggle::after {
    content: '';
    display: inline-block;
    border-top: .3em solid currentColor;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    border-bottom: 0;
    vertical-align: .15em;
    margin-left: 4px;
    position: static;
    height: auto;
    background: none;
    transform: none;
    box-shadow: none;
}

/* Dropdown serviços (estilo premium escuro igual ao Acesso) */
.pill-dropdown {
    background: linear-gradient(135deg, #0f0f0f 0%, #121912 15%, #1a3a25 40%, #0d6b35 70%, var(--primary) 100%);
    border: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 14px 36px rgba(0,0,0,.4);
    padding: 0;
    margin-top: -2px !important;
    min-width: 240px;
    overflow: hidden;
}
.pill-dropdown .dropdown-item {
    padding: 13px 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.pill-dropdown .dropdown-item:hover,
.pill-dropdown .dropdown-item.active {
    background: rgba(255,255,255,.12);
    color: #fff;
    padding-left: 24px;
}
.pill-dropdown .dropdown-item.active {
    font-weight: 700;
}
.pill-dropdown .dropdown-item i {
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: rgba(255,255,255,.7);
}
.pill-dropdown .dropdown-item:hover i {
    color: #fff;
}
.pill-dropdown .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(255,255,255,.08);
}
.pill-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,.1);
    margin: 0;
}
/* Dropdown toggle hover corrigido */
.pill-link.dropdown-toggle:hover { color: #fff; }
.pill-link.dropdown-toggle.active { color: var(--primary); }

/* ============ Botão Acesso ============ */
.menu-pill-right {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    align-self: stretch;
}
.menu-pill-right .dropdown {
    display: flex;
    align-items: stretch;
    min-width: 220px;
}
.pill-access-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0 28px 0 22px;
    background: linear-gradient(90deg, #0f0f0f 0%, #121912 15%, #1a3a25 35%, #0d6b35 55%, var(--primary) 75%, var(--secondary) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    border-radius: 0 9999px 9999px 0;
    margin-right: -1px;
    white-space: nowrap;
    transition: filter .2s;
}
.pill-access-btn i { font-size: 16px; }
.pill-access-btn:hover { filter: brightness(1.15); color: #fff; }
.pill-access-btn.dropdown-toggle::after {
    border-top-color: #fff;
    vertical-align: .12em;
    margin-left: 4px;
}

/* Dropdown Acesso (herda de .pill-dropdown + ajustes) */
.menu-pill-right .dropdown {
    position: relative;
}
.pill-access-dropdown.dropdown-menu {
    width: calc(100% - 15px);
    min-width: auto;
    left: 0 !important;
    right: auto !important;
    margin-right: 0 !important;
    transform: none !important;
    inset: auto !important;
    position: absolute !important;
    top: 100% !important;
}
/* Items do Acesso herdam de .pill-dropdown */

/* Mobile menu */
.menu-pill-mobile {
    list-style: none;
    padding: 8px 20px 14px;
    margin: 0;
}
.menu-pill-mobile li a {
    display: block;
    padding: 8px 0;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.menu-pill-mobile li a:hover { color: var(--primary); }
.menu-pill-mobile-divider { height: 1px; background: rgba(255,255,255,.12); margin: 6px 0; }

/* Mobile toggler */
.menu-pill-toggler {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
    padding: 4px 0;
    cursor: pointer;
    margin-left: auto;
}
.menu-pill-toggler span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Mobile btn */
.btn-mob {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.2) !important;
    padding: 4px 8px;
    border-radius: 4px;
}

.badge-carrinho {
    font-size: 10px !important;
    min-width: 16px;
    padding: 2px 4px;
}

/* Mobile: menu pill full width */
@media (max-width: 991.98px) {
    .header-row { display: none; }
    .site-header { padding: 0; top: 42px; border: none; background: none; }
    .site-header::before, .site-header::after { display: none; }
    .menu-pill {
        border-radius: 0;
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }
    .menu-pill-inner { padding: 0 16px; }
    .menu-pill-inner::before {
        content: '';
        display: block;
        width: 90px;
        height: 30px;
        background: url('../../images/logo.png') no-repeat center / contain;
    }
}
@media (min-width: 992px) {
    .menu-pill-inner::before { display: none; }
}

/* ================================================================
   6. HERO SECTION
   ================================================================ */
.hero-section {
    background: var(--gradient-hero);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Particles container */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: .3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: .6; }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge ANCINE */
.ancine-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.2);
}
.ancine-badge i { font-size: 14px; }

.animate-float {
    animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Hero Title */
.hero-title {
    color: #fff;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.text-gradient {
    background: linear-gradient(135deg, #C8DD00, #4FC849, #7CB518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(13px, 2vw, 15px);
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 520px;
}

/* Hero Buttons */
.hero-buttons .btn {
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}
/* Hero buttons agora usam .gtc-btn-glow--white e .gtc-btn-glow--ghost */

/* Hero Stats */
.hero-stats { margin-top: 32px; }
.stat-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Hero Visual (floating cards) */
.hero-visual {
    position: relative;
    height: 380px;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .15;
}
.hero-shape-1 {
    width: 200px; height: 200px;
    background: #C8DD00;
    top: 20px; right: 20px;
    animation: floatBadge 4s ease-in-out infinite;
}
.hero-shape-2 {
    width: 120px; height: 120px;
    background: #4FC849;
    bottom: 60px; left: 20px;
    animation: floatBadge 5s ease-in-out infinite reverse;
}
.hero-shape-3 {
    width: 80px; height: 80px;
    background: #fff;
    top: 50%; left: 50%;
    animation: floatBadge 3.5s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.floating-card i {
    font-size: 18px;
    color: var(--accent);
}
.fc-1 { top: 30px; left: 30px; }
.fc-2 { top: 10px; right: 10px; }
.fc-3 { bottom: 100px; left: 10px; }
.fc-4 { bottom: 40px; right: 30px; }

/* ================================================================
   6B. HERO CAROUSEL - AGENCY PRO
   ================================================================ */
.gtc-hero {
    position: relative;
    height: var(--hero-h, 600px);
    overflow: hidden;
    background: #020a06;
    color: #fff;
}

/* --- Carousel core --- */
.gtc-hero__carousel {
    position: absolute;
    inset: 0;
    perspective: 1200px;
}

/* --- Individual slide (base - no transition, effect handles it) --- */
.gtc-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    will-change: opacity, transform;
    backface-visibility: hidden;
}
.gtc-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* === EFFECT: FADE (CSS-driven crossfade) === */
[data-effect="fade"] .gtc-hero__slide {
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1), visibility 0s 1.2s;
}
[data-effect="fade"] .gtc-hero__slide.is-active {
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
}

/* === Effects: slide, zoom, cards, creative → JS handles via inline styles === */
/* (no CSS transitions needed - JS controls the full animation lifecycle) === */

/* --- Background image (Ken Burns) --- */
.gtc-hero__bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: scale(1.08);
    transition: transform 10s ease-out;
}
.gtc-hero__bg--solid {
    inset: 0;
    transform: none;
    transition: none;
}
.gtc-hero__bg--gradient {
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,166,81,.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(124,181,24,.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 70% at 50% 50%, rgba(0,95,48,.2) 0%, transparent 60%),
        linear-gradient(135deg, #001a0d 0%, #003d1f 30%, #00A651 60%, #005f30 85%, #020a06 100%);
    background-size: 200% 200%;
    animation: gtcGradientShift 12s ease-in-out infinite;
}
@keyframes gtcGradientShift {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.gtc-hero__slide.is-active .gtc-hero__bg {
    transform: scale(1.0);
}

/* --- Overlay --- */
.gtc-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(0,12,6,.92) 0%,
        rgba(0,30,15,.78) 40%,
        rgba(0,50,25,.65) 70%,
        rgba(0,30,15,.80) 100%
    );
}
/* Radial glows */
.gtc-hero__overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,166,81,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 90% 30%, rgba(124,181,24,.12) 0%, transparent 60%),
        radial-gradient(ellipse 70% 40% at 50% 110%, rgba(0,166,81,.14) 0%, transparent 50%);
    pointer-events: none;
}
/* Glowing bottom border */
.gtc-hero__overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,166,81,.6) 30%, #C8DD00 50%, rgba(0,166,81,.6) 70%, transparent);
    box-shadow: 0 0 30px rgba(0,166,81,.35);
}

/* --- Grid FX per slide --- */
.gtc-hero__grid-fx {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0,166,81,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,166,81,.05) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: gtcGridDrift 25s linear infinite;
}
@keyframes gtcGridDrift {
    0% { background-position: 0 0; }
    100% { background-position: 70px 70px; }
}

/* --- CONTENT LAYER (always on top) --- */
.gtc-hero__content-layer {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.gtc-hero__content-layer .container {
    position: relative;
    pointer-events: auto;
}

/* --- Content block per slide --- */
.gtc-hero__content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 680px;
    padding: 0 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease, transform .6s ease;
}
.gtc-hero__content:not(.is-active) {
    transform: translateY(-50%) translateX(-30px);
}
.gtc-hero__content.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
    transition: opacity .8s cubic-bezier(.4,0,.2,1) .3s, transform .8s cubic-bezier(.4,0,.2,1) .3s;
}

/* --- Counter --- */
.gtc-hero__counter {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(0,166,81,.5);
}
.gtc-hero__counter .sep {
    opacity: .35;
    margin: 0 4px;
    color: #fff;
}

/* --- Badge --- */
.gtc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,166,81,.12);
    border: 1px solid rgba(0,166,81,.25);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: gtcBadgeFloat 3s ease-in-out infinite;
}
@keyframes gtcBadgeFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* --- Title --- */
.gtc-hero__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 0 40px rgba(0,166,81,.15), 0 2px 8px rgba(0,0,0,.4);
}

/* --- Subtitle --- */
.gtc-hero__subtitle {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.65;
    color: rgba(255,255,255,.78);
    margin-bottom: 28px;
    max-width: 550px;
    text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* --- Action buttons --- */
.gtc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
/* Botões do hero agora usam .gtc-btn-glow--white e .gtc-btn-glow--ghost */
.gtc-hero__actions .gtc-btn-glow { border-radius: 8px; }

/* --- Navigation arrows --- */
.gtc-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .35s ease;
}
.gtc-hero__arrow--prev { left: 24px; }
.gtc-hero__arrow--next { right: 24px; }
.gtc-hero:hover .gtc-hero__arrow { opacity: 1; }
.gtc-hero__arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0,166,81,.4);
    transform: translateY(-50%) scale(1.1);
}

/* --- Dot indicators (pill style) --- */
.gtc-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 20px;
}
.gtc-hero__dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,.4);
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.gtc-hero__dot:hover {
    background: rgba(255,255,255,.7);
}
.gtc-hero__dot.is-active {
    width: 32px;
    background: rgba(255,255,255,.25);
}
.gtc-hero__dot.is-active::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 10px;
    animation: gtcDotFill var(--hero-speed, 5s) linear forwards;
}
@keyframes gtcDotFill {
    to { width: 100%; }
}

/* --- Progress bar --- */
.gtc-hero__progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.06);
    z-index: 15;
}
.gtc-hero__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #C8DD00);
    box-shadow: 0 0 12px rgba(0,166,81,.5);
    transition: width .1s linear;
}

/* --- Stats wrapper (below hero, not overlapping) --- */
.gtc-hero__stats-wrap {
    position: relative;
    z-index: 20;
    padding: 32px 0 0;
    background: var(--gray-50);
}

/* --- Stats row --- */
.gtc-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -54px;
}
.gtc-hero__stat {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    transition: all .3s ease;
}
.gtc-hero__stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,166,81,.12), 0 2px 8px rgba(0,0,0,.06);
    border-color: rgba(0,166,81,.15);
}
.gtc-hero__stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.gtc-hero__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.gtc-hero__stat span {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
}

/* --- Carousel responsive --- */
@media (max-width: 991.98px) {
    .gtc-hero { height: calc(var(--hero-h, 600px) * 0.8); }
    .gtc-hero__arrow { display: none !important; }
    .gtc-hero__content { max-width: 90%; }
    .gtc-hero__title { font-size: clamp(24px, 5vw, 36px); }
    .gtc-hero__stats { gap: 12px; margin-top: -44px; }
    .gtc-hero__stat { padding: 18px 10px; }
    .gtc-hero__stat strong { font-size: 24px; }
}
@media (max-width: 767.98px) {
    .gtc-hero { height: calc(var(--hero-h, 600px) * 0.7); min-height: 420px; }
    .gtc-hero__content { max-width: 100%; text-align: center; }
    .gtc-hero__subtitle { margin-left: auto; margin-right: auto; }
    .gtc-hero__actions { justify-content: center; }
    .gtc-hero__title { font-size: clamp(22px, 6vw, 30px); }
    .gtc-hero__badge { font-size: 10px; }
    .gtc-hero__dots { bottom: 18px; gap: 6px; padding: 5px 8px; }
    .gtc-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: -36px; }
    .gtc-hero__stat strong { font-size: 20px; }
    .gtc-hero__stat span { font-size: 10px; }
}
@media (max-width: 575.98px) {
    .gtc-hero { min-height: 380px; }
    .gtc-hero__content { padding: 0 8px; }
    .gtc-hero__title { font-size: 22px; }
    .gtc-hero__actions .gtc-btn-glow { width: 100%; justify-content: center; font-size: 13px; padding: 11px 18px; }
    .gtc-hero__counter { font-size: 11px; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,.5);
    z-index: 2;
    font-size: 11px;
}
.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    margin: 0 auto 6px;
    position: relative;
}
.wheel {
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,.6);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ================================================================
   7. SECTION COMMON STYLES
   ================================================================ */
.section-padding {
    padding: 60px 0;
    position: relative;
}

/* Textura sutil nas seções brancas (sem bg-light) */
.section-padding:not(.bg-light)::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        /* Micro dots grid */
        radial-gradient(circle 0.6px at 20px 20px, rgba(0,166,81,.04) 0.5px, transparent 0.5px),
        radial-gradient(circle 0.6px at 50px 35px, rgba(0,0,0,.025) 0.5px, transparent 0.5px),
        /* Linhas diagonais sutis */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(0,166,81,.015) 60px,
            rgba(0,166,81,.015) 61px
        );
    background-size: 60px 50px, 60px 50px, 85px 85px;
}

/* Textura nas seções bg-light */
.section-padding.bg-light,
.pf-section {
    position: relative;
}
.section-padding.bg-light::before,
.pf-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        /* Cross dots */
        radial-gradient(circle 0.7px at 15px 15px, rgba(0,166,81,.035) 0.5px, transparent 0.5px),
        radial-gradient(circle 0.7px at 45px 40px, rgba(0,0,0,.02) 0.5px, transparent 0.5px),
        /* Grid lines */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(0,166,81,.012) 80px,
            rgba(0,166,81,.012) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(0,166,81,.012) 80px,
            rgba(0,166,81,.012) 81px
        );
    background-size: 60px 55px, 60px 55px, 80px 80px, 80px 80px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}
.section-padding > .container,
.pf-section > .container {
    position: relative;
    z-index: 1;
}
.section-description {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto 8px;
    line-height: 1.6;
}

/* ================================================================
   SHARED — Partículas, Tags, Headings, Linhas animadas
   ================================================================ */

/* Partículas flutuantes */
.gtc-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.gtc-particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    border-radius: 50%;
    background: var(--c);
    animation: gtcDrift var(--d) ease-in-out infinite;
    box-shadow: 0 0 12px var(--c);
}
@keyframes gtcDrift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .6; }
    25% { transform: translate(30px, -40px) scale(1.4); opacity: 1; }
    50% { transform: translate(-20px, 25px) scale(.8); opacity: .4; }
    75% { transform: translate(15px, -10px) scale(1.2); opacity: .9; }
}

/* Mesh gradients animados (cantos) */
.gtc-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: gtcMesh 12s ease-in-out infinite;
}
.gtc-mesh--green {
    width: 500px; height: 500px;
    background: rgba(0,166,81,.07);
    top: -200px; right: -150px;
}
.gtc-mesh--blue {
    width: 400px; height: 400px;
    background: rgba(37,99,235,.05);
    bottom: -150px; left: -100px;
    animation-delay: -5s;
}
@keyframes gtcMesh {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: .6; }
    50% { transform: translate(30px, -20px) scale(1.15); opacity: 1; }
}

/* Tag/Badge das seções */
.gtc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,166,81,.08), rgba(0,166,81,.04));
    color: #00A651;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: 1px solid rgba(0,166,81,.12);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.gtc-tag::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,166,81,.1), transparent);
    animation: gtcTagShimmer 4s ease-in-out infinite;
}
@keyframes gtcTagShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
.gtc-tag .bi { font-size: 14px; }
.gtc-tag--green {
    background: linear-gradient(135deg, rgba(0,166,81,.1), rgba(0,166,81,.05));
    border-color: rgba(0,166,81,.15);
}

/* Heading com gradiente animado */
.gtc-heading {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #1e293b;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .gtc-heading {
        background: linear-gradient(135deg, #1a1a2e 0%, #00A651 50%, #2563eb 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gtcGradientShift 6s ease-in-out infinite;
    }
}

/* Section subtitle */
.section-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
@keyframes gtcGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Linha animada divisória */
.gtc-line-anim {
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #00A651, #2563eb);
    position: relative;
    overflow: hidden;
}
.gtc-line-anim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.8) 50%, transparent 100%);
    animation: gtcLineShimmer 2.5s ease-in-out infinite;
}
@keyframes gtcLineShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Trust badge (prova social) */
.gtc-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 50px;
    padding: 10px 24px 10px 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,.07);
    animation: gtcTrustFloat 5s ease-in-out infinite;
}
@keyframes gtcTrustFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.gtc-trust__dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: var(--bg);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Botão CTA com glow */
/* ================================================================
   SISTEMA UNIFICADO DE BOTÕES (.gtc-btn-*)
   Todas as variantes compartilham a mesma base e animações
   ================================================================ */

/* --- Base: Green Gradient (para fundos claros) --- */
.gtc-btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #00A651 0%, #008c44 100%);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 4px 20px rgba(0,166,81,.25), 0 0 0 0 rgba(0,166,81,.3);
    animation: gtcBtnPulse 3s ease-in-out infinite;
}
@keyframes gtcBtnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,166,81,.25), 0 0 0 0 rgba(0,166,81,.2); }
    50% { box-shadow: 0 4px 20px rgba(0,166,81,.25), 0 0 0 8px rgba(0,166,81,0); }
}
.gtc-btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    animation: gtcBtnShimmer 3s ease-in-out infinite;
}
@keyframes gtcBtnShimmer {
    0%, 100% { left: -100%; }
    60% { left: 100%; }
}
.gtc-btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,166,81,.35);
    color: #fff !important;
}

/* --- Tamanho pequeno (para dentro de cards/inline) --- */
.gtc-btn-glow--sm {
    padding: 10px 22px;
    font-size: 13px;
    gap: 6px;
    animation: none;
    box-shadow: 0 3px 12px rgba(0,166,81,.2);
}
.gtc-btn-glow--sm:hover {
    box-shadow: 0 6px 20px rgba(0,166,81,.3);
}

/* --- Tamanho grande (para CTAs principais) --- */
.gtc-btn-glow--lg {
    padding: 16px 36px;
    font-size: 16px;
    gap: 10px;
}

/* --- Outline: Borda verde, fundo transparente (para fundos claros) --- */
.gtc-btn-glow--outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    box-shadow: none;
    animation: none;
}
.gtc-btn-glow--outline::before { display: none; }
.gtc-btn-glow--outline:hover {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,166,81,.25);
}

/* --- White: Fundo branco (para fundos escuros/verdes) --- */
.gtc-btn-glow--white {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    animation: none;
}
.gtc-btn-glow--white::before {
    background: linear-gradient(90deg, transparent, rgba(0,166,81,.12), transparent);
}
.gtc-btn-glow--white:hover {
    color: var(--primary) !important;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* --- Ghost: Fundo verde translúcido + borda branca (para fundos escuros) --- */
.gtc-btn-glow--ghost {
    background: rgba(0,166,81,.35);
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.5);
    box-shadow: 0 4px 16px rgba(0,166,81,.2);
    animation: none;
    backdrop-filter: blur(4px);
}
.gtc-btn-glow--ghost::before { display: none; }
.gtc-btn-glow--ghost:hover {
    background: rgba(0,166,81,.6);
    border-color: #fff;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(0,166,81,.3);
}

/* --- WhatsApp link (texto verde sem fundo) --- */
.gtc-link-wpp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    color: #00A651 !important;
    transition: all .3s ease;
}
.gtc-link-wpp .bi { font-size: 16px; }
.gtc-link-wpp:hover { color: #008c44 !important; gap: 12px; }

/* ================================================================
   8. SERVICES SECTION — Clean + Animações
   ================================================================ */
.gtc-svc-section {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    overflow: hidden;
}

/* === Service Cards — Grid estilo gtc-feat === */
.gtc-svc-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    text-decoration: none;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
/* Barra esquerda animada */
.gtc-svc-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--fc);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.gtc-svc-card:hover {
    background: #fff;
    border-color: color-mix(in srgb, var(--fc) 15%, transparent);
    transform: translateX(6px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--fc) 10%, transparent);
    text-decoration: none;
}
.gtc-svc-card:hover::before { transform: scaleY(1); }

.gtc-svc-card__icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--fc) 8%, transparent);
    transition: all .4s cubic-bezier(.23,1,.32,1);
}
.gtc-svc-card__icon .bi {
    font-size: 22px;
    color: var(--fc);
    transition: all .4s ease;
}
.gtc-svc-card:hover .gtc-svc-card__icon {
    background: var(--fc);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--fc) 25%, transparent);
}
.gtc-svc-card:hover .gtc-svc-card__icon .bi { color: #fff; }

.gtc-svc-card__body { flex: 1; min-width: 0; }
.gtc-svc-card__title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.3;
}
.gtc-svc-card__desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

.gtc-svc-card__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.05);
    color: #9ca3af;
    font-size: 14px;
    margin-top: 6px;
    transition: all .4s ease;
}
.gtc-svc-card:hover .gtc-svc-card__arrow {
    background: var(--fc);
    color: #fff;
    transform: translateX(3px);
}

/* Responsivo cards serviço */
@media (max-width: 768px) {
    .gtc-svc-card { padding: 16px; }
    .gtc-svc-card__icon { width: 42px; height: 42px; }
    .gtc-svc-card__icon .bi { font-size: 18px; }
    .gtc-svc-card__arrow { display: none; }
}

/* ================================================================
   9. WHY CHOOSE US SECTION — Clean + Impactante
   ================================================================ */
.gtc-why-section {
    position: relative;
    padding: 90px 0 100px;
    background: url('../images/tech-office-bg.jpg') center / cover no-repeat fixed;
    overflow: hidden;
}
/* Overlay escuro semi-transparente para legibilidade */
.gtc-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,.88) 0%,
        rgba(248,250,252,.85) 40%,
        rgba(245,248,250,.85) 60%,
        rgba(255,255,255,.90) 100%);
    pointer-events: none;
    z-index: 0;
}
.gtc-why-section::after {
    content: none;
}

/* Orbs flutuantes */
.gtc-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.gtc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: gtcOrbDrift 15s ease-in-out infinite;
}
.gtc-orb--1 {
    width: 400px; height: 400px;
    background: rgba(0,166,81,.1);
    top: -100px; left: -80px;
}
.gtc-orb--2 {
    width: 350px; height: 350px;
    background: rgba(37,99,235,.08);
    bottom: -100px; right: -60px;
    animation-delay: -5s;
}
.gtc-orb--3 {
    width: 250px; height: 250px;
    background: rgba(124,181,24,.07);
    top: 50%; left: 60%;
    animation-delay: -10s;
    animation-duration: 18s;
}
@keyframes gtcOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.1); }
    66% { transform: translate(-15px, 15px) scale(.9); }
}

/* Check pulse (promise) */
.gtc-check-pulse {
    display: inline-flex;
    color: #00A651;
    font-size: 16px;
    animation: gtcCheckPulse 2s ease-in-out infinite;
}
@keyframes gtcCheckPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0,166,81,0)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(0,166,81,.3)); }
}

/* Stat counters com pulse ring */
.gtc-stat {
    text-align: center;
    padding: 22px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 4px 20px rgba(0,166,81,.06);
}
.gtc-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,166,81,.12);
    border-color: rgba(0,166,81,.15);
}

/* Pulse ring animado */
.gtc-stat__ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 60px; height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--sc) 15%, transparent);
    animation: gtcRingPulse 3s ease-out infinite;
    pointer-events: none;
}
@keyframes gtcRingPulse {
    0% { width: 40px; height: 40px; opacity: .6; }
    100% { width: 90px; height: 90px; opacity: 0; }
}

.gtc-stat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    color: var(--sc);
    line-height: 1.1;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    transition: all .3s ease;
}
.gtc-stat:hover .gtc-stat__num {
    transform: scale(1.08);
    text-shadow: 0 0 24px color-mix(in srgb, var(--sc) 20%, transparent);
}

.gtc-stat__label {
    display: block;
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
    letter-spacing: .2px;
    position: relative;
    z-index: 1;
}

/* Feature rows com borda animada */
.gtc-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    margin-bottom: 10px;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,166,81,.04);
}
/* Barra esquerda animada */
.gtc-feat::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--fc);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.gtc-feat:hover {
    background: #fff;
    border-color: rgba(0,166,81,.12);
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(0,166,81,.08);
}
.gtc-feat:hover::before { transform: scaleY(1); }

.gtc-feat__icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--fc) 8%, transparent);
    transition: all .4s cubic-bezier(.23,1,.32,1);
}
.gtc-feat__icon .bi {
    font-size: 20px;
    color: var(--fc);
    transition: all .4s ease;
}
.gtc-feat:hover .gtc-feat__icon {
    background: var(--fc);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--fc) 25%, transparent);
}
.gtc-feat:hover .gtc-feat__icon .bi { color: #fff; }

.gtc-feat__title {
    font-family: var(--font-heading);
    font-size: 15.5px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.3;
}
.gtc-feat__desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

.gtc-feat__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,.05);
    color: #9ca3af;
    font-size: 14px;
    margin-top: 6px;
    transition: all .4s ease;
}
.gtc-feat:hover .gtc-feat__arrow {
    background: var(--fc);
    color: #fff;
    transform: translateX(3px);
}

/* ================================================================
   10. PORTFOLIO SECTION — Clean + Efeitos
   ================================================================ */
.gtc-pf-section {
    position: relative;
    padding: 90px 0 100px;
    background: linear-gradient(180deg, #fff 0%, #f4f7fa 100%);
    overflow: hidden;
}

/* Portfolio cards */
.gtc-pf-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    text-decoration: none !important;
    color: inherit !important;
    transition: all .5s cubic-bezier(.23,1,.32,1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.gtc-pf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,.1);
    border-color: rgba(0,166,81,.12);
}

/* Image container */
.gtc-pf-card__img {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: #e9ecef;
}
.gtc-pf-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.23,1,.32,1);
}
.gtc-pf-card:hover .gtc-pf-card__img img {
    transform: scale(1.1);
}

/* Shine sweep contínuo */
.gtc-pf-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: none;
    z-index: 1;
    pointer-events: none;
}
.gtc-pf-card:hover .gtc-pf-card__shine {
    animation: gtcShineSweep .8s ease forwards;
}
@keyframes gtcShineSweep {
    to { transform: translateX(100%); }
}

/* Overlay */
.gtc-pf-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,166,81,.8), rgba(0,100,50,.85));
    opacity: 0;
    transition: all .4s ease;
    z-index: 2;
}
.gtc-pf-card__overlay .bi {
    font-size: 32px;
    color: #fff;
    transform: scale(.6) rotate(-10deg);
    transition: all .4s cubic-bezier(.23,1,.32,1);
}
.gtc-pf-card:hover .gtc-pf-card__overlay { opacity: 1; }
.gtc-pf-card:hover .gtc-pf-card__overlay .bi {
    transform: scale(1) rotate(0);
}

/* Tag */
.gtc-pf-card__tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.1);
}

/* Body */
.gtc-pf-card__body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gtc-pf-card__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color .3s ease;
}
.gtc-pf-card:hover .gtc-pf-card__title { color: #00A651; }

.gtc-pf-card__desc {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}
.gtc-pf-card__sub {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
}

/* Result badge com glow */
.gtc-pf-card__result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #00A651;
    background: rgba(0,166,81,.06);
    padding: 6px 14px;
    border-radius: 50px;
    margin-top: auto;
    border: 1px solid rgba(0,166,81,.1);
    transition: all .3s ease;
    width: fit-content;
}
.gtc-pf-card:hover .gtc-pf-card__result {
    background: rgba(0,166,81,.1);
    box-shadow: 0 0 16px rgba(0,166,81,.12);
    transform: scale(1.03);
}

/* Placeholder */
.gtc-pf-card__ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    color: #adb5bd;
    font-size: 36px;
}

/* ================================================================
   8-10 RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .gtc-svc-section,
    .gtc-why-section,
    .gtc-pf-section { padding: 70px 0 80px; }

    .gtc-stat__num { font-size: 28px; }
    .gtc-heading { font-size: clamp(24px, 4vw, 36px); }
}

@media (max-width: 768px) {
    .gtc-svc-section,
    .gtc-why-section,
    .gtc-pf-section { padding: 50px 0 60px; }

    .gtc-mesh { display: none; }

    .gtc-trust { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 8px 16px; }

    .gtc-stat { padding: 16px 10px; }
    .gtc-stat__num { font-size: 26px; }
    .gtc-stat__ring { display: none; }

    .gtc-feat { padding: 16px; }
    .gtc-feat__icon { width: 40px; height: 40px; }
    .gtc-feat__icon .bi { font-size: 18px; }
    .gtc-feat__arrow { display: none; }

    .gtc-pf-card__img { height: 170px; }

    .gtc-svc-card__hook { padding: 8px 10px; }
}

/* ================================================================
   10C. SERVICE CARDS (servicos.php page)
   ================================================================ */
.gtc-svc-page {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.gtc-svc-page:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    border-color: transparent;
}
.gtc-svc-page__accent {
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--svc, var(--primary));
    border-radius: 0 4px 4px 0;
    transition: width .3s;
}
.gtc-svc-page:hover .gtc-svc-page__accent {
    width: 6px;
}
.gtc-svc-page__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--svc, var(--primary));
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.gtc-svc-page__title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}
.gtc-svc-page__desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.gtc-svc-page__features {
    list-style: none;
    padding: 0; margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.gtc-svc-page__features li {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}
.gtc-svc-page__features li .bi {
    color: var(--svc, var(--primary));
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .gtc-svc-page { padding: 20px 18px; }
    .gtc-svc-page__icon { width: 44px; height: 44px; font-size: 18px; }
    .gtc-svc-page__title { font-size: 15px; }
}

/* ================================================================
   10D. SERVICE DETAIL PAGES (individual service pages)
   ================================================================ */

/* ---- Shared Gradient Backgrounds ---- */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}
.bg-gradient-secondary {
    background: linear-gradient(135deg, #7CB518, #5a8c12) !important;
}
.bg-gradient-accent {
    background: linear-gradient(135deg, #C8DD00, #9fb800) !important;
}

/* ---- Check Items (midias.php) ---- */
.check-item {
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}
.check-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

/* ---- Service Detail Cards (midias.php) ---- */
.service-detail-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}
.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-detail-card:hover::before {
    opacity: 1;
}
.service-detail-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.service-detail-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.service-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
    transition: var(--transition);
}
.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(-5deg);
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

/* ---- Process Timeline (midias.php) ---- */
.process-timeline {
    position: relative;
    padding: 20px 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item-reverse {
    flex-direction: row-reverse;
    text-align: right;
}
.timeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.3);
}
.timeline-content {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.timeline-content h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}
.timeline-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.timeline-features li {
    font-size: 13px;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

/* ---- Video Section (midias.php) ---- */
.video-container {
    position: relative;
}
.video-thumbnail {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}
.video-thumbnail img {
    width: 100%;
    transition: transform .4s ease;
}
.video-thumbnail:hover img {
    transform: scale(1.03);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0, 166, 81, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 166, 81, 0.4);
    transition: var(--transition);
}
.video-play-btn:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-stats .stat-item {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- CTA Buttons Group ---- */
.cta-buttons .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius);
}

/* ---- Development Showcase / Browser Mock (desenvolvimento.php) ---- */
.development-showcase {
    position: relative;
}
.showcase-browser {
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.browser-dots .dot.red { background: #ef4444; }
.browser-dots .dot.yellow { background: #f59e0b; }
.browser-dots .dot.green { background: #22c55e; }
.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    padding: 5px 14px;
    border-radius: 6px;
    color: var(--gray-400);
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}
.browser-content {
    padding: 20px;
}
.code-preview {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 13px;
    line-height: 1.8;
}
.code-line {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.code-tag { color: #f472b6; }
.code-attr { color: #67e8f9; }
.code-text { color: #a5f3fc; }
.code-comment { color: #6b7280; font-style: italic; }
.code-indent { display: inline-block; width: 24px; }
.code-indent-2 { display: inline-block; width: 48px; }

/* ---- Tech Stack (desenvolvimento.php) ---- */
.tech-stack h6 {
    font-family: var(--font-heading);
    color: var(--dark);
}
.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}
.tech-item i {
    font-size: 18px;
    color: var(--primary);
}
.tech-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ---- Development Cards (desenvolvimento.php) ---- */
.development-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.development-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.development-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.15);
}
.development-card.featured .dev-card-header {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.05), rgba(124, 181, 24, 0.05));
}
.dev-card-header {
    padding: 28px 24px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    position: relative;
}
.dev-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.dev-card-header h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    color: var(--dark);
}
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.dev-card-body {
    padding: 0 24px 28px;
}
.dev-card-body p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.dev-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dev-features li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.dev-features li:last-child {
    border-bottom: none;
}
.dev-features li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

/* ---- Development Process (desenvolvimento.php) ---- */
.development-process {
    position: relative;
    padding: 20px 0;
}
.development-process::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
    border-radius: 2px;
}
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}
.process-step:last-child {
    margin-bottom: 0;
}
.process-step.step-reverse {
    flex-direction: row-reverse;
    text-align: right;
}
.step-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.process-step:hover .step-number {
    color: var(--primary-light);
}
.step-content {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 14px;
}
.step-content h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--dark);
}
.step-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.step-details li {
    font-size: 12px;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
}

/* ---- Tech Categories (desenvolvimento.php) ---- */
.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
}
.tech-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}
.tech-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tech-category-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}
.tech-category-header h5 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin: 0;
}
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tech-item-detailed {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.tech-item-detailed:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}
.tech-item-detailed i {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}
.tech-item-detailed h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.tech-item-detailed small {
    color: var(--gray-400);
    font-size: 12px;
}

/* ---- CTA Features Row (desenvolvimento.php) ---- */
.cta-features .cta-feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}
.cta-features .cta-feature i {
    font-size: 18px;
}

/* ---- Design Showcase (design.php) ---- */
.design-showcase {
    position: relative;
}
.design-tools {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Color Palette */
.color-palette {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.palette-title,
.typography-title,
.element-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.colors-grid {
    display: flex;
    gap: 10px;
}
.color-item {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.color-item:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Typography Showcase */
.typography-showcase {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.font-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.font-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}
.font-item:last-child {
    border-bottom: none;
}
.font-name {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}
.font-preview {
    font-size: 22px;
    color: var(--dark);
}

/* Graphic Elements */
.graphic-elements {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.elements-grid {
    display: flex;
    gap: 16px;
    align-items: center;
}
.element-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.element-shape {
    transition: var(--transition);
}
.element-shape.circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.element-shape.triangle {
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 42px solid;
    border-bottom-color: inherit;
    background: none !important;
}
.element-shape.triangle.bg-gradient-secondary {
    border-bottom-color: #7CB518;
    background: none !important;
}
.element-shape.square {
    width: 44px;
    height: 44px;
    border-radius: 6px;
}
.element-item:hover .element-shape {
    transform: rotate(15deg) scale(1.1);
}

/* ---- Design Features (design.php) ---- */
.design-features .feature-item {
    padding: 10px 0;
    transition: var(--transition);
}
.design-features .feature-item:hover {
    transform: translateX(6px);
}
.feature-icon-small {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ---- Design Service Cards (design.php) ---- */
.design-service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.design-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.design-service-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.12);
}
.design-service-card .service-header {
    padding: 28px 24px 16px;
    position: relative;
}
.design-service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    transition: var(--transition);
}
.design-service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}
.design-service-card .service-header h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 4px;
}
.design-service-card .service-subtitle {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}
.featured-label {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.design-service-card .service-content {
    padding: 0 24px 28px;
}
.service-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.service-includes li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.service-includes li:last-child {
    border-bottom: none;
}
.service-includes li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
}

/* ---- Creative Process (design.php) ---- */
.creative-process {
    position: relative;
    padding: 20px 0;
}
.process-step-design {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    position: relative;
}
.process-step-design:last-child {
    margin-bottom: 0;
}
.process-step-design.reverse {
    flex-direction: row-reverse;
    text-align: right;
}
.step-visual {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}
.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.25);
    transition: var(--transition);
}
.process-step-design:hover .step-circle {
    transform: scale(1.1);
}
.step-visual .step-number {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--gray-400);
}
.step-content-design {
    flex: 1;
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.step-content-design:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.step-content-design h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}
.step-content-design p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}
.step-activities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.step-activities li {
    font-size: 12px;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.step-activities li:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- Tool Cards (design.php) ---- */
.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.tool-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}
.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
    transition: var(--transition);
}
.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(-10deg);
}
.tool-card h6 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
}
.tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.tool-list li {
    padding: 7px 0;
    font-size: 13px;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tool-list li:last-child {
    border-bottom: none;
}
.tool-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 11px;
    flex-shrink: 0;
}

/* ---- Design Benefits (design.php CTA) ---- */
.design-benefits .benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}
.design-benefits .benefit-item i {
    font-size: 18px;
}

/* ---- Maintenance Workspace (manutencao.php) ---- */
.maintenance-workspace {
    background: var(--dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.workspace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #111827;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.workspace-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.workspace-title i {
    color: var(--primary);
}
.workspace-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-400);
}
.workspace-status.online {
    color: #22c55e;
}
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-indicator 2s ease-in-out infinite;
}
@keyframes pulse-indicator {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.workspace-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.repair-queue h6,
.quick-actions h6 {
    color: var(--gray-400);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.queue-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.queue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.queue-item:hover {
    background: rgba(255, 255, 255, 0.07);
}
.queue-item .item-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}
.item-details {
    display: flex;
    flex-direction: column;
}
.item-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.item-status {
    font-size: 11px;
}
.item-status.completed { color: #22c55e; }
.item-status.in-progress { color: #f59e0b; }
.item-status.waiting { color: #64748b; }
.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--gray-400);
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
}
.action-btn i {
    font-size: 18px;
    color: var(--primary);
}
.action-btn:hover {
    background: rgba(0, 166, 81, 0.1);
    border-color: var(--primary);
    color: #fff;
}

/* ---- Maintenance Service Cards (manutencao.php) ---- */
.maintenance-service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    padding: 32px 24px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.maintenance-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.maintenance-service-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.12);
}
.featured-ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(45deg);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
}
.service-icon-large {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    transition: var(--transition);
}
.maintenance-service-card:hover .service-icon-large {
    transform: scale(1.08) rotate(-5deg);
}
.maintenance-service-card h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}
.maintenance-service-card > p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-details h6 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.service-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}
.service-list-detailed li:last-child {
    border-bottom: none;
}
.service-list-detailed li i {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.service-list-detailed li strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}
.service-list-detailed li small {
    font-size: 12px;
    color: var(--gray-500);
}

/* ---- Process Flow (manutencao.php) ---- */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.flow-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
.step-icon-flow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 166, 81, 0.25);
    transition: var(--transition);
}
.flow-step:hover .step-icon-flow {
    transform: scale(1.1);
}
.step-content-flow h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}
.step-content-flow p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 0;
}
.flow-arrow {
    position: absolute;
    right: -22px;
    top: 22px;
    font-size: 18px;
    color: var(--gray-300);
}

/* ---- Pricing / Plan Cards (manutencao.php) ---- */
.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
}
.plan-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}
.plan-card.featured-plan {
    background: rgba(0, 166, 81, 0.1);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(0, 166, 81, 0.2);
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.plan-header h5 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
}
.plan-subtitle {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 24px;
}
.plan-features {
    margin-bottom: 24px;
}
.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.plan-features ul li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.plan-features ul li:last-child {
    border-bottom: none;
}
.plan-features ul li i.bi-check {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.plan-features ul li i.bi-x {
    font-size: 16px;
    flex-shrink: 0;
}

/* ---- Emergency Section (manutencao.php) ---- */
.emergency-section {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.emergency-icon {
    flex-shrink: 0;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    animation: emergency-pulse 1.5s ease-in-out infinite;
}
@keyframes emergency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
.emergency-content h2 {
    color: #fff;
}
.emergency-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.emergency-features .feature {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}
.emergency-features .feature i {
    font-size: 18px;
}
.emergency-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.emergency-btn {
    animation: emergency-glow 2s ease-in-out infinite;
}
@keyframes emergency-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.25); }
}

/* ---- 10D Responsive ---- */
@media (max-width: 991.98px) {
    /* Timeline */
    .process-timeline::before,
    .development-process::before {
        left: 28px;
    }
    .timeline-item,
    .timeline-item-reverse {
        flex-direction: column;
        text-align: left;
        padding-left: 60px;
        gap: 16px;
    }
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    .process-step,
    .process-step.step-reverse {
        flex-direction: column;
        text-align: left;
        padding-left: 60px;
        gap: 16px;
    }
    .step-number {
        position: absolute;
        left: 0;
        font-size: 40px;
        min-width: 56px;
    }
    .process-step-design,
    .process-step-design.reverse {
        flex-direction: column;
        text-align: left;
        gap: 16px;
    }
    .step-visual {
        flex-direction: row;
        gap: 12px;
    }
    /* Process flow */
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    .flow-step {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    .flow-arrow {
        display: none;
    }
    /* Emergency */
    .emergency-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .emergency-features {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    /* Service Detail Cards */
    .service-detail-card {
        padding: 24px 20px;
    }
    .service-detail-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    /* Dev Cards */
    .development-card .dev-card-header {
        padding: 20px 18px 12px;
    }
    .dev-card-body {
        padding: 0 18px 20px;
    }
    /* Showcase Browser */
    .code-preview {
        font-size: 11px;
    }
    .browser-url {
        font-size: 10px;
    }
    /* Design Service Cards */
    .design-service-card .service-header {
        padding: 20px 18px 12px;
    }
    .design-service-card .service-content {
        padding: 0 18px 20px;
    }
    /* Color palette & tools */
    .colors-grid {
        flex-wrap: wrap;
    }
    .color-item {
        width: 36px;
        height: 36px;
    }
    /* Maintenance */
    .maintenance-workspace {
        margin-top: 32px;
    }
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .maintenance-service-card {
        padding: 24px 18px;
    }
    .service-icon-large {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
    /* Plan cards */
    .plan-card {
        padding: 28px 20px;
    }
    /* Timeline and process */
    .timeline-content,
    .step-content,
    .step-content-design {
        padding: 20px;
    }
    /* Video */
    .video-play-btn {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    /* CTA features */
    .cta-features .cta-feature,
    .design-benefits .benefit-item,
    .emergency-features .feature {
        font-size: 13px;
    }
    /* Tech items */
    .tech-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    .tech-item i {
        font-size: 16px;
    }
}

/* ================================================================
   11. CTA SECTION
   ================================================================ */
.cta-section {
    background: var(--gradient-hero);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}
.cta-title {
    color: #fff;
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
}
.cta-text {
    color: rgba(255,255,255,.85);
    font-size: 15px;
    margin-bottom: 16px;
    max-width: 500px;
}
.badge-cta {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.15);
}
/* CTA button agora usa .gtc-btn-glow--white.gtc-btn-glow--lg */

/* ================================================================
   11B. CONTATO PAGE
   ================================================================ */
.contato-form-wrap {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.contato-form-wrap .form-control,
.contato-form-wrap .input-group-text {
    border-color: #e5e7eb;
    font-size: 14px;
}
.contato-form-wrap .input-group-text {
    background: #f9fafb;
    color: #9ca3af;
    border-right: none;
}
.contato-form-wrap .input-group .form-control { border-left: none; }
.contato-form-wrap .form-control:focus {
    border-color: #00A651;
    box-shadow: 0 0 0 3px rgba(0,166,81,.1);
}
.contato-form-wrap .form-control:focus ~ .input-group-text,
.contato-form-wrap .input-group:focus-within .input-group-text {
    border-color: #00A651;
    color: #00A651;
}
.contato-form-wrap textarea { border-left: 1px solid #e5e7eb !important; }
.contato-sidebar {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
}
.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.contato-info-item:last-of-type { border-bottom: none; }
.contato-info-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--ci) 10%, white);
    color: var(--ci);
    font-size: 16px;
    flex-shrink: 0;
}

/* Channel cards (contato) */
.contato-channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.23,1,.32,1);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.contato-channel-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--cc);
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.contato-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,.1);
    border-color: var(--cc);
}
.contato-channel-card:hover::before { transform: scaleX(1); }
.contato-channel-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: color-mix(in srgb, var(--cc) 10%, white);
    color: var(--cc);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.contato-channel-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--cc) 8%, white);
    color: var(--cc);
    font-size: 28px;
    margin-bottom: 16px;
    transition: all .4s cubic-bezier(.23,1,.32,1);
}
.contato-channel-card:hover .contato-channel-icon {
    background: var(--cc);
    color: #fff;
    transform: scale(1.1);
}
.contato-channel-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.contato-channel-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.5;
}
.contato-channel-info {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}
.contato-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cc);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s;
}
.contato-channel-card:hover .contato-channel-btn {
    box-shadow: 0 4px 16px color-mix(in srgb, var(--cc) 40%, transparent);
}

/* ================================================================
   12. BLOG CARDS
   ================================================================ */
.blog-card {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,166,81,.12);
    border-color: transparent;
}
.blog-card .blog-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.blog-card .blog-image-wrap {
    position: relative;
    overflow: hidden;
}
.blog-card .blog-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,.25), transparent);
    pointer-events: none;
}
.blog-card .blog-image-wrap .blog-category-tag {
    position: absolute;
    bottom: 10px; left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 1;
}
.blog-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 36px;
}
.blog-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--gray-400);
}
.blog-category {
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}
.blog-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #1e293b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-title a {
    color: inherit;
    text-decoration: none;
}
.blog-title a:hover { color: var(--primary); }
.blog-excerpt {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================================
   12B. SHOP SECTION — Background com foto tech
   ================================================================ */
.gtc-shop-section {
    position: relative;
    padding: 90px 0 100px;
    background:
        linear-gradient(180deg, rgba(243,244,246,.75) 0%, rgba(235,238,242,.55) 40%, rgba(240,242,245,.55) 60%, rgba(243,244,246,.75) 100%),
        url('../images/tech-bg.svg') center / cover no-repeat;
    overflow: hidden;
}
.gtc-shop-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 10% 80%, rgba(0,166,81,.04) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 90% 20%, rgba(37,99,235,.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.gtc-shop-section > .container {
    position: relative;
    z-index: 1;
}

/* ================================================================
   13. PRODUCT CARDS
   ================================================================ */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.prod-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
    border-color: transparent;
    color: inherit;
}
.prod-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}
.prod-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-card__img img {
    transform: scale(1.05);
}
.prod-card__ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--gray-300);
}
.prod-card__badge-offer {
    position: absolute;
    top: 10px; right: 10px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 6px;
}
.prod-card__type {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 6px;
}
.prod-card__type--service {
    background: rgba(0,166,81,.9);
    color: #fff;
}
.prod-card__type--product {
    background: rgba(37,99,235,.9);
    color: #fff;
}
.prod-card__body {
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prod-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
    line-height: 1.3;
}
.prod-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.prod-card__price-old {
    font-size: 13px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.prod-card__price-now {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    background: rgba(0,166,81,.08);
    padding: 2px 10px;
    border-radius: 6px;
}
.prod-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    opacity: 0;
    transform: translateY(6px);
    transition: all .3s ease;
}
.prod-card:hover .prod-card__link {
    opacity: 1;
    transform: translateY(0);
}
.prod-card:hover .prod-card__link i {
    animation: svcArrow .6s ease infinite alternate;
}

@media (max-width: 991.98px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .prod-card__link { opacity: 1; transform: translateY(0); }
}
@media (max-width: 575.98px) {
    .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .prod-card__body { padding: 12px; }
    .prod-card__name { font-size: 13.5px; }
    .prod-card__price-now { font-size: 17px; }
}

/* ================================================================
   13B. PRODUTO DETALHES (redesigned)
   ================================================================ */

/* --- Breadcrumb Bar --- */
.pd-breadcrumb-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
}
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.pd-breadcrumb__item { font-size: 13px; color: var(--gray-500); }
.pd-breadcrumb__item a { color: var(--gray-500); text-decoration: none; transition: color .2s; }
.pd-breadcrumb__item a:hover { color: var(--primary); }
.pd-breadcrumb__item + .pd-breadcrumb__item::before {
    content: '\F285'; font-family: 'bootstrap-icons'; font-size: 10px;
    margin-right: 6px; color: var(--gray-300); vertical-align: middle;
}
.pd-breadcrumb__item--active {
    color: #1e293b; font-weight: 600;
    max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* --- Section --- */
.pd-section { padding: 40px 0 60px; background: #fff; }

/* --- Gallery (sticky) --- */
.pd-gallery { position: sticky; top: 110px; }
.pd-gallery__main {
    position: relative;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    cursor: crosshair;
}
.pd-gallery__photo {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: opacity .3s ease, transform .3s ease;
    will-change: transform;
}
.pd-gallery__zoom-lens { display: none; }
.pd-gallery__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-300);
    text-align: center;
}
.pd-gallery__placeholder i { font-size: 72px; opacity: .6; }
.pd-gallery__placeholder span { font-size: 14px; font-weight: 500; color: var(--gray-400); }

/* Gallery Badges */
.pd-gallery__badge {
    position: absolute;
    top: 16px;
    z-index: 2;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    pointer-events: none;
}
.pd-gallery__badge--sale {
    left: 16px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 10px;
    letter-spacing: -.3px;
}
.pd-gallery__badge--feat {
    right: 16px; left: auto;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Thumbs */
.pd-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}
.pd-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.pd-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
.pd-gallery__thumb {
    flex: 0 0 76px;
    width: 76px; height: 76px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--gray-50);
    cursor: pointer;
    transition: all .25s ease;
    padding: 0;
    position: relative;
}
.pd-gallery__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(0,0,0,.04);
    opacity: 0;
    transition: opacity .25s;
}
.pd-gallery__thumb:hover::after { opacity: 1; }
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumb.is-active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,166,81,.15);
}
.pd-gallery__thumb:hover:not(.is-active) { border-color: var(--gray-300); }

/* --- Product Info --- */
.pd-info { display: flex; flex-direction: column; gap: 0; }

/* Top row: type + sku */
.pd-info__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pd-info__type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 5px 14px;
    border-radius: 20px;
}
.pd-info__type--product { background: rgba(37,99,235,.08); color: #2563eb; }
.pd-info__type--service { background: rgba(0,166,81,.08); color: #00A651; }
.pd-info__sku {
    font-size: 12px;
    color: var(--gray-400);
    font-family: var(--font-body);
    letter-spacing: .3px;
}

/* Product name */
.pd-info__name {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    line-height: 1.15;
    letter-spacing: -.3px;
}

/* Short description */
.pd-info__short-desc {
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0 0 4px;
}

/* Divider */
.pd-info__divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 16px 0;
}

/* --- Price Card --- */
.pd-info__price-card {
    background: linear-gradient(135deg, #f8faf9 0%, var(--gray-50) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.pd-info__price-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Old price row */
.pd-info__price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pd-info__price-old {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}
.pd-info__price-save {
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    background: rgba(220,38,38,.08);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* Main price */
.pd-info__price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.pd-info__price-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}
.pd-info__price-now {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -.5px;
}
.pd-info__price-now small {
    font-size: .5em;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}

/* Price options */
.pd-info__price-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.pd-info__installments {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}
.pd-info__installments i { font-size: 16px; color: var(--gray-400); }
.pd-info__pix {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #059669;
    background: rgba(5,150,105,.07);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(5,150,105,.12);
}
.pd-info__pix .bi { font-size: 22px; flex-shrink: 0; }
.pd-info__pix-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    background: #059669;
    color: #fff;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* --- Stock --- */
.pd-info__stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    margin-top: 16px;
}
.pd-info__stock-icon { display: flex; align-items: center; font-size: 16px; }
.pd-info__stock-text { line-height: 1.3; }
.pd-info__stock--ok {
    color: #059669;
    background: rgba(5,150,105,.06);
    border: 1px solid rgba(5,150,105,.12);
}
.pd-info__stock--out {
    color: #dc2626;
    background: rgba(220,38,38,.06);
    border: 1px solid rgba(220,38,38,.12);
}
.pd-info__stock-alert {
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
    background: rgba(217,119,6,.1);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: auto;
    white-space: nowrap;
    animation: pdPulseAlert 2s ease-in-out infinite;
}
@keyframes pdPulseAlert {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}

/* --- Buy Section --- */
.pd-info__buy-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.pd-info__qty-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}
.pd-info__qty-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}
.pd-info__qty {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color .25s;
}
.pd-info__qty:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,166,81,.1);
}
.pd-info__qty-btn {
    width: 40px; height: 40px;
    border: none;
    background: var(--gray-50);
    font-size: 18px;
    color: #1e293b;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-info__qty-btn:hover { background: var(--gray-200); color: var(--primary); }
.pd-info__qty-btn:active { background: var(--gray-300); }
.pd-info__qty input {
    width: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-heading);
    background: #fff;
    color: #1e293b;
    -moz-appearance: textfield;
}
.pd-info__qty input::-webkit-outer-spin-button,
.pd-info__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Cart button */
.pd-info__btn-cart {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    animation: none;
}
.pd-info__btn-cart:disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(.3);
}
.pd-info__btn-cart--success {
    background: #059669 !important;
    border-color: #059669 !important;
}

/* WhatsApp button */
.pd-info__btn-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 24px;
}

/* --- Trust Badges --- */
.pd-info__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}
.pd-info__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all .25s ease;
}
.pd-info__trust-item:hover {
    border-color: var(--primary);
    background: rgba(0,166,81,.03);
    transform: translateY(-1px);
}
.pd-info__trust-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pd-info__trust-icon i { font-size: 16px; color: var(--primary); }
.pd-info__trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.pd-info__trust-text strong { font-size: 12px; font-weight: 700; color: #1e293b; }
.pd-info__trust-text span { font-size: 11px; color: var(--gray-400); font-weight: 400; }

/* --- Tabs --- */
.pd-tabs-wrapper { margin-top: 60px; }
.pd-tabs {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.pd-tabs__nav {
    display: flex;
    border-bottom: 2px solid var(--gray-100);
    background: var(--gray-50);
    gap: 0;
}
.pd-tabs__btn {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s ease;
    position: relative;
}
.pd-tabs__btn i { font-size: 17px; }
.pd-tabs__btn.is-active {
    color: var(--primary);
    background: #fff;
}
.pd-tabs__btn.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%; right: 20%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
}
.pd-tabs__btn:hover:not(.is-active) {
    color: #1e293b;
    background: rgba(0,0,0,.02);
}

.pd-tabs__content { min-height: 120px; }
.pd-tabs__pane {
    display: none;
    padding: 32px;
    animation: pdFadeIn .35s ease;
}
.pd-tabs__pane.is-active { display: block; }
@keyframes pdFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Empty state */
.pd-tabs__empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
}
.pd-tabs__empty i { font-size: 48px; display: block; margin-bottom: 12px; opacity: .4; }
.pd-tabs__empty p { font-size: 14px; margin: 0; }

/* Description content */
.pd-desc {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.85;
}
.pd-desc p { margin-bottom: 16px; }
.pd-desc img { max-width: 100%; border-radius: var(--radius-lg); margin: 16px 0; }
.pd-desc ul, .pd-desc ol { padding-left: 24px; margin-bottom: 16px; }
.pd-desc li { margin-bottom: 8px; }
.pd-desc h2, .pd-desc h3, .pd-desc h4 {
    margin-top: 24px; margin-bottom: 12px; color: #1e293b;
}

/* Specs grid */
.pd-specs-grid { display: flex; flex-direction: column; gap: 0; }
.pd-specs__row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    transition: background .2s;
}
.pd-specs__row:last-child { border-bottom: none; }
.pd-specs__row:hover { background: var(--gray-50); }
.pd-specs__row:nth-child(even) { background: rgba(0,0,0,.01); }
.pd-specs__row:nth-child(even):hover { background: var(--gray-50); }
.pd-specs__label {
    flex: 0 0 200px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-specs__label i { font-size: 15px; color: var(--primary); opacity: .7; }
.pd-specs__value {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

/* --- Related Products --- */
.pd-related {
    padding: 60px 0 70px;
    background: var(--gray-50);
}
.pd-related__header { text-align: center; margin-bottom: 40px; }
.pd-related__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin: 12px 0 0;
}
.pd-related__grid { grid-template-columns: repeat(4, 1fr); }

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .pd-gallery { position: relative; top: 0; }
    .pd-info__trust { grid-template-columns: 1fr 1fr; }
    .pd-related__grid { grid-template-columns: repeat(2, 1fr); }
    .pd-specs__label { flex: 0 0 160px; }
}
@media (max-width: 767.98px) {
    .pd-section { padding: 24px 0 40px; }
    .pd-info__price-card { padding: 20px; }
    .pd-info__price-now { font-size: 32px; }
    .pd-info__trust { grid-template-columns: 1fr; gap: 8px; }
    .pd-info__trust-item { padding: 8px 10px; }
    .pd-tabs-wrapper { margin-top: 40px; }
    .pd-tabs__pane { padding: 24px 18px; }
    .pd-related { padding: 40px 0 50px; }
}
@media (max-width: 575.98px) {
    .pd-breadcrumb-bar { padding: 10px 0; }
    .pd-breadcrumb__item--active { max-width: 160px; }
    .pd-gallery__main { aspect-ratio: 4/3; }
    .pd-gallery__thumb { flex: 0 0 58px; width: 58px; height: 58px; }
    .pd-info__name { font-size: 22px; }
    .pd-info__price-now { font-size: 28px; }
    .pd-info__qty-btn { width: 36px; height: 36px; font-size: 16px; }
    .pd-info__qty input { width: 42px; font-size: 14px; }
    .pd-info__btn-cart { font-size: 14px; padding: 12px 20px; }
    .pd-tabs__btn { font-size: 13px; padding: 14px 12px; }
    .pd-tabs__btn i { font-size: 15px; }
    .pd-specs__label { flex: 0 0 120px; font-size: 12px; }
    .pd-specs__value { font-size: 13px; }
    .pd-related__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ================================================================
   14. TESTIMONIALS
   ================================================================ */
.testimonial-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-quote {
    color: var(--primary);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
    opacity: .1;
    position: absolute;
    top: 12px;
    right: 16px;
}
.testimonial-card .card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
}
.testimonial-card .text-warning {
    font-size: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}
.testimonial-card img.rounded-circle {
    object-fit: cover;
    border: 2px solid var(--primary);
}

/* ================================================================
   15. PARTNERS
   ================================================================ */
.partner-logo {
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}
.partner-logo:hover { text-decoration: none; }
.partner-img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: .5;
    transition: var(--transition);
}
.partner-logo:hover .partner-img {
    filter: grayscale(0);
    opacity: 1;
}

/* ================================================================
   16. NEWSLETTER
   ================================================================ */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 40px 0;
    color: #fff;
}
.newsletter-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.newsletter-text {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin-bottom: 0;
}
.newsletter-form .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: var(--radius) 0 0 var(--radius);
}
.newsletter-form .form-control:focus {
    box-shadow: none;
}
.newsletter-form .gtc-btn-glow {
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    padding: 12px 24px;
    font-weight: 700;
    white-space: nowrap;
    animation: none;
    box-shadow: none;
}
.newsletter-form .gtc-btn-glow:hover {
    box-shadow: none;
    transform: none;
}

/* ================================================================
   17. FOOTER
   ================================================================ */
.site-footer {
    position: relative;
    background: linear-gradient(175deg, #0f172a 0%, #151d30 35%, #111827 70%, #0d1117 100%);
    color: rgba(255,255,255,.75);
    overflow: hidden;
    font-family: var(--font-body);
}

/* ---- Accent bar: animated green gradient strip at very top ---- */
.footer-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary) 0%, #7CB518 25%, #C8DD00 50%, #7CB518 75%, var(--primary) 100%);
    background-size: 200% 100%;
    animation: footerAccentShimmer 8s ease infinite;
    z-index: 3;
}
@keyframes footerAccentShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---- Background texture: subtle dot grid + radial glows ---- */
.footer-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(0,166,81,.045) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(124,181,24,.03) 0%, transparent 50%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* ---- Footer top: main content area ---- */
.footer-top {
    position: relative;
    padding: 68px 0 52px;
    z-index: 1;
}

/* ---- Column 1: Brand ---- */
.footer-brand {
    margin-bottom: 22px;
}
.footer-logo {
    max-height: 44px;
    width: auto;
    filter: brightness(1.05);
    transition: all .3s ease;
}
.footer-logo:hover {
    filter: brightness(1.25);
    transform: scale(1.03);
}
.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin-bottom: 26px;
    max-width: 340px;
    letter-spacing: .01em;
}

/* ---- Social links: rounded squares with platform colors ---- */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.footer-social__link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.footer-social__link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    opacity: 0;
    transform: scale(.6);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.footer-social__link:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    text-decoration: none;
}
.footer-social__link:hover::before {
    opacity: 1;
    transform: scale(1);
}
.footer-social__link:active {
    transform: translateY(-1px);
}
.footer-social__link i {
    position: relative;
    z-index: 1;
}

/* Platform-specific hover colors */
.footer-social__link--facebook::before  { background: #1877F2; }
.footer-social__link--facebook:hover    { background: #1877F2; border-color: #1877F2; }
.footer-social__link--instagram::before { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.footer-social__link--instagram:hover   { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); border-color: #E4405F; }
.footer-social__link--youtube::before   { background: #FF0000; }
.footer-social__link--youtube:hover     { background: #FF0000; border-color: #FF0000; }
.footer-social__link--linkedin::before  { background: #0A66C2; }
.footer-social__link--linkedin:hover    { background: #0A66C2; border-color: #0A66C2; }
.footer-social__link--tiktok::before    { background: linear-gradient(135deg, #010101 60%, #25F4EE); }
.footer-social__link--tiktok:hover      { background: #010101; border-color: #25F4EE; box-shadow: 0 8px 24px rgba(37,244,238,.15); }
.footer-social__link--twitter::before   { background: #000; }
.footer-social__link--twitter:hover     { background: #000; border-color: #536471; }
.footer-social__link--whatsapp::before  { background: #25D366; }
.footer-social__link--whatsapp:hover    { background: #25D366; border-color: #25D366; }

/* ---- ANCINE certification badge: green-tinted pill ---- */
.footer-ancine-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(0,166,81,.1), rgba(200,221,0,.06));
    border: 1px solid rgba(0,166,81,.18);
    color: rgba(255,255,255,.7);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.footer-ancine-badge:hover {
    background: linear-gradient(135deg, rgba(0,166,81,.18), rgba(200,221,0,.1));
    border-color: rgba(0,166,81,.35);
    color: #fff;
    transform: translateY(-1px);
}
.footer-ancine-badge i {
    font-size: 13px;
    color: var(--primary);
}

/* ---- Section headings with green underline ---- */
.footer-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: .2px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), #7CB518);
}

/* ---- Footer links: list with chevron reveal on hover ---- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 3px;
}
.footer-links a {
    color: rgba(255,255,255,.5);
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 0;
    border-radius: var(--radius, 6px);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.footer-links a i {
    font-size: 10px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    color: var(--primary);
    min-width: 0;
    width: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.footer-links a span {
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
    text-decoration: none;
}
.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
    width: auto;
    min-width: 16px;
    margin-right: 2px;
}

/* ---- Contact list: vertical stack of icon + info rows ---- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: transform .25s ease;
}
.footer-contact-item:hover {
    transform: translateX(3px);
}

/* Contact icon: 40px circle with semi-transparent colored bg */
.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    transition: all .3s ease;
    flex-shrink: 0;
}
.footer-contact-icon--location {
    background: rgba(0,166,81,.15);
    color: #34d399;
    box-shadow: 0 0 0 0 rgba(0,166,81,0);
}
.footer-contact-item:hover .footer-contact-icon--location {
    background: rgba(0,166,81,.25);
    box-shadow: 0 4px 16px rgba(0,166,81,.2);
}
.footer-contact-icon--phone {
    background: rgba(59,130,246,.15);
    color: #60a5fa;
}
.footer-contact-item:hover .footer-contact-icon--phone {
    background: rgba(59,130,246,.25);
    box-shadow: 0 4px 16px rgba(59,130,246,.2);
}
.footer-contact-icon--email {
    background: rgba(245,158,11,.15);
    color: #fbbf24;
}
.footer-contact-item:hover .footer-contact-icon--email {
    background: rgba(245,158,11,.25);
    box-shadow: 0 4px 16px rgba(245,158,11,.2);
}
.footer-contact-icon--cnpj {
    background: rgba(139,92,246,.15);
    color: #a78bfa;
}
.footer-contact-item:hover .footer-contact-icon--cnpj {
    background: rgba(139,92,246,.25);
    box-shadow: 0 4px 16px rgba(139,92,246,.2);
}

/* Contact info text block */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13.5px;
    padding-top: 2px;
    min-width: 0;
}
.footer-contact-info strong {
    color: rgba(255,255,255,.88);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.footer-contact-info span {
    color: rgba(255,255,255,.48);
    line-height: 1.55;
    word-break: break-word;
}
.footer-contact-info a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: all .25s ease;
}
.footer-contact-info a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* ---- CTA button wrapper at bottom of contact column ---- */
.footer-cta-wrapper {
    margin-top: 28px;
}
.footer-cta-wrapper .gtc-btn-glow {
    justify-content: center;
    width: 100%;
}

/* ---- Footer bottom bar ---- */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 22px 0;
    font-size: 13px;
    background: rgba(0,0,0,.2);
}
.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-bottom__copy p {
    margin: 0;
    color: rgba(255,255,255,.4);
    font-size: 13px;
    line-height: 1.5;
}
.footer-bottom__copy p strong {
    color: rgba(255,255,255,.65);
    font-weight: 600;
}
.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bottom__links a {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: 13px;
    transition: all .25s ease;
    position: relative;
}
.footer-bottom__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width .25s ease;
}
.footer-bottom__links a:hover {
    color: var(--primary);
    text-decoration: none;
}
.footer-bottom__links a:hover::after {
    width: 100%;
}
.footer-bottom__separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: inline-block;
    flex-shrink: 0;
}
.footer-bottom__ancine {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    opacity: .85;
}
.footer-bottom__ancine i {
    font-size: 11px;
}
.footer-bottom__credit {
    color: rgba(255,255,255,.3);
    font-size: 12px;
}
.footer-bottom__credit a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: all .25s ease;
}
.footer-bottom__credit a:hover {
    color: var(--primary);
    text-decoration: none;
}
.footer-bottom__credit strong {
    font-weight: 600;
}

/* ---- Footer responsive ---- */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 52px 0 40px;
    }
    .footer-title {
        margin-bottom: 20px;
    }
    .footer-contact-list {
        gap: 14px;
    }
}
@media (max-width: 767.98px) {
    .footer-top {
        padding: 44px 0 36px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        justify-content: center;
    }
    .footer-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-ancine-badge {
        margin-bottom: 8px;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links a {
        justify-content: center;
    }
    .footer-contact-list {
        align-items: center;
    }
    .footer-contact-item {
        text-align: left;
    }
    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom__links {
        justify-content: center;
    }
    .footer-bottom__credit {
        order: 3;
    }
}
@media (max-width: 575.98px) {
    .footer-top {
        padding: 36px 0 28px;
    }
    .footer-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }
    .footer-contact-info strong {
        font-size: 11.5px;
    }
    .footer-contact-info span,
    .footer-contact-info a {
        font-size: 12.5px;
    }
    .footer-social__link {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 7px;
    }
    .footer-bottom {
        padding: 18px 0;
    }
    .footer-bottom__copy p,
    .footer-bottom__links a {
        font-size: 12px;
    }
}

/* 18. SCROLL TO TOP - REMOVIDO */

/* ================================================================
   19. WHATSAPP WIDGET
   ================================================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1035;
}

/* Trigger Button */
.whatsapp-trigger {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.1);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    z-index: 2;
    animation: wpBounce 3s ease-in-out infinite;
}
.whatsapp-trigger:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.15);
    background: linear-gradient(135deg, #2bea73 0%, #25D366 100%);
}
.whatsapp-trigger:active {
    transform: scale(.95);
}
.whatsapp-trigger.active i::before {
    content: "\F62A"; /* bi-x-lg */
}
.whatsapp-trigger.active {
    animation: none;
}
@keyframes wpBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    10% { transform: translateY(-8px); opacity: 1; }
    20% { transform: translateY(0); opacity: 1; }
    30% { transform: translateY(-5px); opacity: 1; }
    40% { transform: translateY(0); opacity: 1; }
    60% { opacity: 1; }
    70% { opacity: .4; }
    80% { opacity: 1; }
    88% { opacity: .5; }
    95% { opacity: 1; }
}

/* Pulse - double ring */
.whatsapp-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 3px solid #25D366;
    background: transparent;
    opacity: 0;
    animation: wpPulse 2s ease-out infinite;
    z-index: -1;
}
.whatsapp-trigger::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.3);
    opacity: 0;
    animation: wpPulse 2s ease-out .6s infinite;
    z-index: -1;
}
@keyframes wpPulse {
    0% { opacity: .6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.6); }
}

/* Glow effect */
.whatsapp-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,.3) 0%, transparent 70%);
    animation: wpGlow 2.5s ease-in-out infinite alternate;
    z-index: -1;
}
@keyframes wpGlow {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Badge */
.whatsapp-badge-notification {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 6px rgba(231,76,60,.4);
    animation: wpBadgePop .4s cubic-bezier(.68,-.55,.27,1.55);
}
@keyframes wpBadgePop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Hook Bubble */
.whatsapp-hook-bubble {
    position: absolute;
    bottom: 74px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 16px 38px 16px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
    max-width: 340px;
    min-width: 240px;
    width: max-content;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(8px) scale(.95);
    transition: all .3s ease;
    pointer-events: none;
    z-index: 1;
    word-wrap: break-word;
    white-space: normal;
}
.whatsapp-hook-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.whatsapp-hook-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,.05);
}
.hook-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}
.hook-close:hover { color: #374151; }
.hook-text {
    margin: 0;
    transition: opacity .3s ease;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Chat Box */
.whatsapp-chatbox {
    position: absolute;
    bottom: 74px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px) scale(.95);
    transition: all .3s ease;
    z-index: 3;
}
.whatsapp-chatbox.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: #075E54;
    color: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-avatar {
    position: relative;
}
.chat-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.chat-header h6 {
    font-size: 14px;
    margin: 0;
    color: #fff;
}
.chat-header small {
    font-size: 11px;
    color: rgba(255,255,255,.7);
}
.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: .8;
}
.chat-close:hover { opacity: 1; }

.chat-body {
    padding: 16px;
    background: #ECE5DD;
    min-height: 100px;
}
.chat-bubble {
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px 8px 8px 0;
    max-width: 85%;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.chat-bubble p { margin: 0 0 4px; }
.chat-bubble p:last-of-type { margin: 0; }
.chat-time {
    font-size: 10px;
    color: #999;
    display: block;
    text-align: right;
    margin-top: 4px;
}

.chat-footer {
    padding: 8px 10px;
    background: #f0f0f0;
}
.chat-input-area {
    display: flex;
    gap: 6px;
}
.chat-input {
    flex: 1;
    border: none;
    background: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
}
.chat-send-btn {
    width: 36px;
    height: 36px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.chat-send-btn:hover { background: #128C7E; }

/* ================================================================
   20. RESPONSIVE
   ================================================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 90px 0 50px;
    }
    .hero-title {
        font-size: clamp(24px, 5vw, 34px);
    }
    #mainNavbar .navbar-collapse {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 16px;
        margin-top: 8px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }
    #mainNavbar .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    #mainNavbar .navbar-nav .nav-link {
        padding: 10px 12px;
        border-radius: 6px;
    }
    .navbar-actions {
        flex-direction: column;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--gray-200);
    }
    .navbar-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .navbar-actions .d-none.d-lg-flex {
        display: flex !important;
    }
    .navbar-actions .d-none.d-xl-inline {
        display: inline !important;
    }

    .section-padding { padding: 40px 0; }
    .section-title { font-size: 24px; }

}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }
    .hero-title { font-size: 24px; }
    .hero-subtitle {
        font-size: 14px;
        margin: 0 auto 20px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats { margin-top: 24px; }
    .stat-card { padding: 10px 8px; }
    .stat-number { font-size: 20px; }
    .stat-label { font-size: 10px; }

    .scroll-indicator { display: none; }

    .section-padding { padding: 32px 0; }
    .section-title { font-size: 22px; }
    .section-description { font-size: 14px; }

    .cta-section { padding: 32px 0; text-align: center; }
    .cta-title { font-size: 22px; }

    .newsletter-section { padding: 28px 0; text-align: center; }
    .newsletter-form .input-group {
        flex-direction: column;
    }
    .newsletter-form .form-control {
        border-radius: var(--radius) !important;
        margin-bottom: 8px;
    }
    .newsletter-form .btn {
        border-radius: var(--radius) !important;
        width: 100%;
    }

    .footer-top { padding: 32px 0 24px; }
    .footer-bottom { text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .social-links-footer { justify-content: center; }

    /* WhatsApp widget mobile */
    .whatsapp-widget {
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-trigger {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    .whatsapp-chatbox {
        width: calc(100vw - 32px);
        right: -8px;
        bottom: 66px;
    }
    .whatsapp-hook-bubble {
        max-width: 280px;
        min-width: 200px;
        font-size: 13px;
        right: -4px;
        bottom: 66px;
        padding: 14px 34px 14px 16px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .hero-title { font-size: 22px; }
    .hero-buttons .btn { font-size: 13px; padding: 8px 16px; width: 100%; }
    .ancine-badge { font-size: 11px; padding: 4px 12px; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
