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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #F5F7FB;
  color: #0D1B3E;
  overflow-x: hidden;
}

/* ── VARIABLES ── */
:root {
  --navy: #0B1E4A;
  --blue: #1550B8;
  --mid: #2272E8;
  --light: #5B9DF5;
  --ice: #EBF3FF;
  --white: #FFFFFF;
  --gold: #F0B429;
  --green: #1DB877;
  --gray: #F0F4FB;
  --text: #0D1B3E;
  --muted: #6B7A99;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray);
}

::-webkit-scrollbar-thumb {
  background: var(--mid);
  border-radius: 3px;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 30, 74, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-logo .logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.nav-logo .logo-text span {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-phone {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 100px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.nav-phone:hover {
  background: linear-gradient(135deg, #2be672, #159e8c);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.25); }
  50%      { box-shadow: 0 0 22px rgba(37, 211, 102, 0.45); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}

.nav-cta:hover {
  background: #e0a520 !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(34, 114, 232, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(11, 30, 74, 0.8) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 157, 245, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 157, 245, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 114, 232, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 184, 119, 0.08) 0%, transparent 70%);
  bottom: 100px;
  left: 50px;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-30px, 20px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(20px, -30px)
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-badge .dot {
  display: none;
}

.hero-badge span {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.0;
  margin-bottom: 16px;
}

.hero-title .line2 {
  color: var(--light);
}

.hero-title .line3 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6em;
  font-weight: 600;
  display: block;
  margin-top: 8px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #20e030;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(41, 240, 41, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-instagram {
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-instagram:hover {
  background: #e0a520;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.3);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}

.hero-stat-card:hover {
  transform: translateX(6px);
  border-color: rgba(91, 157, 245, 0.3);
}

.hero-stat-card .sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(34, 114, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.hero-stat-card .sc-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-stat-card .sc-num span {
  font-size: 20px;
  color: var(--light);
}

.hero-stat-card .sc-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.hero-stat-card.green .sc-icon {
  background: rgba(29, 184, 119, 0.2);
}

.hero-stat-card.gold .sc-icon {
  background: rgba(240, 180, 41, 0.2);
}

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
section {
  padding: 100px 32px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--mid);
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ══════════════════════════════════
   SOBRE
══════════════════════════════════ */
.sobre {
  background: white;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
}

.sobre-big-text {
  font-family: 'Syne', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  user-select: none;
  letter-spacing: -4px;
}

.sobre-badge-float {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--navy);
  border-radius: 14px;
  padding: 22px 28px;
  color: white;
}

.sobre-badge-float .sbf-num {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.sobre-badge-float .sbf-num span {
  color: var(--gold);
}

.sobre-badge-float .sbf-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.sobre-right .section-title {
  margin-bottom: 20px;
}

.sobre-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sobre-text strong {
  color: var(--navy);
  font-weight: 600;
}

.sobre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.pill {
  background: var(--ice);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(21, 80, 184, 0.15);
}

.sobre-highlight {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sobre-highlight .sh-icon {
  font-size: 28px;
}

.sobre-highlight .sh-text strong {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 700;
  margin-bottom: 3px;
}

.sobre-highlight .sh-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════
   SERVIÇOS
══════════════════════════════════ */
.servicos {
  background: var(--gray);
}

.servicos-header {
  text-align: center;
  margin-bottom: 60px;
}

.servicos-header .section-sub {
  margin: 0 auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(11, 30, 74, 0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 30, 74, 0.12);
}

.srv-icon {
  width: 60px;
  height: 60px;
  background: var(--ice);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}

.srv-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.srv-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.srv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.srv-tag::before {
  content: '→';
}

/* ══════════════════════════════════
   DIFERENCIAIS
══════════════════════════════════ */
.diferenciais {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(91, 157, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 157, 245, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.diferenciais .container {
  position: relative;
  z-index: 2;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diferenciais .section-title {
  color: white;
}

.diferenciais .section-kicker {
  color: var(--gold);
}

.diferenciais .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.dif-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.dif-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.dif-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(29, 184, 119, 0.15);
  border: 1px solid rgba(29, 184, 119, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.dif-item strong {
  display: block;
  color: white;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.dif-item p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  line-height: 1.6;
}

.dif-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dif-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.dif-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(91, 157, 245, 0.3);
}

.dif-stat .ds-num {
  font-family: 'Syne', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.dif-stat .ds-num span {
  color: var(--light);
  font-size: 28px;
}

.dif-stat .ds-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.dif-stat.highlight {
  background: rgba(240, 180, 41, 0.1);
  border-color: rgba(240, 180, 41, 0.25);
}

.dif-stat.highlight .ds-num {
  color: var(--gold);
}

/* ══════════════════════════════════
   CLIENTES
══════════════════════════════════ */
.clientes {
  background: white;
}

.clientes-header {
  margin-bottom: 56px;
}

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cliente-card {
  background: var(--gray);
  border: 1px solid rgba(11, 30, 74, 0.07);
  border-radius: 14px;
  padding: 28px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cliente-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.cliente-card:hover::after {
  transform: scaleX(1);
}

.cliente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 30, 74, 0.1);
  background: white;
}

.cc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.cc-segment {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cc-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cc-loc {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.cc-service {
  background: var(--ice);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.4;
}

/* ══════════════════════════════════
   COBERTURA
══════════════════════════════════ */
.cobertura {
  background: var(--gray);
  text-align: center;
}

.cobertura-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cobertura .section-kicker {
  justify-content: center;
  display: flex;
}

.cobertura .section-title {
  text-align: center;
}

.cobertura .section-sub {
  text-align: center;
  margin: 0 auto 48px;
}

.rs-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border-radius: 100px;
  padding: 18px 36px;
  margin-bottom: 48px;
}

.rs-badge .flag {
  font-size: 28px;
}

.rs-badge span {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.rs-badge .sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  display: block;
  font-family: 'Outfit', sans-serif;
}

.cidades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.cidade-chip {
  background: white;
  border: 1px solid rgba(11, 30, 74, 0.1);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

.cidade-chip:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(34, 114, 232, 0.2) 0%, transparent 70%);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner .section-kicker {
  justify-content: center;
  display: flex;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
}

.cta-title span {
  color: var(--gold);
}

.cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 60px 0 40px;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cta-contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.cci-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.cci-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cci-value {
  font-size: 15px;
  color: white;
  font-weight: 500;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: #060E20;
  padding: 36px 32px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-rs {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* ══════════════════════════════════
   MOBILE MENU TOGGLE
══════════════════════════════════ */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 101;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media(max-width: 900px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
  }

  .hero-right {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-sub {
    margin: 0 auto 44px;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
  }

  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dif-list {
    text-align: left;
  }

  .clientes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-contact-grid {
    grid-template-columns: 1fr;
  }

  .dif-right {
    grid-template-columns: 1fr 1fr;
  }

  /* Menu Mobile Overrides */
  .mobile-toggle {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
    padding: 12px 20px;
  }

  /* Sobre visual: centraliza e reduz badge flutuante */
  .sobre-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
  }

  .sobre-badge-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .sobre-big-text {
    font-size: 100px;
    text-align: center;
  }
}

@media(max-width: 600px) {

  /* ── Navbar ── */
  .nav-inner {
    padding: 0 16px;
  }

  .nav-logo .logo-text {
    font-size: 14px;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .hero-content {
    padding: 16px 16px 0;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(20px, 6.5vw, 42px);
    letter-spacing: -0.5px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .hero-badge span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-right {
    width: 100%;
    padding: 0 4px;
  }

  .hero-stat-card {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 20px 20px;
  }

  .hero-stat-card .sc-num {
    font-size: 28px;
  }

  /* ── Sections ── */
  section {
    padding: 56px 16px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section-sub {
    font-size: 15px;
  }

  /* ── Sobre ── */
  .sobre-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .sobre-big-text {
    font-size: 72px;
  }

  .sobre-text {
    font-size: 15px;
  }

  /* ── Serviços ── */
  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .srv-card {
    padding: 28px 20px;
  }

  /* ── Clientes ── */
  .clientes-grid {
    grid-template-columns: 1fr;
  }

  /* ── Diferenciais ── */
  .dif-right {
    grid-template-columns: 1fr 1fr;
  }

  .dif-stat .ds-num {
    font-size: 36px;
  }

  /* ── Cobertura ── */
  .rs-badge {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 8px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .rs-badge span {
    font-size: 18px;
  }

  /* ── CTA ── */
  .cta-title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .cta-sub {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-instagram {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 14px 24px;
  }

  .cta-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── Modal ── */
  .slider-container {
    height: 260px !important;
  }

  /* ── Footer ── */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ══════════════════════════════════
   GALERIA MODAL
══════════════════════════════════ */
.btn-gallery {
  margin-top: 14px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-gallery:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.modal {
  display: none;
  /* Escondido por padrão */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 30, 74, 0.95);
  /* Fundo escuro semi-transparente */
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex !important;
  opacity: 1;
}

.modal-content {
  position: relative;
  background-color: var(--white);
  margin: auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  color: var(--navy);
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--mid);
  text-decoration: none;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  /* Altura fixa ou responsiva */
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.slider-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(11, 30, 74, 0.4);
  border: none;
}

.slider-btn:hover {
  background-color: rgba(11, 30, 74, 0.8);
}

.next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-btn {
  left: 0;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: var(--muted);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s;
}

.dot.active,
.dot:hover {
  background-color: var(--mid);
  transform: scale(1.2);
}

/* @media responsividade para o modal */
@media (max-width: 768px) {
  .slider-container {
    height: 300px;
  }
}

/* ══════════════════════════════════
   ❄ TEMA INVERNO — EFEITOS FASE 2
══════════════════════════════════ */

/* ── 5. RESPIRAÇÃO GELADA NOS CARDS ── */
/* Cards "respiram" ar frio com um pulso sutil de glow */
.srv-card {
  animation: coldBreath 4s ease-in-out infinite;
}

.srv-card:nth-child(2) { animation-delay: -0.8s; }
.srv-card:nth-child(3) { animation-delay: -1.6s; }
.srv-card:nth-child(4) { animation-delay: -2.4s; }
.srv-card:nth-child(5) { animation-delay: -3.2s; }
.srv-card:nth-child(6) { animation-delay: -4.0s; }

@keyframes coldBreath {
  0%, 100% {
    box-shadow: 0 2px 12px rgba(11, 30, 74, 0.06);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(11, 30, 74, 0.08),
      0 0 30px rgba(168, 216, 234, 0.08),
      inset 0 0 20px rgba(168, 216, 234, 0.03);
  }
}

.cliente-card {
  animation: coldBreathClient 5s ease-in-out infinite;
}

.cliente-card:nth-child(2) { animation-delay: -1s; }
.cliente-card:nth-child(3) { animation-delay: -2s; }
.cliente-card:nth-child(4) { animation-delay: -3s; }
.cliente-card:nth-child(5) { animation-delay: -3.5s; }
.cliente-card:nth-child(6) { animation-delay: -4.2s; }

@keyframes coldBreathClient {
  0%, 100% {
    box-shadow: 0 1px 8px rgba(11, 30, 74, 0.04);
    border-color: rgba(11, 30, 74, 0.07);
  }
  50% {
    box-shadow:
      0 3px 16px rgba(11, 30, 74, 0.06),
      0 0 25px rgba(168, 216, 234, 0.06);
    border-color: rgba(168, 216, 234, 0.15);
  }
}

/* Hero stat cards também respiram */
.hero-stat-card {
  animation: coldBreathHero 5s ease-in-out infinite;
}

.hero-stat-card:nth-child(2) { animation-delay: -1.5s; }
.hero-stat-card:nth-child(3) { animation-delay: -3s; }

@keyframes coldBreathHero {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  50% {
    border-color: rgba(168, 216, 234, 0.2);
    box-shadow: 0 0 20px rgba(168, 216, 234, 0.06);
  }
}

/* Diferenciais stat cards */
.dif-stat {
  animation: coldBreathDif 4.5s ease-in-out infinite;
}

.dif-stat:nth-child(2) { animation-delay: -1.2s; }
.dif-stat:nth-child(3) { animation-delay: -2.4s; }
.dif-stat:nth-child(4) { animation-delay: -3.6s; }

@keyframes coldBreathDif {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }
  50% {
    border-color: rgba(168, 216, 234, 0.15);
    box-shadow: 0 0 18px rgba(168, 216, 234, 0.05);
  }
}

/* ── 6. HOVER CONGELANTE NOS BOTÕES ── */
/* Efeito de gelo se espalhando pelo botão ao hover */
.btn-primary,
.btn-outline,
.btn-instagram,
.nav-cta,
.btn-gallery {
  position: relative;
  overflow: hidden;
}

/* Camada de gelo que se expande do centro */
.btn-primary::before,
.btn-outline::before,
.btn-instagram::before,
.btn-gallery::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 216, 234, 0.35) 0%,
    rgba(200, 230, 245, 0.15) 40%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-instagram:hover::before,
.btn-gallery:hover::before {
  width: 300%;
  height: 300%;
}

/* Borda de gelo nos botões ao hover */
.btn-primary:hover {
  box-shadow:
    0 8px 24px rgba(41, 240, 41, 0.3),
    0 0 15px rgba(168, 216, 234, 0.2),
    inset 0 0 15px rgba(168, 216, 234, 0.1);
}

.btn-outline:hover {
  border-color: rgba(168, 216, 234, 0.6);
  box-shadow:
    0 0 15px rgba(168, 216, 234, 0.15),
    inset 0 0 12px rgba(168, 216, 234, 0.08);
}

.btn-instagram:hover {
  box-shadow:
    0 8px 24px rgba(240, 180, 41, 0.3),
    0 0 12px rgba(168, 216, 234, 0.15);
}

.btn-gallery:hover {
  box-shadow:
    0 4px 16px rgba(21, 80, 184, 0.3),
    0 0 10px rgba(168, 216, 234, 0.15);
}

/* nav-cta freeze effect */
.nav-cta {
  overflow: hidden !important;
}

.nav-cta::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  height: 0 !important;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 216, 234, 0.4) 0%,
    rgba(200, 230, 245, 0.2) 40%,
    transparent 70%
  ) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.5s ease, height 0.5s ease !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.nav-cta:hover::before {
  width: 300% !important;
  height: 300% !important;
}

.nav-cta:hover {
  box-shadow: 0 0 12px rgba(168, 216, 234, 0.2) !important;
}

/* ── 7. PARTÍCULAS DE GELO NO SCROLL ── */
#scroll-particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.scroll-ice-particle {
  position: absolute;
  pointer-events: none;
  color: rgba(168, 216, 234, 0.6);
  font-size: 14px;
  opacity: 0;
  user-select: none;
  text-shadow: 0 0 6px rgba(168, 216, 234, 0.4);
  animation: scrollParticleFade 1.2s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes scrollParticleFade {
  0% {
    opacity: 0.8;
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-40px) translateX(var(--drift-x, 10px)) scale(0.3);
  }
}

/* ── 8. CRISTAIS DE GELO APRIMORADOS ── */
/* Cristais em seções escuras (diferenciais, CTA) */
.diferenciais,
.cta-section {
  position: relative;
  overflow: hidden;
}

.ice-crystal-dark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  color: rgba(168, 216, 234, 1);
  font-size: 100px;
  user-select: none;
  filter: blur(1.5px);
  animation: crystalFloatDark 14s ease-in-out infinite;
}

.ice-crystal-dark:nth-child(odd) {
  animation-direction: reverse;
}

@keyframes crystalFloatDark {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50%      { transform: translateY(-15px) rotate(12deg) scale(1.05); }
}

/* Cristais com brilho pulsante */
.ice-crystal-glow {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: rgba(168, 216, 234, 0.5);
  font-size: 30px;
  user-select: none;
  opacity: 0;
  animation: crystalGlowPulse 6s ease-in-out infinite;
}

@keyframes crystalGlowPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 0.15;
    transform: scale(1.1) rotate(15deg);
    text-shadow: 0 0 15px rgba(168, 216, 234, 0.5);
  }
}