:root {
  --bg: #F9FBFD;
  --text: #263238;
  --dark: #1A1A2E;
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --accent: #00D4FF;
  --white: #FFFFFF;
  --border: #B0BEC5;
  --muted: #60727B;
  --surface: #FFFFFF;
  --surface-soft: #F2F7FB;
  --surface-accent: #E0F2FF;
  --line-soft: #D8E2E8;
  --shadow: 0 14px 40px rgba(0, 102, 255, 0.15);
  --shadow-soft: 0 10px 24px rgba(0, 102, 255, 0.12);
}

html[data-theme="dark"] {
  --bg: #0F0F0F;
  --text: #E8EAED;
  --dark: #E0E0E0;
  --primary: #0099FF;
  --primary-dark: #0066FF;
  --accent: #00E5FF;
  --white: #E8EAED;
  --border: #424242;
  --muted: #9E9E9E;
  --surface: #1A1A1A;
  --surface-soft: #262626;
  --surface-accent: #0A2A4A;
  --line-soft: #333333;
  --shadow: 0 14px 40px rgba(0, 153, 255, 0.2);
  --shadow-soft: 0 10px 24px rgba(0, 153, 255, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

@keyframes softPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes slideBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes menuItemFade {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.22);
  }
  50% {
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
  }
  100% {
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.22);
  }
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
  padding-right: var(--scrollbar-compensation, 0px);
}

body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 48;
}

body.menu-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

.promo-bar {
  background: #0052CC;
  color: #FFFFFF;
  font-size: 0.92rem;
  transition: background 0.3s ease;
}

html[data-theme="dark"] .promo-bar {
  background: #0066FF;
}

.promo-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.promo-bar a {
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  border-radius: 999px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(249, 251, 253, 0.9);
  border-bottom: 1px solid rgba(176, 190, 197, 0.5);
  box-shadow: 0 8px 24px rgba(38, 50, 56, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .topbar {
  background: rgba(26, 26, 26, 0.95);
  border-bottom-color: rgba(66, 66, 66, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 20px;
  padding: 10px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
  border: 1px solid rgba(176, 190, 197, 0.6);
  box-shadow: 0 10px 22px rgba(0, 102, 255, 0.16);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .brand-logo {
  background: rgba(40, 40, 40, 0.96);
  border-color: rgba(80, 80, 80, 0.6);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 9px 12px;
  border-radius: 10px;
  position: relative;
}

.nav-menu a:not(.btn):hover {
  color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-menu a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-menu a[href^="#"].is-active {
  color: var(--primary);
  background: rgba(0, 102, 255, 0.08);
}

.nav-menu a[href^="#"].is-active::after {
  transform: scaleX(1);
}

.nav-menu a[href^="#"].is-active::before {
  content: '❄️';
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  font-size: 0.76rem;
  line-height: 1;
}

.menu-btn {
  display: none;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 10px;
  padding: 7px 8px;
  cursor: pointer;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.18);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-left: auto;
  margin-right: 8px;
}

.theme-toggle:hover {
  background: rgba(0, 102, 255, 0.12);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.55);
  outline-offset: 2px;
}

.theme-icon {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-btn:focus-visible,
.nav-menu a:focus-visible {
  outline: 3px solid rgba(0, 212, 255, 0.55);
  outline-offset: 2px;
}

.hero {
  padding: 84px 0 92px;
  background-image:
    linear-gradient(120deg, rgba(13, 71, 161, 0.78), rgba(38, 50, 56, 0.72)),
    url('imagens/TaGelando-1024x1024.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero h1,
.hero .subtitle,
.hero .hero-checks {
  color: #F9FBFD;
}

.hero .btn-outline {
  border-color: #FFFFFF;
  color: #FFFFFF;
  border-width: 2px;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero .tag,
.hero h1,
.hero .subtitle,
.hero .hero-actions,
.hero .hero-checks,
.hero .hero-card {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero h1 {
  animation-delay: 0.06s;
}

.hero .subtitle {
  animation-delay: 0.14s;
}

.hero .hero-actions {
  animation-delay: 0.22s;
}

.hero .hero-checks {
  animation-delay: 0.3s;
}

.hero .hero-card {
  animation-delay: 0.18s;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #F9FBFD;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
}

.subtitle {
  margin: 18px 0 24px;
  color: #EAF4FF;
  font-size: 1.1rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 1.05rem;
  color: var(--white);
  background: linear-gradient(135deg, #0066FF, #0099FF);
  box-shadow: 0 12px 24px rgba(0, 102, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: buttonPulse 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, #0052CC, #0066FF);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.6);
}

html[data-theme="dark"] .btn {
  background: linear-gradient(135deg, #0099FF, #00CCFF);
  box-shadow: 0 12px 24px rgba(0, 153, 255, 0.5);
}

html[data-theme="dark"] .btn:hover {
  background: linear-gradient(135deg, #0066FF, #0099FF);
  box-shadow: 0 20px 40px rgba(0, 153, 255, 0.7);
}

.btn-outline {
  background: transparent;
  border: 2px solid #0066FF;
  color: #FFFFFF;
  animation: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

html[data-theme="dark"] .btn-outline {
  border-color: #00CCFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: #0066FF;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
  transform: translateY(-2px);
  animation: none;
}

.btn-small {
  padding: 10px 14px;
}

.full {
  width: 100%;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  animation: buttonPulse 2.5s ease-in-out infinite;
  font-size: 1.5rem;
  font-weight: 1000;
  gap: 10px;
}

.btn-whatsapp .whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-outline .telephone-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.6);
  transform: translateY(-4px) scale(1.05);
}

html[data-theme="dark"] .btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

html[data-theme="dark"] .btn-whatsapp:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.7);
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  color: #F9FBFD;
}

.hero-checks li {
  margin: 6px 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #F9FBFD;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .hero-card {
  background: rgba(26, 26, 26, 0.94);
  border-color: rgba(100, 100, 100, 0.4);
}

.hero-card-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #E0F2FF;
  color: #0052CC;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease;
}

html[data-theme="dark"] .hero-card-badge {
  background: #0A3A6A;
  color: #00CCFF;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
}

.hero-phone {
  display: inline-block;
  margin-top: 14px;
  color: #0066FF;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .hero-phone {
  color: #00CCFF;
}

.trust-strip {
  margin-top: -24px;
  padding: 0 0 18px;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid rgba(176, 190, 197, 0.5);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  min-height: 118px;
  padding: 20px 14px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF, #F8FBFE);
  border-right: 1px solid var(--line-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

html[data-theme="dark"] .trust-item {
  background: linear-gradient(180deg, #262626, #1A1A1A);
}

.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(0, 102, 255, 0.08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(0, 102, 255, 0.08));
  font-size: 1.5rem;
}

.trust-item h3 {
  margin: 10px 0 2px;
  font-size: 1.03rem;
  line-height: 1.2;
  color: #0066FF;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .trust-item h3 {
  color: #00CCFF;
}

.trust-item p {
  margin: 0;
  color: #60727B;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .trust-item p {
  color: #9E9E9E;
}

.section {
  padding: 74px 0;
}

.section-alt {
  background: linear-gradient(180deg, #F9FBFD, #F2F7FB);
  transition: background 0.3s ease;
}

html[data-theme="dark"] .section-alt {
  background: linear-gradient(180deg, #1A1A1A, #0F0F0F);
}

.section h2 {
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.small-note {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

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

.gallery-showcase {
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.12), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(0, 102, 255, 0.08), transparent 48%),
    var(--section-alt);
}

.gallery-head {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.gallery-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .gallery-card {
  border-color: rgba(80, 80, 80, 0.45);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 102, 255, 0.16);
}

.gallery-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 102, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .gallery-badge {
  background: rgba(0, 204, 255, 0.88);
  border-color: rgba(200, 200, 200, 0.28);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  padding: 14px 14px 16px;
}

.gallery-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.gallery-caption p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.brands-carousel {
  border: 1px solid rgba(176, 190, 197, 0.45);
  background: linear-gradient(180deg, #FFFFFF, #F7FAFD);
  border-radius: 14px;
  overflow: hidden;
  padding: 14px 0;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .brands-carousel {
  border-color: rgba(80, 80, 80, 0.45);
  background: linear-gradient(180deg, #262626, #1A1A1A);
}

.brands-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
  animation: slideBrands 24s linear infinite;
}

.brands-carousel:hover .brands-track {
  animation-play-state: paused;
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 72px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFFFFF, #F2F7FB);
  border: 1px solid rgba(176, 190, 197, 0.7);
  font-weight: 700;
  color: #0066FF;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

html[data-theme="dark"] .brand-item {
  background: linear-gradient(180deg, #262626, #1A1A1A);
  border-color: rgba(80, 80, 80, 0.7);
  color: #00CCFF;
}

.brand-item img {
  width: 130px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.howitworks-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.howitworks-left h2 {
  text-align: left;
  margin-bottom: 16px;
}

.howitworks-left .btn {
  margin-bottom: 18px;
}

.howitworks-left p {
  margin: 0 0 14px;
  color: #33454f;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .howitworks-left p {
  color: #B0B0B0;
}

.howitworks-left img {
  width: min(390px, 100%);
  border-radius: 12px;
  display: block;
  margin-top: 6px;
  border: 1px solid rgba(176, 190, 197, 0.6);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s ease;
}

html[data-theme="dark"] .howitworks-left img {
  border-color: rgba(80, 80, 80, 0.6);
}

.howitworks-right {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 8px;
}

.howitworks-right::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FB8C00 0%, #4A90E2 100%);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

html[data-theme="dark"] .howitworks-right::before {
  opacity: 0.5;
}

.process-step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: start;
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step.step-visible {
  opacity: 1;
  transform: translateX(0);
}

.process-number {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1;
  background: #FFFFFF;
  border: 2px solid rgba(176, 190, 197, 0.55);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .process-number {
  background: #262626;
  border-color: rgba(80, 80, 80, 0.55);
}

.process-step:nth-child(odd) .process-number {
  color: #F57C00;
  border-color: rgba(245, 124, 0, 0.35);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.process-step:nth-child(even) .process-number {
  color: #0066FF;
  border-color: rgba(0, 102, 255, 0.35);
  transition: color 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .process-step:nth-child(odd) .process-number {
  color: #FFB74D;
  border-color: rgba(255, 183, 77, 0.35);
}

html[data-theme="dark"] .process-step:nth-child(even) .process-number {
  color: #00CCFF;
  border-color: rgba(0, 204, 255, 0.35);
}

.process-step > div {
  background: linear-gradient(180deg, #FFFFFF, #F8FBFE);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .process-step > div {
  background: linear-gradient(180deg, #262626, #1A1A1A);
  border-color: rgba(80, 80, 80, 0.45);
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  color: #173046;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .process-step h3 {
  color: #E0E0E0;
}

.process-step p {
  margin: 0;
  color: #33454f;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .process-step p {
  color: #B0B0B0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefits > div {
  background: linear-gradient(180deg, #FFFFFF, #F8FBFE);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .benefits > div {
  background: linear-gradient(180deg, #262626, #1A1A1A);
  border-color: rgba(80, 80, 80, 0.45);
}

.benefits > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefits span {
  font-size: 1.45rem;
}

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

blockquote {
  margin: 0;
  padding: 20px;
  background: linear-gradient(180deg, #FFFFFF, #F8FBFE);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] blockquote {
  background: linear-gradient(180deg, #262626, #1A1A1A);
  border-color: rgba(80, 80, 80, 0.45);
}

blockquote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

cite {
  margin-top: 12px;
  display: block;
  font-style: normal;
  font-weight: 700;
  color: #0066FF;
  transition: color 0.3s ease;
}

html[data-theme="dark"] cite {
  color: #00CCFF;
}

.faq {
  width: min(800px, 100%);
  margin: 0 auto;
}

details {
  background: var(--surface);
  border: 1px solid rgba(176, 190, 197, 0.45);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] details {
  border-color: rgba(80, 80, 80, 0.45);
}

details:hover {
  transform: translateY(-2px);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact {
  background: linear-gradient(180deg, #F2F7FB, #FFFFFF);
  transition: background 0.3s ease;
}

html[data-theme="dark"] .contact {
  background: linear-gradient(180deg, #1A1A1A, #0F0F0F);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(176, 190, 197, 0.5);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: background 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .contact-form {
  border-color: rgba(80, 80, 80, 0.5);
}

.form-feedback {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid transparent;
}

.form-feedback.success {
  background: #ECFDF3;
  color: #0F766E;
  border-color: #99F6E4;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .form-feedback.success {
  background: #064E48;
  color: #86EFAC;
  border-color: #4ADE80;
}

.form-feedback.error {
  background: #FEF2F2;
  color: #B91C1C;
  border-color: #FECACA;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html[data-theme="dark"] .form-feedback.error {
  background: #5A1F1F;
  color: #FF9999;
  border-color: #EF4444;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #B0BEC5;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  margin-top: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea {
  background: #2A2A2A;
  border-color: #424242;
  color: #E0E0E0;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
}

.footer {
  background: linear-gradient(135deg, #0052CC, #0066FF);
  color: #F9FBFD;
  transition: background 0.3s ease;
}

html[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #003D99, #0066FF);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.footer a {
  color: #F9FBFD;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
  animation: softPulse 2s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html[data-theme="dark"] .whatsapp-float {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.6);
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.15);
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 16px 45px rgba(34, 197, 94, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-visible,
  .hero .tag,
  .hero h1,
  .hero .subtitle,
  .hero .hero-actions,
  .hero .hero-checks,
  .hero .hero-card,
  .brands-track,
  .process-step,
  .process-step.step-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .promo-bar-wrap {
    flex-direction: column;
    text-align: center;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid #D9E2E8;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .howitworks-wrap {
    grid-template-columns: 1fr;
  }

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

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

/* About Professional Section */
.about-professional {
  background: linear-gradient(135deg, #0066FF 0%, #9C27B0 50%, #EC407A 100%);
  color: white;
  padding: 64px 0;
  transition: background 0.3s ease;
}

html[data-theme="dark"] .about-professional {
  background: linear-gradient(135deg, #0099FF 0%, #7B1FA2 50%, #D32F2F 100%);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-professional h2 {
  color: white;
  font-size: 3rem;
  margin: 0;
  font-weight: 800;
}

.about-description {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.about-description strong {
  font-weight: 700;
  color: white;
}

/* Highlight Items */
.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  padding: 16px 18px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.highlight-item h4 {
  font-size: 1rem;
  margin: 0 0 4px 0;
  font-weight: 700;
  color: white;
}

.highlight-item p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Big Stats */
.about-stats-big {
  display: flex;
  gap: 24px;
}

.stat-big {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.stat-big-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-big-label {
  font-size: 0.95rem;
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

/* GetNinja Card */
.getninja-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  color: var(--dark);
  animation: slideUp 0.6s ease-out;
}

.getninja-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.getninja-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.getninja-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.getninja-avatar {
  font-size: 3.2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

html[data-theme="dark"] .getninja-avatar {
  background: linear-gradient(135deg, #2A6D35 0%, #3D8B40 100%);
}

.getninja-info h3 {
  font-size: 1.3rem;
  margin: 0 0 4px 0;
  color: var(--dark);
  font-weight: 700;
}

.getninja-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.getninja-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  margin-bottom: 16px;
}

.rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.rating-stars {
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.rating-count {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  transition: color 0.3s ease;
}

html[data-theme="dark"] .rating-count {
  color: #B0B0B0;
}

.getninja-badges {
  background: #F5F7FA;
  padding: 16px;
  border-radius: 10px;
  transition: background 0.3s ease;
}

html[data-theme="dark"] .getninja-badges {
  background: #262626;
}

.badge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.badges-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.badge {
  font-size: 0.8rem;
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #0066FF;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

html[data-theme="dark"] .badge {
  background: #2A2A2A;
  border-color: var(--border);
  color: #00CCFF;
}

@media (max-width: 760px) {
  .topbar {
    z-index: 58;
    backdrop-filter: none;
  }

  .hero,
  .section,
  .section h2,
  .card,
  .benefits > div,
  blockquote,
  .about-content,
  .highlight-item,
  .stat-big,
  .process-step > div,
  .process-step h3,
  .process-step p {
    text-align: center;
  }

  .hero .tag,
  .hero-actions,
  .hero-checks,
  .hero-proof {
    justify-content: center;
  }

  .hero-checks {
    display: grid;
    gap: 6px;
  }

  .howitworks-left h2,
  .howitworks-left p {
    text-align: center;
  }

  .howitworks-left .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .howitworks-left img {
    margin-left: auto;
    margin-right: auto;
  }

  body.menu-open .topbar {
    z-index: 70;
  }

  .hero {
    padding: 68px 0 78px;
  }

  .menu-btn {
    display: inline-block;
    justify-self: end;
    position: relative;
    z-index: 62;
    min-width: 44px;
    min-height: 44px;
  }

  .menu-btn.open {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.3);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px 0 0 16px;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 14px 16px;
    box-shadow: -14px 0 30px rgba(8, 31, 75, 0.18);
    max-height: 100vh;
    overflow: auto;
    z-index: 60;
    transform: translateX(108%);
    transition: transform 0.28s ease;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-menu.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .nav-menu a {
    padding: 13px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    animation: menuItemFade 0.24s ease both;
  }

  .nav-menu a:not(.btn)::after,
  .nav-menu a[href^="#"].is-active::before {
    display: none;
  }

  .nav-menu a[href^="#"].is-active {
    border-color: rgba(0, 102, 255, 0.28);
    background: rgba(0, 102, 255, 0.1);
  }

  .nav-menu .btn,
  .nav-menu .btn-small {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .benefits,
  .cards {
    grid-template-columns: 1fr;
  }

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

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

  .process-step {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .howitworks-right::before {
    left: 30px;
  }

  .process-number {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .process-step h3 {
    font-size: 1.2rem;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

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

  .about-stats {
    flex-direction: row;
    gap: 20px;
  }

  .about-stats-big {
    flex-direction: column;
  }

  .getninja-card {
    min-width: 100%;
  }

  .about-professional h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 94%);
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 56px 0 64px;
  }

  h1 {
    line-height: 1.12;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-card,
  .card,
  .benefits > div,
  .process-step > div,
  blockquote {
    padding: 16px;
  }

  .hero-actions .btn,
  .promo-bar a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .promo-bar {
    font-size: 0.85rem;
  }

  .promo-bar-wrap {
    gap: 8px;
  }

  .gallery-card img {
    height: 210px;
  }

  .brand-item {
    min-width: 132px;
    min-height: 60px;
    padding: 8px 10px;
  }

  .brand-item img {
    width: 102px;
    height: 30px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  .nav-menu {
    width: min(300px, 88vw);
  }

  .btn,
  .btn-small {
    padding: 13px 16px;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
  }

  .process-number {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .howitworks-right::before {
    left: 24px;
  }

  .about-professional h2 {
    font-size: 1.9rem;
  }

  .stat-big-number {
    font-size: 2.4rem;
  }
}
