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

:root {
  --blue: #1B4BAB;
  --blue-light: #2E6EC7;
  --blue-dark: #0D2960;
  --blue-glow: rgba(27,75,171,0.6);
  --red: #C41E3A;
  --white: #FFFFFF;
  --gray-50: #F4F7FB;
  --gray-100: #E8EDF5;
  --gray-400: #9AAABB;
  --gray-500: #6B7A90;
  --gray-700: #3D4A5C;
  --text: #1A2332;
  --green-wa: #25D366;
  --green-wa-dark: #1DA851;
  --green-glow: rgba(37,211,102,0.55);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 28px rgba(27,75,171,0.10);
  --shadow-md: 0 10px 50px rgba(27,75,171,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(145deg, var(--blue-dark) 0%, #1a3a8f 50%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }

.loader__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.l-orb-1 { width: 500px; height: 500px; background: rgba(196,30,58,0.2); top: -180px; right: -120px; }
.l-orb-2 { width: 300px; height: 300px; background: rgba(46,110,199,0.25); bottom: -80px; left: -60px; animation-delay: -3s; }

.loader__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader__logo {
  height: 130px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  transform-origin: center center;
  animation: loader-logo-breathe 1.5s ease-in-out infinite;
}
@keyframes loader-logo-breathe {
  0%, 100% { filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)) drop-shadow(0 0 0px rgba(126,184,255,0)); }
  50%       { filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4)) drop-shadow(0 0 30px rgba(126,184,255,0.4)); }
}

.loader__bar-track {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-light), #7EB8FF, var(--red), #7EB8FF);
  background-size: 300% 100%;
  border-radius: 4px;
  animation: gradient-shift 1.8s linear infinite;
  box-shadow: 0 0 12px rgba(46,110,199,0.8);
  transition: width 0.05s linear;
}

.loader__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: label-pulse 1.5s ease-in-out infinite;
}
@keyframes label-pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.8; }
}

/* Header logo hidden until loader finishes */
.header__logo img { opacity: 0; transition: opacity 0.25s ease; }
.header__logo img.visible { opacity: 1; }

/* ===== LOCATION ICON ===== */
.loc-pin-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 18px;
  height: 22px;
  flex-shrink: 0;
}

.loc-pin {
  width: 18px;
  height: 22px;
  display: block;
  animation: pin-bounce 2.5s cubic-bezier(0.36,0.07,0.19,0.97) infinite;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
@keyframes pin-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  10%       { transform: translateY(-5px) scale(1.05); }
  20%       { transform: translateY(0) scale(1); }
  30%       { transform: translateY(-2px) scale(1.02); }
  40%       { transform: translateY(0) scale(1); }
}

.loc-pin-ring {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: pin-shadow-pulse 2.5s ease-in-out infinite;
}
@keyframes pin-shadow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  10%       { transform: translateX(-50%) scale(0.6); opacity: 0.15; }
  20%       { transform: translateX(-50%) scale(1); opacity: 0.3; }
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,75,171,0.07) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--blue-light));
  background-size: 200% 100%;
  animation: gradient-shift 3s linear infinite;
  z-index: 9998;
  transition: width 0.1s;
  box-shadow: 0 0 10px rgba(27,75,171,0.6);
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

/* Shimmer sweep on all buttons */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: skewX(-20deg);
  animation: btn-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple-effect 0.75s linear;
  pointer-events: none;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
}

@keyframes btn-shimmer {
  0%    { left: -120%; }
  22%   { left: 160%; }
  100%  { left: 160%; }
}
@keyframes ripple-effect { to { transform: scale(5); opacity: 0; } }

/* WhatsApp button */
.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 18px var(--green-glow);
}
.btn--whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px var(--green-glow), 0 0 0 6px rgba(37,211,102,0.1);
}

/* Glowing green variant */
.btn--glow-green {
  animation: glow-green-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-green-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 8px 38px rgba(37,211,102,0.7), 0 0 30px rgba(37,211,102,0.25); }
}
.btn--glow-green:hover { animation: none; box-shadow: 0 10px 45px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }

/* Primary blue button */
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 18px var(--blue-glow);
}
.btn--primary:hover {
  background: var(--blue-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px var(--blue-glow);
}

/* Glowing blue variant */
.btn--glow-blue {
  animation: glow-blue-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-blue-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(27,75,171,0.45), 0 0 0 0 rgba(27,75,171,0); }
  50%       { box-shadow: 0 8px 38px rgba(27,75,171,0.7), 0 0 30px rgba(27,75,171,0.2); }
}
.btn--glow-blue:hover { animation: none; box-shadow: 0 10px 45px rgba(27,75,171,0.85), 0 0 0 8px rgba(27,75,171,0.1); }

/* Glass outline button */
.btn--electric {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: electric-pulse 3s ease-in-out infinite;
}
.btn--electric:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,1);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.1), 0 10px 35px rgba(255,255,255,0.12);
  animation: none;
}
@keyframes electric-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 4px 18px rgba(255,255,255,0.08); }
  50%       { box-shadow: 0 0 20px rgba(255,255,255,0.15), 0 4px 24px rgba(255,255,255,0.12); }
}

/* White button — destaque em fundos escuros */
.btn--white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(255,255,255,0.18);
}
.btn--white:hover {
  background: #f0f6ff;
  color: var(--blue-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(255,255,255,0.35);
}
.btn--glow-white {
  animation: glow-white-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-white-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,255,255,0.2); }
  50%       { box-shadow: 0 8px 40px rgba(255,255,255,0.5), 0 0 30px rgba(255,255,255,0.18); }
}

/* Sizes */
.btn--lg { padding: 17px 38px; font-size: 1rem; }
.btn--xl { padding: 20px 50px; font-size: 1.1rem; font-weight: 700; }
.btn--sm { padding: 9px 20px; font-size: 0.82rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(27,75,171,0.08);
  transition: all var(--transition);
}

.header__inner { display: flex; align-items: center; gap: 32px; height: 72px; }

.header__logo img { height: 48px; width: auto; transition: transform var(--transition); }
.header__logo:hover img { transform: scale(1.04); }

.header__nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.header__nav a { font-size: 0.88rem; font-weight: 500; color: var(--gray-700); transition: color var(--transition); position: relative; }
.header__nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--blue); border-radius: 2px; transition: width var(--transition); }
.header__nav a:hover { color: var(--blue); }
.header__nav a:hover::after { width: 100%; }

.header__cta { margin-left: 16px; padding: 10px 20px; font-size: 0.86rem; }

.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 148px 0 100px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a8f 40%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero__orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: rgba(196,30,58,0.22);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 350px; height: 350px;
  background: rgba(46,110,199,0.35);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  top: 40%; right: 25%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero__content { position: relative; z-index: 1; max-width: 720px; }

.hero__tag-wrap { margin-bottom: 22px; }
.hero__badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 20px rgba(255,255,255,0.15); }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero__title-highlight {
  background: linear-gradient(90deg, #7EB8FF 0%, #FFD580 50%, #FF8FA3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 4s linear infinite;
}
@keyframes text-gradient { to { background-position: 200% center; } }

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  max-width: 600px;
  line-height: 1.72;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero__stat { text-align: center; }
.hero__stat-num {
  display: inline;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.hero__stat-plus {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.3px;
}
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }

.hero__wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero__wave svg { display: block; width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }

.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.section__tag {
  display: inline-block;
  background: rgba(27,75,171,0.08);
  color: var(--blue);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__tag--light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }

.section__title { font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 700; color: var(--text); line-height: 1.22; margin-bottom: 14px; }
.section__title--white { color: var(--white); }

.section__subtitle { font-size: 1rem; color: var(--gray-500); line-height: 1.75; }
.section__subtitle--light { color: rgba(255,255,255,0.72); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible, .reveal-card.visible { opacity: 1; transform: translateY(0); }
.reveal-card:nth-child(2) { transition-delay: 0.08s; }
.reveal-card:nth-child(3) { transition-delay: 0.16s; }
.reveal-card:nth-child(4) { transition-delay: 0.24s; }
.reveal-card:nth-child(5) { transition-delay: 0.32s; }
.reveal-card:nth-child(6) { transition-delay: 0.40s; }

/* ===== PRODUTOS ===== */
.produtos { background: var(--gray-50); }

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

.produto-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.produto-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(27,75,171,0.18);
  border-color: rgba(27,75,171,0.2);
}

/* Borda azul suave no hover */
.produto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(27,75,171,0.18);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.produto-card:hover::after { opacity: 1; }

/* Card shine element */
.produto-card__shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.6s ease;
}
.produto-card:hover .produto-card__shine { left: 160%; }

.produto-card__icon { width: 64px; height: 64px; margin-bottom: 18px; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.produto-card:hover .produto-card__icon { transform: scale(1.12) rotate(-3deg); }
.produto-card__icon svg { width: 64px; height: 64px; }

.produto-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; position: relative; z-index: 1; }
.produto-card p { font-size: 0.87rem; color: var(--gray-500); line-height: 1.65; position: relative; z-index: 1; }

.produtos__cta { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 52px; flex-wrap: wrap; text-align: center; }
.produtos__cta p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== QUEM SOMOS ===== */
.quem-somos__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }

.quem-somos__visual { position: relative; height: 440px; }

.quem-somos__blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(27,75,171,0.08) 0%, transparent 70%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  animation: blob-morph 8s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%; }
}

.quem-somos__img-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  animation: float-logo 4s ease-in-out infinite;
}
@keyframes float-logo {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.quem-somos__card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  z-index: 3;
  animation: float-card 5s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.quem-somos__card--blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  top: 8%; left: -6%;
  box-shadow: 0 8px 30px rgba(27,75,171,0.4);
}
.quem-somos__card--red {
  background: linear-gradient(135deg, var(--red), #e8253d);
  bottom: 8%; right: -6%;
  box-shadow: 0 8px 30px rgba(196,30,58,0.4);
  animation-delay: -2s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.quem-somos__num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.quem-somos__label { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.quem-somos__card span { color: rgba(255,255,255,0.8); font-weight: 800; font-size: 1.4rem; }

.quem-somos__content .section__tag { display: inline-block; margin-bottom: 12px; }
.quem-somos__content .section__title { text-align: left; margin-bottom: 18px; }
.quem-somos__content p { color: var(--gray-500); line-height: 1.78; margin-bottom: 16px; font-size: 0.95rem; }

.diferenciais { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }

.diferencial { display: flex; gap: 16px; align-items: flex-start; transition: transform var(--transition); }
.diferencial:hover { transform: translateX(6px); }

.diferencial__icon {
  flex-shrink: 0; width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.diferencial:hover .diferencial__icon { transform: scale(1.1); }
.diferencial__icon--blue { background: rgba(27,75,171,0.1); color: var(--blue); }
.diferencial:hover .diferencial__icon--blue { background: var(--blue); color: var(--white); box-shadow: 0 6px 20px rgba(27,75,171,0.35); }
.diferencial__icon--red { background: rgba(196,30,58,0.1); color: var(--red); }
.diferencial:hover .diferencial__icon--red { background: var(--red); color: var(--white); box-shadow: 0 6px 20px rgba(196,30,58,0.35); }

.diferencial h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.diferencial p { font-size: 0.84rem; color: var(--gray-500); margin: 0; line-height: 1.55; }

/* ===== VÍDEO ===== */
.video-section {
  position: relative;
  background: linear-gradient(160deg, var(--blue-dark) 0%, #1a3a8f 50%, #0a1f4e 100%);
  overflow: hidden;
  padding: 96px 0;
}

.video-section__bg { position: absolute; inset: 0; pointer-events: none; }
.video-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.video-section__orb--1 {
  width: 600px; height: 600px;
  background: rgba(196,30,58,0.18);
  top: -200px; right: -150px;
  animation: orb-float 10s ease-in-out infinite;
}
.video-section__orb--2 {
  width: 400px; height: 400px;
  background: rgba(46,110,199,0.25);
  bottom: -100px; left: -100px;
  animation: orb-float 8s ease-in-out infinite reverse;
}

.video-section .section__header { position: relative; z-index: 1; }

.video-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.video-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  background: #000;
  transition: box-shadow var(--transition);
}
.video-inner:hover { box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(27,75,171,0.3), 0 0 0 1px rgba(255,255,255,0.15); }

.video-inner video {
  width: 100%;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,41,96,0.75) 0%, rgba(27,75,171,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.video-overlay.hidden { display: none; }
.video-overlay:hover { background: linear-gradient(135deg, rgba(13,41,96,0.6) 0%, rgba(27,75,171,0.45) 100%); }

.video-overlay__content { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.play-btn {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.play-btn:hover { transform: scale(1.12); background: var(--white); box-shadow: 0 12px 50px rgba(27,75,171,0.5); }

.play-btn__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: ring-expand 2.5s ease-out infinite;
}
.play-btn__ring--1 { width: 110px; height: 110px; animation-delay: 0s; }
.play-btn__ring--2 { width: 140px; height: 140px; animation-delay: 0.8s; }

@keyframes ring-expand {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.video-overlay__label {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.video-controls {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  transition: opacity 0.3s;
}
.video-controls.visible { display: flex; }

.vc-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.vc-btn:hover { opacity: 1; transform: scale(1.1); }

.vc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.vc-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--red));
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s;
  box-shadow: 0 0 8px rgba(46,110,199,0.7);
}
.vc-progress__dot {
  position: absolute;
  top: 50%; left: 0%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
  transition: left 0.1s;
}

.vc-time { color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500; min-width: 40px; }

/* ===== QUEM ATENDEMOS ===== */
.atendemos { background: var(--gray-50); }

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

.segmento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.segmento-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 60px rgba(27,75,171,0.16);
}
.segmento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}
.segmento-card:hover::before { transform: scaleX(1); }

.segmento-card__icon {
  width: 72px; height: 72px;
  background: rgba(27,75,171,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--blue);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.segmento-card:hover .segmento-card__icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 8px 25px rgba(27,75,171,0.35);
}

.segmento-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.segmento-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }

.segmento-card--cta { border: 2px dashed var(--gray-100); background: rgba(27,75,171,0.02); }
.segmento-card--cta:hover { border-color: var(--green-wa); }
.segmento-card--cta:hover .segmento-card__icon { background: var(--green-wa); }
.segmento-card--cta .btn { margin-top: 16px; }

/* ===== AVALIAÇÕES ===== */
.avaliacoes {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
}
.avaliacoes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,30,58,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.avaliacoes__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.avaliacoes__content p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }

.avaliacoes__stars { display: flex; gap: 5px; margin-bottom: 28px; }
.avaliacoes__stars svg { width: 30px; height: 30px; filter: drop-shadow(0 0 6px rgba(255,184,0,0.6)); animation: star-pulse 1.5s ease-in-out infinite; }
.avaliacoes__stars svg:nth-child(2) { animation-delay: 0.1s; }
.avaliacoes__stars svg:nth-child(3) { animation-delay: 0.2s; }
.avaliacoes__stars svg:nth-child(4) { animation-delay: 0.3s; }
.avaliacoes__stars svg:nth-child(5) { animation-delay: 0.4s; }
@keyframes star-pulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(255,184,0,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 12px rgba(255,184,0,0.9)); transform: scale(1.05); }
}

.avaliacoes__cards { display: flex; flex-direction: column; gap: 20px; }

.review-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__google { opacity: 0.85; flex-shrink: 0; }

.section__tag--google {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-card p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.65;
}

.review-card__author { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; }

/* ===== CONTATO ===== */
.contato__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }

.contato__info { display: flex; flex-direction: column; gap: 24px; }

.contato__item { display: flex; gap: 16px; align-items: flex-start; }

.contato__item-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: rgba(27,75,171,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: all var(--transition);
}
.contato__item:hover .contato__item-icon {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(27,75,171,0.35);
}

.contato__item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contato__item p, .contato__item a { font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; }
.contato__item a:hover { color: var(--blue); }

.contato__whatsapp { width: fit-content; }

.contato__mapa { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  background: var(--gray-50);
  padding: 88px 0;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(27,75,171,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  z-index: 1;
}

.cta-final h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.cta-final p { color: var(--gray-500); margin-bottom: 36px; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: var(--white); padding: 64px 0 0; }

.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer__logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 20px; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.09);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(27,75,171,0.4); }

.footer__links, .footer__contato { display: flex; flex-direction: column; gap: 10px; }
.footer__links h4, .footer__contato h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer__links a { font-size: 0.86rem; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.footer__links a:hover { color: var(--white); transform: translateX(4px); }

.footer__contato p, .footer__contato a { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.footer__contato a:hover { color: var(--white); }

.footer__review { color: #FFB800 !important; font-weight: 600; font-size: 0.86rem !important; transition: opacity 0.2s; }
.footer__review:hover { opacity: 0.75; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  animation: wa-float-pulse 2.2s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.15) !important;
  animation: none;
  box-shadow: 0 10px 45px rgba(37,211,102,0.75);
}

@keyframes wa-float-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6), 0 8px 30px rgba(37,211,102,0.4); transform: scale(1); }
  50%  { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 40px rgba(37,211,102,0.6); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 30px rgba(37,211,102,0.4); transform: scale(1); }
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--text);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .atendemos__grid { grid-template-columns: repeat(2, 1fr); }
  .quem-somos__inner { grid-template-columns: 1fr; gap: 40px; }
  .quem-somos__visual { display: none; }
  .avaliacoes__inner { grid-template-columns: 1fr; gap: 40px; }
  .contato__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 24px 28px;
    box-shadow: 0 16px 50px rgba(27,75,171,0.18);
    gap: 0;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--blue), var(--red)) 1;
    /* Hidden by default on mobile */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .header__nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .header__nav a {
    font-size: 1rem;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.2s;
  }
  .header__nav a::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--red));
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.22s ease;
  }
  .header__nav.open a { opacity: 1; transform: translateX(0); }
  .header__nav.open a::before { opacity: 1; transform: scale(1); }
  .header__nav.open a:nth-child(1) { transition-delay: 0.06s; }
  .header__nav.open a:nth-child(2) { transition-delay: 0.11s; }
  .header__nav.open a:nth-child(3) { transition-delay: 0.16s; }
  .header__nav.open a:nth-child(4) { transition-delay: 0.21s; }
  .header__nav.open a:nth-child(5) { transition-delay: 0.26s; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .hero { padding: 120px 0 70px; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 20px; padding: 18px 24px; }
  .produtos__grid { grid-template-columns: 1fr; }
  .atendemos__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .hero__stats { flex-direction: column; gap: 16px; width: 100%; }
  .hero__stat-divider { width: 80%; height: 1px; }
}

/* ===== PARTICLE BURST (click CTA) ===== */
.burst-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: burst-fly var(--dur, 0.8s) ease-out forwards;
}
@keyframes burst-fly {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ===== MAGNETIC BUTTON ===== */
.btn--magnetic { transition: transform 0.15s cubic-bezier(0.23,1,0.32,1), box-shadow 0.25s ease, background 0.25s ease; }

/* ===== HERO TITLE NEON ===== */
.hero__title-highlight {
  text-shadow: 0 0 40px rgba(126,184,255,0.5);
  animation: text-gradient 4s linear infinite, neon-breathe 2.5s ease-in-out infinite;
}
@keyframes neon-breathe {
  0%, 100% { text-shadow: 0 0 30px rgba(126,184,255,0.4), 0 0 60px rgba(255,215,128,0.2); }
  50%       { text-shadow: 0 0 60px rgba(126,184,255,0.7), 0 0 100px rgba(255,215,128,0.4); }
}

/* ===== KEYFRAMES EXTRA ===== */
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== TYPEWRITER cursor ===== */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(255,255,255,0.8);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-cursor 0.8s step-end infinite;
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
