html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#topbar {
    margin: 0;
    display: block;
}

/* ============================================================
   DESIGN TOKENS & LIGHT THEME
============================================================ */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F0F9FF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FEFF;
    --cyan: #007691;
    --cyan-light: #00AACC;
    --cyan-dark: #005E75;
    --cyan-glow: rgba(0, 170, 204, 0.10);
    --cyan-border: rgba(0, 170, 204, 0.28);
    --text-primary: #0A1628;
    --text-secondary: #475569;
    --text-muted: #6B7280;
    --border: #E2E8F0;
    --border-dark: #CBD5E1;
    --white: #FFFFFF;
    --navy: #0A1628;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-cyan: 0 4px 24px rgba(0, 170, 204, 0.18);
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    /* Performance: Animate only safe, composited properties instead of 'all' */
    --transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --section-py: 96px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    padding: 0;
    display: flow-root;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.1;
}

h1 {
    font-size: clamp(44px, 8vw, 76px);
    font-weight: 800;
}

h2 {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 10px;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-title-line {
    width: 48px;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
    margin: 14px 0 32px;
}

.section-title-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--cyan);
    color: #fff;
    border: 2px solid var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    background: var(--cyan-dark);
    border-color: var(--cyan-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(0, 170, 204, 0.28);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: var(--cyan);
    color: #fff;
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
}

.btn-dark:hover {
    background: #1e2f4a;
}

.btn-white {
    background: #fff;
    color: var(--cyan);
    border: 2px solid #fff;
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f0f0;
}

/* ANIMATIONS */
.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   TOPBAR
============================================================ */
#topbar {
    background: var(--navy);
    height: 38px;
    display: flex;
    align-items: center;
}

#topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    white-space: nowrap;
}

.topbar-left a,
.topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.topbar-left a:hover,
.topbar-right a:hover {
    color: var(--cyan-light);
}

.topbar-sep {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-left svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.topbar-right svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#navbar.scrolled {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

#navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

/* Inline SVG logo when no image */
.nav-logo-svg {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    padding: 6px 13px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 6px;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cyan);
    background: var(--bg-secondary);
}

.nav-links a.active {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 6px;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 850;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--cyan);
    border-color: var(--cyan-border);
    background: var(--bg-secondary);
}

.mobile-nav .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* ============================================================
   HERO
============================================================ */
#inicio {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.65) 60%, rgba(0, 170, 204, 0.18) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00D4FF;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-h1 {
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero-h1 .hl {
    position: relative;
    color: var(--cyan-light);
    display: inline-block;
}

.hero-h1 .hl::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan-light);
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.80);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-trust-item svg {
    color: var(--cyan-light);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   SOBRE
============================================================ */
#sobre {
    background: var(--bg-secondary);
    padding: var(--section-py) 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 64px;
    align-items: center;
}

.sobre-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sobre-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.sobre-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 170, 204, 0.2);
    border-radius: 12px;
    padding: 14px 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    transition: var(--transition);
}

.sobre-img-badge:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 170, 204, 0.2);
}

.sobre-img-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 170, 204, 0.3);
    flex-shrink: 0;
}

.sobre-img-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.sobre-img-badge-num {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.sobre-desc {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sobre-stats {
    display: flex;
    gap: 28px;
    margin: 28px 0 36px;
    flex-wrap: wrap;
}

.stat-item {
    border-left: 3px solid var(--cyan);
    padding-left: 14px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.80rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.sobre-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--cyan-border);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.pillar-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #fff 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--cyan-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
    box-shadow: 0 4px 12px rgba(0, 170, 204, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
    color: #fff;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 170, 204, 0.25);
    border-color: transparent;
}

.pillar-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.pillar-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================================
   SERVIÇOS
============================================================ */
#servicos {
    background: var(--bg-primary);
    padding: var(--section-py) 0;
}

.servicos-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 24px;
}

.servico-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.servico-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--cyan-border);
    transform: translateY(-4px);
}

.servico-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.servico-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.servico-card:hover .servico-img img {
    transform: scale(1.05);
}

.servico-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.servico-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: var(--transition);
    text-align: left;
    min-height: 3rem;
}

.servico-card:hover .servico-name {
    color: var(--cyan);
}

.servico-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left;
    min-height: 6.5rem;
}

.servico-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 4px;
    width: 100%;
}

.servico-lista li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.servico-lista li:last-child {
    margin-bottom: 0;
}

.servico-lista li svg {
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

/* service photo card */
.servicos-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.servicos-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.servicos-cta {
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
}

.servicos-cta-icon {
    width: 68px;
    height: 68px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: #00D4FF;
}

.servicos-cta h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.servicos-cta p {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 22px;
}

.cta-checklist {
    text-align: left;
    margin-bottom: 26px;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-checklist li:last-child {
    border-bottom: none;
}

.cta-checklist svg {
    color: #00D4FF;
    flex-shrink: 0;
}

.servicos-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   BANNER PMOC
============================================================ */
#banner-pmoc {
    position: relative;
    overflow: hidden;
    background: url('../img/banner.webp') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cyan) 0%, rgba(0, 170, 204, 0.9) 100%);
}

.banner-inner {
    position: relative;
    z-index: 2;
    padding: 64px 0;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.banner-text {
    flex: 1;
    min-width: 260px;
}

.banner-text h3 {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
}

.banner-action {
    flex-shrink: 0;
}

/* ============================================================
   CLIENTES
============================================================ */
#clientes {
    background: var(--bg-secondary);
    padding: var(--section-py) 0;
}

.clientes-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 52px;
    line-height: 1.6;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cliente-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cliente-card:hover {
    border-color: var(--cyan-border);
    box-shadow: 0 4px 20px rgba(0, 170, 204, 0.14);
    transform: translateY(-3px);
}

.cliente-logo {
    max-width: 88%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

/* Ajuste para logos mais quadrados ou compactos que possuem muita margem interna nos arquivos (Camil e Hiter) */
.cliente-logo.lg {
    max-height: 100px;
    max-width: 105%;
    transform: scale(1.4);
}

/* Ajuste extra para a Camil que tem margens muito amplas no arquivo original */
.cliente-logo.camil-fix {
    max-height: 110px;
    max-width: 110%;
    transform: scale(1.7);
}

.cliente-card:hover .cliente-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
#depoimentos {
    background: var(--bg-primary);
    padding: var(--section-py) 0;
}

.depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 32px;
}

.depo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.depo-card:hover {
    border-color: var(--cyan-border);
    box-shadow: var(--shadow-md);
}

.depo-quote {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--cyan);
    opacity: 0.15;
    line-height: 0.6;
    margin-bottom: 20px;
}

.depo-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.91rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.depo-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.depo-avatar {
    width: 46px;
    height: 46px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
}

.depo-name {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.depo-role {
    font-size: 0.77rem;
    color: var(--text-muted);
}

.depo-note {
    text-align: center;
    font-style: italic;
    font-size: 0.87rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
============================================================ */
#faq {
    background: var(--bg-secondary);
    padding: var(--section-py) 0;
}

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-question.open {
    color: var(--cyan);
}

.faq-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
}

.faq-question.open .faq-icon {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================================
   CONTATO
============================================================ */
#contato {
    background: var(--bg-primary);
    padding: var(--section-py) 0;
}

.contato-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 52px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 64px;
    align-items: start;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    padding: 12px 16px;
    transition: var(--transition);
    outline: none;
    appearance: none;
}

/* Forçar fundo branco no preenchimento automático (Autofill) */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary);
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23475569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #fff;
    /* Garantir que o select também seja branco */
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #fff;
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.97rem;
    padding: 15px 28px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--cyan-border);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--cyan-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.info-label {
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-value a {
    color: var(--text-primary);
}

.info-value a:hover {
    color: var(--cyan);
}

.info-cta {
    margin-top: 8px;
}

.info-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
    background: var(--navy);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cyan-light);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item svg {
    color: var(--cyan-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.wa-float-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
    animation: wa-pulse 2.2s ease-in-out infinite;
    transition: var(--transition);
    position: relative;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes wa-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.60);
    }
}

.wa-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: var(--navy);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.wa-float-btn:hover .wa-tooltip {
    opacity: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-grid .sobre-pillars-col {
        order: -1;
    }

    .servicos-grid-new {
        grid-template-columns: 1fr;
    }

    .servico-img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .servicos-cta {
        position: static;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .depo-grid {
        grid-template-columns: 1fr 1fr;
    }

    #topbar .hide-mobile {
        display: none !important;
    }
}

/* ============================================================
   INTERMEDIATE DESKTOP / LAPTOP (1025px - 1280px)
============================================================ */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
        max-width: 1140px;
        padding: 0 32px;
    }

    .servicos-grid-new {
        gap: 20px;
    }

    .depo-grid,
    .clientes-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .hero-content {
        text-align: center;
        padding: 50px 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sobre-grid>div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sobre-grid .section-label,
    .sobre-grid .section-title,
    .sobre-grid .sobre-desc {
        text-align: center;
        width: 100%;
    }

    .sobre-grid .section-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-img-wrap img {
        height: 300px;
    }

    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .pillar-card {
        text-align: left;
    }

    .pillar-title,
    .pillar-desc {
        text-align: left;
    }

    .depo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .servico-card {
        text-align: left;
    }

    .servico-name,
    .servico-desc {
        text-align: left;
        min-height: auto;
    }

    .servico-content {
        align-items: flex-start;
    }

    .servico-lista {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        text-align: left;
        margin: 4px 0 0;
    }

    .servico-lista li {
        justify-content: flex-start;
        width: 100%;
    }

    #servicos .text-center,
    #clientes .text-center,
    #depoimentos .text-center,
    #faq .text-center {
        text-align: center;
        width: 100%;
    }

    .banner-flex {
        flex-direction: column;
        text-align: center;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-socials {
        display: flex;
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-py: 56px;
    }

    .hero-content {
        text-align: center;
        padding: 50px 15px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-desc {
        text-align: center;
    }

    .hero-h1 {
        font-size: clamp(28px, 9vw, 42px);
        line-height: 1.1;
    }

    .hero-badge {
        letter-spacing: 1.5px;
        padding: 5px 12px;
        margin-bottom: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-trust-item {
        justify-content: center;
    }

    .sobre-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .stat-item {
        border-left: none;
        border-top: 2px solid var(--cyan);
        padding-left: 0;
        padding-top: 10px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .clientes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .servico-card {
        padding-bottom: 10px;
    }
}

.skip-nav {
    position: absolute;
    left: -9999px;
    top: 4px;
    z-index: 9999;
    background: var(--cyan);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.skip-nav:focus {
    left: 4px;
}