/* ==========================================================================
   TheOneFolio - Global Stylesheet
   Dark glassmorphism theme with restrained neon accents.
   Mobile-first. WCAG AA contrast. Lightweight animations only.
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #060a14;
  --bg-2: #0a1020;
  --surface: rgba(14, 21, 38, 0.55);
  --surface-solid: #0d1426;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --header-bg: rgba(6, 10, 20, 0.78);
  --nav-bg: #0a101f;
  --footer-bg: rgba(8, 12, 22, 0.6);
  --input-bg: rgba(255, 255, 255, 0.04);
  --chip-bg: rgba(255, 255, 255, 0.03);
  --text: #e8eef8;
  --muted: #a9b6ca;
  --cyan: #38d6f5;
  --cyan-bright: #7de3ff;
  --violet: #b06bff;
  --violet-soft: #d3b6ff;
  --green: #25d366;
  --gradient: linear-gradient(100deg, #2dd4bf 0%, #38bdf8 45%, #a855f7 100%);
  --gradient-text: var(--gradient);
  --glow-cyan: 0 0 24px rgba(56, 214, 245, 0.35);
  --glow-violet: 0 0 24px rgba(176, 107, 255, 0.3);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Base ------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Ambient background glow orbs. Static gradients, cheap to paint. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(600px 420px at 12% -5%, rgba(45, 212, 191, 0.10), transparent 65%),
    radial-gradient(700px 500px at 95% 12%, rgba(168, 85, 247, 0.10), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, rgba(56, 189, 248, 0.07), transparent 70%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  line-height: 1.18;
  margin: 0 0 0.6em;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 6.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p {
  margin: 0 0 1em;
}

.muted {
  color: var(--muted);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Accessibility ------------------------------------------------------------ */

.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--cyan);
  color: #04121a;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Layout ------------------------------------------------------------------- */

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.75rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 920px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) and (max-width: 919px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Glass card ----------------------------------------------------------------- */

.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .glass { background: var(--surface-solid); }
}

.card {
  padding: 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: rgba(56, 214, 245, 0.45);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.card h3 {
  margin-top: 0.25rem;
}

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 214, 245, 0.1);
  border: 1px solid rgba(56, 214, 245, 0.3);
  color: var(--cyan-bright);
  margin-bottom: 1rem;
}

.card .icon svg {
  width: 26px;
  height: 26px;
}

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: box-shadow 0.3s ease, transform 0.2s ease, background-color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #04101c;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 28px rgba(56, 214, 245, 0.5), 0 0 56px rgba(168, 85, 247, 0.25);
}

.btn-ghost {
  background: rgba(56, 214, 245, 0.06);
  border-color: rgba(56, 214, 245, 0.45);
  color: var(--cyan-bright);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(56, 214, 245, 0.14);
  box-shadow: var(--glow-cyan);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.5);
  color: #7bf0a8;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}

/* Badges ------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-global {
  color: #8be9ff;
  background: rgba(56, 214, 245, 0.1);
  border: 1px solid rgba(56, 214, 245, 0.38);
}

.badge-local {
  color: var(--violet-soft);
  background: rgba(176, 107, 255, 0.12);
  border: 1px solid rgba(176, 107, 255, 0.42);
}

/* Header / Nav --------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  margin-right: auto;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .icon-close { display: none; }

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}

.nav-open .site-nav { display: flex; }
.nav-open .nav-toggle .icon-menu { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.site-nav a {
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
}

.site-nav a:hover {
  background: rgba(56, 214, 245, 0.08);
  color: var(--cyan-bright);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--cyan-bright);
  background: rgba(56, 214, 245, 0.08);
}

.site-nav .btn {
  margin-top: 0.5rem;
  padding: 0.7rem 1.4rem;
}

@media (min-width: 920px) {
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav a {
    padding: 0.55rem 0.95rem;
  }

  .site-nav .btn {
    margin: 0 0 0 0.6rem;
  }
}

/* Hero ----------------------------------------------------------------------- */

.hero {
  padding: clamp(4rem, 11vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}

.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(56, 214, 245, 0.08);
  border: 1px solid rgba(56, 214, 245, 0.3);
  color: var(--cyan-bright);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  max-width: 21ch;
  margin-inline: auto;
}

.hero .lede {
  max-width: 56ch;
  margin: 0 auto 2.2rem;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.page-hero .lede {
  max-width: 58ch;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Stats ----------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 1rem;
}

.stats .num {
  display: block;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats .label {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Client strip ------------------------------------------------------------------ */

.client-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.client-strip span {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Portfolio cards ------------------------------------------------------------------ */

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(56, 189, 248, 0.1), rgba(168, 85, 247, 0.12)),
    var(--surface-solid);
  border-bottom: 1px solid var(--border);
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.04);
}

.project-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.project-body h3 {
  margin: 0;
  font-size: 1.1rem;
}

.project-body .type {
  color: var(--muted);
  font-size: 0.9rem;
}

.project-body .visit {
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.project-body .visit svg {
  width: 15px;
  height: 15px;
}

/* Social cards ------------------------------------------------------------------- */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 214, 245, 0.35);
  background: rgba(56, 214, 245, 0.07);
  color: var(--cyan-bright);
  font-size: 0.88rem;
  font-weight: 600;
}

.social-links a:hover {
  background: rgba(56, 214, 245, 0.15);
  text-decoration: none;
  box-shadow: var(--glow-cyan);
}

.social-links a svg {
  width: 16px;
  height: 16px;
}

/* Service cards ------------------------------------------------------------------- */

.service-card .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.service-card ul li {
  margin-bottom: 0.35rem;
}

.service-card .btn {
  align-self: flex-start;
}

/* CTA band ------------------------------------------------------------------------ */

.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 7vw, 4rem) 1.5rem;
  border: 1px solid rgba(56, 214, 245, 0.25);
  box-shadow: inset 0 0 80px rgba(56, 214, 245, 0.05);
}

.cta-band h2 {
  max-width: 24ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 50ch;
  margin: 0 auto 1.8rem;
  color: var(--muted);
}

/* Forms ---------------------------------------------------------------------------- */

.form-card {
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--input-bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field select option {
  background: var(--surface-solid);
  color: var(--text);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(169, 182, 202, 0.65);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 214, 245, 0.18);
}

.field .error {
  display: none;
  color: #ffb4c0;
  font-size: 0.86rem;
  margin-top: 0.35rem;
}

.field.invalid .error { display: block; }

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: rgba(255, 122, 150, 0.7);
}

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #8df5b4;
}

.form-status.error {
  display: block;
  background: rgba(255, 122, 150, 0.08);
  border: 1px solid rgba(255, 122, 150, 0.45);
  color: #ffb4c0;
}

/* Contact info ---------------------------------------------------------------------- */

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.4rem;
}

.contact-item .icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(56, 214, 245, 0.1);
  border: 1px solid rgba(56, 214, 245, 0.3);
  color: var(--cyan-bright);
}

.contact-item .icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

/* Footer ------------------------------------------------------------------------------ */

.site-footer {
  margin-top: clamp(2rem, 6vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-grid h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-bright);
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.6rem;
}

.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--cyan-bright);
}

.footer-brand img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34ch;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

/* WhatsApp floating button -------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #062e16;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45), 0 0 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5), 0 0 34px rgba(37, 211, 102, 0.6);
}

/* Reveal animation ------------------------------------------------------------------------ */

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card,
  .btn,
  .project-thumb img,
  .whatsapp-float {
    transition: none;
  }
}

/* Helpers ----------------------------------------------------------------------------------- */

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.note {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 1rem 1.3rem;
  border-left: 3px solid var(--cyan);
  background: rgba(56, 214, 245, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Theme toggle button ----------------------------------------------------------------------- */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.theme-toggle:hover {
  border-color: rgba(56, 214, 245, 0.5);
  color: var(--cyan-bright);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }

:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* Smooth color transition when switching themes (color only, no movement) */
body,
.site-header,
.site-nav,
.site-footer,
.field input,
.field select,
.field textarea,
.theme-toggle,
.nav-toggle {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ==========================================================================
   Light theme
   Same glassmorphism layout with darker neon accents tuned for AA contrast
   on light surfaces.
   ========================================================================== */

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eef2f8;
  --bg-2: #e3e9f2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --border-strong: rgba(15, 23, 42, 0.2);
  --header-bg: rgba(238, 242, 248, 0.82);
  --nav-bg: #ffffff;
  --footer-bg: rgba(255, 255, 255, 0.6);
  --input-bg: rgba(15, 23, 42, 0.035);
  --chip-bg: rgba(15, 23, 42, 0.03);
  --text: #0f1b2d;
  --muted: #4a5568;
  --cyan: #0e7490;
  --cyan-bright: #0e7490;
  --violet: #7c3aed;
  --violet-soft: #6d28d9;
  --gradient-text: linear-gradient(100deg, #0d9488 0%, #0369a1 45%, #7c3aed 100%);
  --glow-cyan: 0 0 24px rgba(8, 145, 178, 0.18);
  --glow-violet: 0 0 24px rgba(124, 58, 237, 0.16);
}

:root[data-theme="light"] body::before {
  background:
    radial-gradient(600px 420px at 12% -5%, rgba(13, 148, 136, 0.10), transparent 65%),
    radial-gradient(700px 500px at 95% 12%, rgba(124, 58, 237, 0.09), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, rgba(3, 105, 161, 0.07), transparent 70%);
}

:root[data-theme="light"] .badge-global {
  color: #0e7490;
  background: rgba(8, 145, 178, 0.12);
  border-color: rgba(8, 145, 178, 0.4);
}

:root[data-theme="light"] .badge-local {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.4);
}

:root[data-theme="light"] .btn-whatsapp {
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.45);
}

:root[data-theme="light"] .btn-whatsapp:hover,
:root[data-theme="light"] .btn-whatsapp:focus-visible {
  background: rgba(22, 163, 74, 0.18);
  box-shadow: 0 0 24px rgba(22, 163, 74, 0.25);
}

:root[data-theme="light"] .field .error { color: #b91c1c; }

:root[data-theme="light"] .field.invalid input,
:root[data-theme="light"] .field.invalid select,
:root[data-theme="light"] .field.invalid textarea {
  border-color: rgba(220, 38, 38, 0.6);
}

:root[data-theme="light"] .form-status.success {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.4);
  color: #15803d;
}

:root[data-theme="light"] .form-status.error {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.4);
  color: #b91c1c;
}
