/* ============================================================
   ALLTECH — Sistema de Design Principal
   Tecnologia de Resultados · 2025
   Mobile-First · GSAP Animations · Premium UI
   ============================================================ */

/* ── 1. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1A1A2E;
  overflow-x: hidden;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── 2. CSS CUSTOM PROPERTIES ── */
:root {
  --navy:       #002B49;
  --navy-deep:  #001C30;
  --cyan:       #00A4CC;
  --cyan-light: #33C0E0;
  --cyan-glow:  rgba(0,164,204,0.2);
  --dark:       #060B17;
  --dark-card:  #0D1525;
  --white:      #FFFFFF;
  --off-white:  #F4F7FB;
  --gray-100:   #E8EDF3;
  --gray-400:   #8B98A8;
  --gray-600:   #4A5568;
  --text:       #1A1A2E;
  --border:     rgba(255,255,255,0.08);
  --border-light: rgba(0,43,73,0.12);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,43,73,0.08);
  --shadow-md:  0 8px 32px rgba(0,43,73,0.12);
  --shadow-lg:  0 20px 60px rgba(0,43,73,0.18);
  --shadow-cyan: 0 0 40px rgba(0,164,204,0.3);

  --nav-h:      72px;
  --section-pad: 5rem 1.25rem;
  --max-w:      1200px;
}

/* ── 3. TYPOGRAPHY ── */
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }
h1, h2, h3 { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 700; 
  line-height: 1.15; 
  letter-spacing: -0.02em; 
  max-width: 1000px;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p  { font-size: clamp(.95rem, 1.2vw, 1.05rem); color: var(--gray-600); line-height: 1.6; }

/* ── 4. UTILITY CLASSES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.text-cyan  { color: var(--cyan); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-400); }
.bg-dark    { background: var(--dark); }
.bg-navy    { background: var(--navy); }
.bg-off     { background: var(--off-white); }

.section-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--cyan);
  border-left: 3px solid var(--cyan); padding-left: .75rem;
  margin-bottom: .75rem;
}
.section-tag.dark { color: var(--cyan); }
.section-tag.light { color: var(--navy); border-color: var(--navy); }

.section-header { margin-bottom: 3rem; }
.section-header p { max-width: 560px; margin-top: .75rem; }

/* ── 5. ANIMATION STATES ── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal.active { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-left.active { opacity: 1; transform: translateX(0); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-right.active { opacity: 1; transform: translateX(0); transition: opacity .7s ease, transform .7s ease; }

/* ── 6. PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  z-index: 9999; transition: width .1s linear;
}

/* ── 7. NAVIGATION ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 1.25rem 1.25rem;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
#navbar.scrolled {
  background: rgba(0, 27, 48, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-logo picture { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: white; letter-spacing: normal;
}
.nav-logo-tagline { font-size: .62rem; color: rgba(255,255,255,.4); letter-spacing: .05em; text-transform: uppercase; display: block; line-height: 1; margin-top: 2px; }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center; gap: .75rem;
}
.nav-links a {
  color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500;
  padding: .4rem .75rem; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.06); }
.nav-dropdown { position: relative; padding-bottom: 1.25rem; margin-bottom: -1.25rem; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% - 0.75rem); left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .5rem; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
/* Invisible bridge to keep menu open */
.nav-dropdown::after {
  content: '';
  position: absolute; top: 100%; left: 0; width: 100%; height: 1.5rem;
  display: block;
}
.nav-dropdown-menu a {
  display: block; padding: .6rem 1rem; border-radius: 8px;
  color: rgba(255,255,255,.7); font-size: .85rem;
  transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.06); color: white; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }

.nav-cta {
  display: none;
  background: var(--cyan);
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: .6rem 1.5rem !important;
  border-radius: 100px !important;
  transition: transform .3s, box-shadow .3s, filter .3s !important;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 164, 204, 0.4);
}
.nav-cta:hover { transform: translateY(-2px) scale(1.05) !important; box-shadow: 0 0 25px rgba(0, 164, 204, 0.7) !important; filter: brightness(1.1); }

/* Hamburger */
.nav-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav-hamburger span {
  display: block; height: 2px; background: white; border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 999; padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; color: rgba(255,255,255,.8); font-size: 1.1rem; font-weight: 600;
  padding: 1rem; border-radius: var(--radius-md); border: 1px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.06); border-color: var(--border); color: white; }
.mobile-menu .mobile-cta {
  background: var(--cyan); color: var(--navy-deep) !important;
  border-color: transparent; text-align: center;
  margin-top: 1rem; font-weight: 700;
}
.mobile-sub-title { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); padding: 1rem 1rem .5rem; }

/* ── 8. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; border: none;
  padding: .8rem 2rem; border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--cyan); color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(0,164,204,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,164,204,0.5); }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-navy {
  background: var(--navy); color: white;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }

/* ── 9. HERO SECTION ── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 3rem) 1.25rem 4rem;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 60% 20%, rgba(0,164,204,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,43,73,0.5) 0%, transparent 60%),
    var(--dark);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,164,204,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,164,204,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative; width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,164,204,0.1); border: 1px solid rgba(0,164,204,0.3);
  padding: .45rem 1rem; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--cyan); text-transform: uppercase; width: fit-content;
  margin-bottom: 1.25rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: dot-pulse 1.8s ease infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.5); }
}
.hero-content h1 { color: white; margin-bottom: 1.25rem; }
.hero-content h1 .accent {
  background: linear-gradient(135deg, var(--cyan), #7FD8EE);
  -webkit-background-clip: text; 
  background-clip: text; /* Propriedade padrão */
  -webkit-text-fill-color: transparent;
}
.hero-content p { color: rgba(255,255,255,.55); font-size: clamp(.95rem, 1.8vw, 1.15rem); max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat .val {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--cyan); line-height: 1; letter-spacing: -0.02em;
}
.hero-stat .lbl { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .02em; text-transform: uppercase; margin-top: .2rem; }

/* Nano Banana 3D placeholder */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  perspective: 1000px;
}
.hero-img-3d {
  width: 100%; max-width: 580px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,164,204,0.3));
  border-radius: var(--radius-lg);
  transform-style: preserve-3d;
}

/* ── 10. AUTHORITY STRIP ── */
#authority {
  background: var(--navy);
  padding: 4rem 1.25rem;
}
.authority-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.authority-item { text-align: center; }
.authority-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; color: var(--cyan); line-height: 1; letter-spacing: -0.02em;
}
.authority-num sup { font-size: 50%; }
.authority-lbl { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .02em; text-transform: uppercase; margin-top: .35rem; }

/* ── 11. SOLUTIONS SECTION ── */
#solucoes {
  padding: var(--section-pad);
  background: var(--off-white);
}
.solucoes-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem; margin-top: 0;
}
.sol-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .4s, border-color .4s, background .4s;
  position: relative; overflow: hidden;
}
.sol-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,164,204,0.1) 0%, transparent 100%);
  opacity: 0; transition: opacity .4s;
}
.sol-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), var(--shadow-cyan); 
  border-color: rgba(0,164,204,.4);
  background: rgba(255, 255, 255, 0.08);
}
.sol-card:hover::before { opacity: 1; }
.sol-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,43,73,.1), rgba(0,164,204,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  border: 1px solid rgba(0,43,73,.08);
}
.sol-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.25rem; }
.sol-card .sol-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--cyan); background: rgba(0,164,204,.08);
  border: 1px solid rgba(0,164,204,.2);
  padding: .2rem .6rem; border-radius: 100px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.sol-card p { margin-bottom: 1.5rem; font-size: .9rem; }
.sol-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--cyan); font-weight: 700; font-size: .9rem;
  transition: gap .2s;
}
.sol-link:hover { gap: .7rem; }
.sol-link svg { width: 16px; transition: transform .2s; }
.sol-link:hover svg { transform: translateX(3px); }

/* ── 12. SEGMENTS SECTION ── */
#segmentos {
  padding: var(--section-pad);
  background: var(--dark);
}
#segmentos .section-header h2, #segmentos .section-header p { color: white; }
#segmentos .section-header p { color: rgba(255,255,255,.5); }
.seg-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.seg-card {
  background: var(--dark-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .75rem;
  transition: transform .3s, border-color .3s;
}
.seg-card:hover { transform: translateY(-4px); border-color: rgba(0,164,204,.3); }
.seg-icon { font-size: 2.2rem; }
.seg-name { font-size: .9rem; font-weight: 700; color: white; }
.seg-desc { font-size: .78rem; color: var(--gray-400); }

/* ── 13. WHY ALLTECH ── */
#diferenciais { padding: var(--section-pad); background: white; }
.dif-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
}
.dif-card {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: border-color .3s, box-shadow .3s;
}
.dif-card:hover { border-color: rgba(0,164,204,.2); box-shadow: var(--shadow-md); }
.dif-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.5rem; font-weight: 700;
  color: rgba(0,164,204,.2); line-height: 1; flex-shrink: 0; min-width: 60px; letter-spacing: -0.02em;
}
.dif-content h3 { color: var(--navy); margin-bottom: .5rem; }

/* ── 25. UTILITY GLASS CLASSES ── */
.glass-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: transform .4s, box-shadow .4s, background .4s !important;
}
.glass-card:hover { 
  background: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.glass-visual {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}

/* ── 14. TESTIMONIALS ── */
#depoimentos {
  padding: var(--section-pad);
  background: var(--off-white);
}
.depo-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.25rem;
}
.depo-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.depo-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-lg); 
  background: rgba(255, 255, 255, 0.05);
}
.depo-quote { font-size: 2.5rem; color: var(--cyan); line-height: 1; margin-bottom: .5rem; }
.depo-text { font-size: .95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: .75rem; }
.depo-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: white; font-size: .9rem;
  flex-shrink: 0;
}
.depo-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.depo-role { font-size: .78rem; color: var(--gray-400); }
.depo-stars { color: #F59E0B; font-size: .9rem; margin-bottom: .25rem; }

/* ── 15. CTA BANNER ── */
#cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #002035 50%, var(--navy) 100%);
  padding: 5rem 1.25rem; text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,164,204,.15), transparent);
}
#cta-banner .container { position: relative; }
#cta-banner h2 { color: white; margin-bottom: 1rem; }
#cta-banner p { color: rgba(255,255,255,.55); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 16. FOOTER ── */
#footer {
  background: var(--dark); padding: 4rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--gray-400); font-size: .88rem; margin-top: .75rem; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo picture { display: flex; align-items: center; flex-shrink: 0; }
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
/* Grupo de texto do footer — mesmo padrão do nav */
.footer-logo-group { display: flex; flex-direction: column; }
.footer-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  letter-spacing: normal;
  white-space: nowrap;
  line-height: 1.2;
}
.footer-logo-tagline {
  font-size: .62rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: .9rem;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--cyan); color: var(--navy-deep); border-color: var(--cyan); }
.footer-col-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: white; font-size: .9rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: var(--gray-400); font-size: .85rem; transition: color .2s; }
.footer-col ul a:hover { color: white; }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .75rem; font-size: .85rem; color: var(--gray-400); }
.footer-contact-item span:first-child { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; font-size: .78rem; color: var(--gray-400);
}
.footer-bottom a { color: var(--gray-400); transition: color .2s; }
.footer-bottom a:hover { color: white; }

/* ── 17. PAGE HERO (sub-pages) ── */
.page-hero {
  min-height: 55vh; background: var(--dark);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 5rem) 1.25rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,164,204,0.1), transparent);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.55); max-width: 580px; font-size: 1.1rem; }
.page-hero .breadcrumb { font-size: .78rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: var(--cyan); }
.page-hero .breadcrumb span { margin: 0 .4rem; }

/* ── 18. PRODUCT PAGE FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 0;
}
.feat-card {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border-light);
  transition: border-color .3s;
}
.feat-card:hover { border-color: rgba(0,164,204,.2); }
.feat-icon { font-size: 2rem; margin-bottom: 1rem; }
.feat-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.1rem; }

/* ── 19. CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-form {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none; /* Propriedade padrão */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); background: white; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; background: white; border-radius: var(--radius-md);
  border: 1px solid var(--border-light); margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(0,164,204,.1); border: 1px solid rgba(0,164,204,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--cyan);
}
.contact-info-item h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.contact-info-item p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* ── 20. CASES PAGE ── */
.cases-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem;
}
.case-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-card-header {
  background: linear-gradient(135deg, var(--navy), rgba(0,43,73,.8));
  padding: 2rem; display: flex; align-items: center; gap: 1rem;
}
.case-logo-placeholder {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; color: white; font-size: 1.2rem;
}
.case-company { color: white; font-size: 1.1rem; font-weight: 700; }
.case-segment { color: rgba(255,255,255,.55); font-size: .8rem; }
.case-card-body { padding: 2rem; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.case-metric .val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--cyan); line-height: 1; letter-spacing: -0.02em; }
.case-metric .lbl { font-size: .72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .02em; }

/* ── 20b. LEGAL PAGES (privacidade, termos) ── */
.legal-content h2 {
  color: white;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-content p,
.legal-content li {
  color: var(--gray-400);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: .5rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content p.lead {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 2rem;
}
.legal-content strong { color: white; }

/* ── 21. QUEM SOMOS ── */
.timeline-wrap { margin-top: 3rem; }
.tl-item {
  display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative;
}
.tl-item::before {
  content: ''; position: absolute; left: 20px; top: 44px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--cyan), transparent);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .8rem; color: var(--cyan);
  z-index: 1; letter-spacing: -0.02em;
}
.tl-content { flex: 1; }
.tl-year { font-size: .72rem; color: var(--cyan); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; }
.tl-content h3 { color: var(--navy); font-size: 1.05rem; margin: .2rem 0 .4rem; }
.tl-content p { font-size: .88rem; }

/* ── 22. 404 PAGE ── */
.notfound {
  min-height: 100vh; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.notfound h1 {
  font-size: clamp(6rem, 20vw, 12rem); color: var(--cyan);
  opacity: .15; line-height: 1;
}
.notfound h2 { color: white; font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; }
.notfound p { color: rgba(255,255,255,.5); margin-bottom: 2rem; }

/* ── 23. BACK TO TOP ── */
#back-top {
  position: fixed; bottom: 2rem; left: 1.5rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan); border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-size: 1.1rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s, box-shadow .2s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,164,204,.4);
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-top:hover { box-shadow: 0 8px 28px rgba(0,164,204,.6); transform: translateY(-2px); }

/* ── 24. COOKIE TOAST ── */
#cookie-toast {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 8000;
  background: var(--navy-deep); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transform: translateY(100px); opacity: 0;
  transition: transform .4s, opacity .4s;
}
#cookie-toast.show { transform: translateY(0); opacity: 1; }
#cookie-toast p { color: rgba(255,255,255,.7); font-size: .82rem; flex: 1 1 200px; margin: 0; }
#cookie-toast .btn-sm { flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — md: 640px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 640px) {
  .authority-inner { grid-template-columns: repeat(4, 1fr); }
  .solucoes-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: 1fr; }
  #cookie-toast { left: 2rem; right: auto; max-width: 520px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — lg: 1024px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1024px) {
  :root { --section-pad: 7rem 1.25rem; }

  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
  /* Desktop: esconde mobile-menu apenas quando fechado */
  .mobile-menu:not(.open) { display: none !important; }
  /* Garante que quando aberto sempre aparece, mesmo no desktop */
  .mobile-menu.open { display: flex !important; transform: translateX(0) !important; }

  .hero-inner { grid-template-columns: 55% 1fr; gap: 4rem; }
  .hero-stats { gap: 2.5rem; }

  .solucoes-grid { grid-template-columns: repeat(4, 1fr); }
  .seg-grid { grid-template-columns: repeat(4, 1fr); }
  .depo-grid { grid-template-columns: repeat(3, 1fr); }
  .dif-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }

  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* Screen reader only — visualmente oculto mas lido por leitores de tela */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link — pular para o conteúdo principal */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  z-index: 99999;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Focus visível para navegação por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ── 26. CLASSES UTILITÁRIAS — substitui inline styles ──
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Seções padrão */
.section-dark       { padding: var(--section-pad); background: var(--dark); }
.section-navy       { padding: var(--section-pad); background: var(--navy); }
.section-navy-deep  { padding: var(--section-pad); background: var(--navy-deep); }
.section-white      { padding: var(--section-pad); background: #ffffff; }
.section-off        { padding: var(--section-pad); background: var(--off-white); }

/* Seções compactas (sem padding lateral extra) */
.section-dark-sm    { padding: 5rem 1.25rem; background: var(--dark); }
.section-navy-sm    { padding: 5rem 1.25rem; background: var(--navy); }

/* Grid de 2 colunas com gap padrão — responsivo */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-2-col { grid-template-columns: 1fr 1fr; }
}

/* Grid de 2 colunas para cards de expertise */
.grid-2-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Grid de 4 colunas para cards de expertise */
.grid-4-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .grid-4-sm { grid-template-columns: repeat(4, 1fr); }
}

/* Flex utilitários */
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-gap-6    { display: flex; gap: 1.5rem; }
.flex-col      { display: flex; flex-direction: column; }

/* Imagem responsiva padrão */
.img-responsive { width: 100%; height: auto; display: block; }

/* Texto utilitários */
.text-sm-muted  { font-size: .8rem; color: var(--gray-400); }
.text-sm-white  { font-size: .8rem; color: rgba(255,255,255,.7); }
.label-white    { color: white; opacity: 0.8; }
.font-syne      { font-family: 'Plus Jakarta Sans', sans-serif; }

/* Espaçamentos */
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }

/* Card de glass com padding padrão */
.glass-card-padded {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

/* Lista de features com ícone */
.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  color: var(--gray-400);
}
.feature-list li {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .92rem;
}
.feature-list li .icon-cyan { color: var(--cyan); flex-shrink: 0; }

/* Seção hero de produto — wrapper de imagem */
.product-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 40%);
  pointer-events: none;
}

/* Breadcrumb link */
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { margin: 0 .4rem; color: var(--gray-400); }

/* Disabled link (Em Breve) */
.link-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/* Centralizar section-header */
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── Formulário escuro (página de contato) ── */
.label-white {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .4rem;
}
.input-dark {
  background: rgba(255,255,255,0.05) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.input-dark::placeholder { color: rgba(255,255,255,.35); }
.input-dark option { background: var(--navy-deep); color: white; }

/* ── Seção de contato com fundo escuro ── */
.contact-section-dark {
  padding: 3rem 1.25rem 5rem;
  background: var(--dark);
  position: relative;
  z-index: 5;
}

/* ── Bloco de info de contato escuro ── */
.contact-info-dark {
  color: white;
  margin-bottom: 1.5rem;
}
.contact-info-dark h4 { color: white; }
.contact-info-dark p  { color: var(--gray-400); }

/* ── Sede box (contato) ── */
.sede-box {
  padding: 1.5rem;
  background: var(--navy-deep);
}

/* ── Trabalhe Conosco — Vagas ── */
.vagas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .vagas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vagas-grid { grid-template-columns: repeat(3, 1fr); } }

.vaga-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.vaga-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.vaga-area {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(0,164,204,.1); border: 1px solid rgba(0,164,204,.2);
  padding: .2rem .6rem; border-radius: 100px;
}
.vaga-tipo {
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--gray-400);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: .2rem .6rem; border-radius: 100px;
}
.vaga-card h3 { margin-bottom: .75rem; font-size: 1.1rem; }
.vaga-card p  { font-size: .88rem; line-height: 1.6; flex: 1; }

.candidatura-box {
  background: rgba(0,43,73,.4);
  border: 1px solid rgba(0,164,204,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}
.candidatura-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.candidatura-inner h3 { margin-bottom: .5rem; }

/* ── Blog — Cards de artigos ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan); background: rgba(0,164,204,.08);
  border: 1px solid rgba(0,164,204,.2);
  padding: .2rem .6rem; border-radius: 100px;
  margin-bottom: .75rem;
}
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.3; }
.blog-card-body p  { font-size: .88rem; color: var(--gray-600); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; color: var(--gray-400);
  padding-top: 1rem; border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.blog-card-date { display: flex; align-items: center; gap: .35rem; }
.blog-read-link {
  color: var(--cyan); font-weight: 700; font-size: .82rem;
  display: inline-flex; align-items: center; gap: .3rem;
  transition: gap .2s;
}
.blog-read-link:hover { gap: .5rem; }

/* Blog — placeholder newsletter */
.blog-newsletter {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.blog-newsletter h3 { color: white; margin-bottom: .75rem; }
.blog-newsletter p  { color: rgba(255,255,255,.6); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex; gap: .75rem; flex-wrap: wrap;
  justify-content: center; max-width: 480px; margin: 0 auto;
}
.newsletter-form input {
  flex: 1 1 220px; padding: .8rem 1.25rem;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 100px; background: rgba(255,255,255,.07);
  color: white; font-family: inherit; font-size: .9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--cyan); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ── 27. SEÇÃO SERVIÇOS ──
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#servicos {
  padding: var(--section-pad);
  background: white;
}
#servicos .section-header h2 { color: var(--navy); }
#servicos .section-header p  { color: var(--gray-600); }

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .servicos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .servicos-grid { grid-template-columns: repeat(3, 1fr); } }

.servico-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.servico-card:hover {
  border-color: rgba(0,164,204,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.servico-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,43,73,.06), rgba(0,164,204,.12));
  border: 1px solid rgba(0,164,204,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.servico-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0;
}
.servico-card p {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.servico-link {
  color: var(--cyan);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s;
  margin-top: auto;
}
.servico-link:hover { gap: .5rem; }

/* Card CTA — destaque especial */
.servico-card-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: transparent;
}
.servico-card-cta h3 { color: white; }
.servico-card-cta p  { color: rgba(255,255,255,.65); }
.servico-card-cta:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 40px rgba(0,43,73,.3);
}

/* Adicionar Serviços no navbar mobile */
.mobile-menu a[href="#servicos"] { color: rgba(255,255,255,.8); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ── 28. WHATSAPP FLUTUANTE ──
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;   /* acima do back-top */
  right: 1.5rem;
  z-index: 500;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
/* Pulso de atenção */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
/* No desktop, esconde o WhatsApp flutuante (já tem o CTA no navbar) */
@media (min-width: 1024px) {
  .whatsapp-float { display: none; }
}

/* ── 29. MAPA GOOGLE MAPS (contato) ── */
.mapa-wrapper {
  position: relative;
  overflow: hidden;
  line-height: 0; /* remove gap abaixo do iframe */
}
.mapa-wrapper iframe {
  filter: grayscale(20%) contrast(1.05);
  transition: filter .3s;
}
.mapa-wrapper:hover iframe {
  filter: grayscale(0%) contrast(1);
}
.sede-box-footer {
  display: flex;
  align-items: center;
  padding: .85rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mapa-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s, opacity .2s;
}
.mapa-link:hover {
  gap: .6rem;
  opacity: .85;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ── 30. BOTÕES FLUTUANTES DE CONTATO ──
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Container principal */
.float-contact {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 600;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: .75rem;
}

/* Botão principal — toggle */
.float-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cyan);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,164,204,.45);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, background .3s;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.float-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,164,204,.6);
}
.float-toggle svg {
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.float-contact.open .float-toggle {
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0,27,48,.5);
}
.float-contact.open .float-toggle svg {
  transform: rotate(45deg);
}

/* Grupo de botões filhos */
.float-items {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: .65rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  pointer-events: none;
}
.float-contact.open .float-items {
  max-height: 300px;
  opacity: 1;
  pointer-events: all;
}

/* Cada botão filho */
.float-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  font-family: inherit;
}
.float-btn-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,.25);
  transition: transform .25s, box-shadow .25s;
  flex-shrink: 0;
}
.float-btn:hover .float-btn-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.float-btn-label {
  background: var(--navy-deep);
  color: white;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
}
.float-contact.open .float-btn-label {
  opacity: 1;
  transform: translateX(0);
}
/* Delay escalonado nos labels */
.float-contact.open .float-items .float-btn:nth-child(1) .float-btn-label { transition-delay: .05s; }
.float-contact.open .float-items .float-btn:nth-child(2) .float-btn-label { transition-delay: .1s; }
.float-contact.open .float-items .float-btn:nth-child(3) .float-btn-label { transition-delay: .15s; }

/* Cores dos ícones */
.float-btn-wa    .float-btn-icon { background: #25D366; color: white; }
.float-btn-ig    .float-btn-icon { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.float-btn-email .float-btn-icon { background: var(--navy); color: var(--cyan); border: 1.5px solid rgba(0,164,204,.3); }

/* Pulso no toggle quando fechado */
.float-toggle::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0,164,204,.35);
  animation: floatPulse 2.8s ease infinite;
}
.float-contact.open .float-toggle::before { display: none; }
@keyframes floatPulse {
  0%   { transform: scale(1);   opacity: 1; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── MODAL DE EMAIL ── */
.email-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.email-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.email-modal {
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.email-modal-overlay.open .email-modal {
  transform: translateY(0) scale(1);
}
.email-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.email-modal-header h3 {
  color: white;
  font-size: 1.15rem;
  margin: 0;
}
.email-modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: background .2s, color .2s;
}
.email-modal-close:hover { background: rgba(255,255,255,.12); color: white; }

.email-modal .form-group { margin-bottom: 1rem; }
.email-modal .label-white { color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600; display: block; margin-bottom: .35rem; }
.email-modal .input-dark {
  width: 100%; padding: .7rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: white; font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.email-modal .input-dark:focus { border-color: var(--cyan); }
.email-modal .input-dark::placeholder { color: rgba(255,255,255,.3); }
.email-modal textarea.input-dark { resize: vertical; min-height: 100px; }

.email-modal-status {
  font-size: .85rem;
  text-align: center;
  margin-top: .75rem;
  min-height: 1.2rem;
  font-weight: 600;
}
.email-modal-status.success { color: #22C55E; }
.email-modal-status.error   { color: #EF4444; }

/* Remover o whatsapp-float antigo (substituído pelo sistema unificado) */
.whatsapp-float { display: none !important; }

/* ── 26. SUMÉRIOS BARBER — Estilos específicos da página ── */
/* Extraído de sumerios-barber.html em 2026-05-26           */

/* Variáveis locais */
.barber-hero,
.barber-section,
.barber-cta {
  --accent: #00A4CC;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --transition: all 0.6s var(--ease);
}

/* --- HERO --- */
.barber-hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h, 72px);
  padding-bottom: 4rem;
}
.barber-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-deep) 100%);
}
.barber-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(6,11,23,0.3), rgba(6,11,23,0.85));
}
.barber-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.barber-hero-content h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: white;
}
.barber-hero-content h1 span {
  font-style: italic;
  font-weight: 300;
  color: var(--cyan);
}
.barber-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

/* --- BOTÕES HERO BARBER --- */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--cyan);
  color: var(--navy-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  border-radius: 100px;
  white-space: nowrap;
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,164,204,0.4);
}
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  border-radius: 100px;
  white-space: nowrap;
}
.btn-glass:hover {
  border-color: var(--cyan);
  background: rgba(0,164,204,0.1);
}

/* --- SEÇÕES BARBER --- */
.barber-section { padding: 7rem 0; }
.barber-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.barber-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 1rem;
}
.barber-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 3rem;
  color: white;
  line-height: 1.15;
}

/* --- BENTO GRID --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.25rem;
}
.bento-item {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  border: 1px solid var(--border);
}
.bento-item:hover { transform: translateY(-6px); border-color: var(--cyan); }
.bento-item.large { grid-column: span 2; }
.bento-item.tall  { grid-row: span 2; }
.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.item-overlay h3 { color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.4rem; margin-bottom: 0.4rem; }
.item-overlay p  { color: var(--gray-400); font-size: 0.88rem; }
.item-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.item-content .icon { font-size: 2.5rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--cyan); opacity: 0.3; margin-bottom: auto; }
.item-content h3   { color: white; font-size: 1.1rem; margin-bottom: 0.75rem; }
.item-content p    { color: var(--gray-400); font-size: 0.88rem; line-height: 1.6; }

/* --- SOLUTIONS GRID BARBER --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.solution-card {
  background: var(--dark-card);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-lg);
}
.solution-card:hover { border-color: var(--cyan); transform: translateY(-8px); }
.solution-card .sol-icon { font-size: 2.2rem; margin-bottom: 1.5rem; }
.solution-card h3 { color: white; font-size: 1.1rem; margin-bottom: 0.75rem; }
.solution-card p  { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 1.5rem; }
.sol-badge {
  font-size: 0.62rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 0.4rem 0.9rem;
  margin-top: auto;
  border-radius: 100px;
}

/* --- TECH ROW --- */
.tech-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.tech-box h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--cyan); }
.tech-box p  { font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; }

/* --- CTA BARBER --- */
.barber-cta {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}
.barber-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-deep) 100%);
  z-index: 0;
}
.barber-cta .barber-container { position: relative; z-index: 1; }
.cta-box {
  padding: 3.5rem 2.5rem;
  max-width: 760px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.cta-box h2 { color: white; }
.cta-box p  { color: rgba(255,255,255,0.6); margin-top: 0.75rem; }

/* ── BARBER RESPONSIVE — Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .bento-item.large { grid-column: span 2; }
  .bento-item.tall  { grid-row: span 1; height: 240px; }
}

/* ── BARBER RESPONSIVE — Mobile (max 768px) ── */
@media (max-width: 768px) {
  .barber-hero {
    padding-top: calc(var(--nav-h, 72px) + 1.5rem);
    padding-bottom: 3rem;
    min-height: 100svh;
  }
  .barber-hero-content { padding: 1.5rem 1.25rem; }
  .barber-hero-content h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-bottom: 1rem; }
  .barber-hero-content p  { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.75rem; padding: 0 0.5rem; }
  .btn-accent,
  .btn-glass { width: 100%; text-align: center; padding: 1rem 1.5rem; font-size: 0.82rem; }
  .barber-section { padding: 4rem 0; }
  .barber-title   { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 2rem; }
  .solutions-grid { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
  .solution-card  { padding: 2rem 1.5rem; }
  .tech-row { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 2rem; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 1rem; }
  .bento-item,
  .bento-item.large,
  .bento-item.tall { grid-column: span 1; grid-row: span 1; min-height: 220px; }
  .barber-cta { min-height: auto; padding: 4rem 1.25rem; }
  .cta-box    { padding: 2rem 1.5rem; }
}

/* ── BARBER RESPONSIVE — Small Mobile (max 480px) ── */
@media (max-width: 480px) {
  .barber-hero-content h1 { font-size: clamp(1.5rem, 9vw, 2rem); }
  .barber-container { padding: 0 1rem; }
}
