:root {
  --bg: #07111f;
  --bg-2: #0f172a;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.13);
  --text: #eef6ff;
  --muted: #bad0e8;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #60a5fa;
  --accent-2: #38bdf8;
  --accent-3: #a78bfa;
  --success: #22c55e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

[data-theme="light"] {
  --bg: #f6f8fc;
  --bg-2: #ffffff;
  --card: rgba(255, 255, 255, 0.76);
  --card-strong: rgba(255, 255, 255, 0.95);
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.32), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(167, 139, 250, 0.27), transparent 28rem),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  line-height: 1.6;
  min-height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 18px;
  backdrop-filter: blur(22px);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

[data-theme="light"] .nav-shell {
  background: rgba(255, 255, 255, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--card);
  color: var(--text);
}

.language-select,
.theme-toggle {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 9px 10px;
  cursor: pointer;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
  position: relative;
  z-index: 2;
}

.hero {
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 20px -6%;
  background:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.18), transparent 24rem),
    radial-gradient(circle at 70% 50%, rgba(167, 139, 250, 0.18), transparent 30rem);
  filter: blur(8px);
  z-index: -1;
}

.hero-grid,
.contact-grid,
.split-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 720;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 740;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -.015em;
  font-weight: 730;
}

.hero-text,
.section-head p,
.panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons,
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover,
.social-btn:hover,
.btn:focus-visible,
.social-btn:focus-visible {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(56, 189, 248, .25);
}

.secondary {
  background: var(--card);
  color: var(--text);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .95rem;
}

.hero-card,
.panel,
.contact-form,
.quick-result,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(22px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  transform-style: preserve-3d;
}

.card-glow {
  position: absolute;
  inset: 8% 10%;
  background: linear-gradient(135deg, rgba(96,165,250,.32), rgba(167,139,250,.26));
  filter: blur(42px);
}

.hero-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  filter: saturate(1.12) contrast(1.03);
}

.status-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
  animation: pulse 1.8s infinite;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-strong), var(--card));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% 20%;
  height: 140px;
  background: radial-gradient(circle, rgba(96, 165, 250, .24), transparent 68%);
  transition: transform .3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, .5);
}

.bento-card:hover::after {
  transform: translateY(-16px);
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card.tall {
  grid-row: span 2;
  grid-column: span 1;
}

.bento-card.wide {
  grid-column: span 2;
}

.icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 18px;
}

.bento-card p {
  color: var(--muted);
}

.panel {
  padding: 28px;
}

.rate-panel {
  background:
    linear-gradient(135deg, rgba(96, 165, 250, .24), rgba(167, 139, 250, .18)),
    var(--card);
}

.rate-panel strong {
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--accent-2);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.step span {
  color: var(--accent-2);
  font-weight: 750;
}

.step p {
  margin: 0;
}

.quick-help {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.choice {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

.choice.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: white;
}

.quick-result {
  padding: 22px;
  color: var(--muted);
}

.quick-result strong {
  color: var(--text);
}


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

.why-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card-strong), var(--card));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.why-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(96, 165, 250, 0.14);
  color: var(--accent-2);
  font-weight: 750;
  border: 1px solid var(--line);
}

.why-card p {
  color: var(--muted);
}

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

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  font-weight: 750;
  cursor: pointer;
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

.contact-copy {
  align-self: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.contact-links a {
  text-decoration: none;
  color: var(--accent-2);
  font-weight: 750;
}

.social-btn.whatsapp { background: #25D366; color: white; border: none; }
.social-btn.instagram { background: #E1306C; color: white; border: none; }
.social-btn.facebook { background: #1877F2; color: white; border: none; }

.contact-form {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(96, 165, 250, 0.28);
  border-color: var(--accent);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-weight: 750;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--muted);
  padding: 34px 18px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 4px 0;
}

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

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

@keyframes pulse {
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

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

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

@media (max-width: 920px) {
  .hero-grid,
  .contact-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .nav-link {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    width: min(100% - 22px, 1180px);
    padding: 52px 0;
  }

  .site-header {
    padding: 10px;
  }

  .nav-shell {
    border-radius: 22px;
  }

  .brand span {
    display: none;
  }

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

  .hero-buttons,
  .social-buttons,
  .quick-help {
    flex-direction: column;
  }

  .btn,
  .social-btn,
  .choice {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
}


.hero-logo-showcase{
  object-fit: contain !important;
  padding: 1rem;
  background: transparent !important;
  filter: drop-shadow(0 0 30px rgba(96,165,250,.35));
}

.hero-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:420px;
}


.language-select {
  min-width: 68px;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.language-select option {
  color: #0f172a;
  background: #ffffff;
}

[data-theme="light"] .language-select {
  background: rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.18) !important;
}
