/* ============================================
   FIVE GUINCHO - Design System (Liquid Glass)
   ============================================ */

/* --- Custom Properties --- */
:root {
  /* Core Colors */
  --primary: #fbbf24;
  --primary-dim: #d97706;
  --primary-container: #fcd34d;
  --on-primary: #451a03;

  /* Surface Layer System */
  --surface: #0e0e0e;
  --surface-dim: #0e0e0e;
  --surface-container-lowest: #000000;
  --surface-container-low: #131313;
  --surface-container: #1a1a1a;
  --surface-container-high: #20201f;
  --surface-container-highest: #262626;
  --surface-bright: #2c2c2c;
  --surface-variant: #262626;

  /* On-Surface */
  --on-surface: #ffffff;
  --on-surface-variant: #adaaaa;
  --on-background: #ffffff;

  /* Outline */
  --outline: #767575;
  --outline-variant: #484847;

  /* Secondary / Tertiary */
  --secondary: #f59e0b;
  --tertiary: #fbbf24;

  /* Error */
  --error: #f87171;
  --error-container: #9f0519;

  /* Functional */
  --whatsapp-green: #25D366;

  /* Typography */
  --font-headline: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Inter', sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--primary);
  color: var(--on-primary);
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

select {
  font-family: inherit;
}

/* --- Utility Classes --- */
.font-headline {
  font-family: var(--font-headline);
}

.font-label {
  font-family: var(--font-label);
}

.label-micro {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-family: var(--font-label);
}

.label-micro-tight {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-label);
}

/* --- Glass Effects --- */
.glass-card {
  background: rgba(38, 38, 38, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.liquid-glass {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8),
              inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* --- Ambient Glow Effects --- */
.glow-gold {
  position: fixed;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle at center, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-amber {
  position: fixed;
  top: 50%;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* --- Gradient Button --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: var(--on-primary);
  font-weight: 700;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.35);
}

.btn-primary--rounded {
  border-radius: var(--radius-full);
  padding: var(--space-5) var(--space-10);
  font-size: 1.125rem;
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.4);
}

/* --- Animations --- */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-up.delay-1 { animation-delay: 0.15s; }
.animate-fade-in-up.delay-2 { animation-delay: 0.3s; }
.animate-fade-in-up.delay-3 { animation-delay: 0.45s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 50;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  max-width: 30rem;
  margin: 0 auto;
}

.header-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #e4e4e7;
  font-family: var(--font-headline);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

.badge-dot::after {
  content: '';
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--whatsapp-green);
}

.badge-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--on-surface);
  font-family: var(--font-label);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  position: relative;
  padding-top: var(--space-24);
  padding-bottom: 8rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  padding: var(--space-8) var(--space-6) 0;
  margin-bottom: var(--space-12);
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, rgba(14, 14, 14, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-8);
}

.hero-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(251, 191, 36, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  width: fit-content;
  margin-bottom: var(--space-4);
}

.hero-tag span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-family: var(--font-label);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-headline);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  color: #d4d4d8;
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

/* Hero CTA Card */
.hero-cta-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 20;
}

.hero-cta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #71717a;
  margin-bottom: var(--space-3);
  font-family: var(--font-label);
}

.state-selector-wrapper {
  position: relative;
  margin-bottom: var(--space-4);
}

.state-selector {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  color: var(--on-surface);
  appearance: none;
  -webkit-appearance: none;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.state-selector:focus {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.1);
}

.state-selector-icon {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
  font-size: 1.25rem;
}

/* CTA Other (error message) */
.cta-other {
  display: none;
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
  align-items: center;
  gap: var(--space-3);
}

.cta-other.active {
  display: flex;
}

.cta-other .material-symbols-outlined {
  color: var(--error);
  flex-shrink: 0;
}

.cta-other p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--error);
}

.cta-sp {
  display: block;
}

.hidden {
  display: none !important;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  padding: 0 var(--space-6);
  margin-bottom: var(--space-20);
}

.section-title {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #71717a;
  margin-bottom: var(--space-8);
  font-family: var(--font-label);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

/* Stagger effect */
.benefits-col:nth-child(2) {
  padding-top: var(--space-8);
}

.benefits-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Stat Card */
.stat-card {
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.stat-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.2;
}

.stat-card__content {
  position: relative;
  z-index: 10;
}

.stat-card__number {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-headline);
  margin-bottom: 0.25rem;
}

.stat-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-family: var(--font-label);
}

/* Feature Card */
.feature-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.feature-card__image {
  height: 8rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__image--grayscale img {
  filter: grayscale(1) brightness(0.75);
}

.feature-card__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251, 191, 36, 0.1);
  mix-blend-mode: overlay;
}

.feature-card__body {
  padding: var(--space-4);
}

.feature-card__title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature-card__desc {
  font-size: 11px;
  color: #a1a1aa;
  line-height: 1.5;
}

/* Verified / Satisfaction Card */
.satisfaction-card {
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.satisfaction-card__icon {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: var(--primary);
}

.satisfaction-card__content {
  position: relative;
  z-index: 10;
}

.satisfaction-card__number {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-headline);
  margin-bottom: 0.25rem;
  color: #3b82f6; /* Blue */
}

.satisfaction-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #93c5fd; /* Light Blue */
  font-family: var(--font-label);
}

/* Large feature card image */
.feature-card__image--tall {
  height: 10rem;
}

/* ============================================
   SUPPORT 24H SECTION
   ============================================ */
.support-section {
  padding: 0 var(--space-6);
  margin-bottom: var(--space-20);
}

.support-card {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.support-card__image {
  height: 14rem;
  position: relative;
  overflow: hidden;
}

.support-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-card__image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface-container) 0%, transparent 100%);
}

.support-card__body {
  padding: var(--space-8);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.support-card__icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: rgba(251, 191, 36, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.support-card__icon-wrapper .material-symbols-outlined {
  color: var(--primary);
}

.support-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-headline);
  margin-bottom: var(--space-3);
}

.support-card__desc {
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-size: 0.9375rem;
}

.support-card__team {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar-stack {
  display: flex;
}

.avatar-stack__item {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--surface-container);
  overflow: hidden;
  background: #3f3f46;
  margin-left: -0.5rem;
}

.avatar-stack__item:first-child {
  margin-left: 0;
}

.avatar-stack__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-label {
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  margin-bottom: var(--space-20);
}

.testimonials__header {
  padding: 0 var(--space-6);
  margin-bottom: var(--space-8);
  text-align: center;
}

.testimonials__carousel {
  display: flex;
  overflow-x: auto;
  gap: var(--space-6);
  padding: 0 var(--space-6) var(--space-10);
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  width: 85vw;
  max-width: 380px;
  scroll-snap-align: center;
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  height: 24rem; /* Fixed height for consistency instead of aspect-ratio which gets distorted on narrow screens */
  flex-shrink: 0;
  white-space: normal;
}

.testimonial-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  opacity: 0.4;
}

.testimonial-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.testimonial-card__inner {
  position: relative;
  height: 100%;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card__quote-icon {
  opacity: 0.3;
}

.testimonial-card__quote-icon .material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--primary);
}

.testimonial-card__bottom {
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-4);
}

.testimonial-stars .material-symbols-outlined {
  color: var(--primary);
  font-size: 0.75rem;
}

.testimonial-card__text {
  font-size: 1.125rem;
  font-weight: 500;
  color: white;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 10px;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-label);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 0 var(--space-6);
  margin-bottom: var(--space-12);
}

.cta-final__card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  padding: var(--space-10);
  text-align: center;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
}

.cta-final__content {
  position: relative;
  z-index: 10;
}

.cta-final__title {
  font-size: 1.875rem;
  font-weight: 800;
  font-family: var(--font-headline);
  margin-bottom: var(--space-4);
}

.cta-final__desc {
  color: #d4d4d8;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  width: 100%;
  padding: var(--space-16) var(--space-6) 6rem var(--space-6); /* Extra bottom padding for bottom-nav */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}

.footer-logo {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  font-family: var(--font-headline);
}

.footer-nav {
  display: flex;
  gap: var(--space-8);
}

.footer-nav a {
  font-size: 0.875rem;
  color: #71717a;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-copy {
  font-size: 10px;
  color: #3f3f46;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* ============================================
   BOTTOM NAV
   ============================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: var(--space-3) var(--space-4) var(--space-6);
  background: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #71717a;
  transition: color 0.2s ease;
}

.bottom-nav__link--active {
  color: var(--primary);
}

.bottom-nav__link:hover {
  color: white;
}

.bottom-nav__link span.nav-label {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 6rem;
  right: var(--space-6);
  width: 4rem;
  height: 4rem;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  border: 4px solid var(--surface);
}

.whatsapp-fab:active {
  transform: scale(0.9);
}

.whatsapp-fab:hover {
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
  transform: scale(1.05);
}

.whatsapp-fab .material-symbols-outlined {
  color: white;
  font-size: 1.875rem;
}

/* ============================================
   MODAL EXPRESS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #a1a1aa;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.modal-body {
  padding: var(--space-6);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4d4d8;
  margin-bottom: var(--space-2);
}

.form-group input[type="text"],
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a1a1aa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--surface-container-high);
  color: white;
}

.form-row {
  display: flex;
  gap: var(--space-4);
}

.form-row .form-group {
  flex: 1;
}

.radio-group-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4d4d8;
  margin-bottom: var(--space-3);
  display: block;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: rgba(0, 0, 0, 0.2);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.9375rem;
  color: #e4e4e7;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--primary);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--primary);
  display: block;
}

.btn-submit-modal {
  margin-top: var(--space-2);
}

/* ============================================
   MATERIAL SYMBOLS (filled)
   ============================================ */
.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1;
}

/* ============================================
   RESPONSIVE - Desktop (768px+)
   ============================================ */
@media (min-width: 768px) {
  .hero {
    padding: var(--space-12) var(--space-8) 0;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-cta-card {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .support-section {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .support-card {
    flex-direction: row;
  }

  .support-card__image {
    width: 45%;
    height: auto;
    min-height: 20rem;
  }

  .support-card__body {
    width: 55%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .testimonials {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    min-width: 45%;
  }

  .cta-final {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-final__card {
    padding: var(--space-16);
  }

  .cta-final__title {
    font-size: 2.5rem;
  }

  .btn-primary--rounded {
    width: auto;
  }

  .site-footer {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .bottom-nav {
    display: none;
  }

  .whatsapp-fab {
    bottom: var(--space-8);
  }

  .main-content {
    padding-bottom: var(--space-12);
  }
}

/* ============================================
   RESPONSIVE - Large Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    max-width: 72rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-12);
    padding-top: var(--space-16);
    margin-bottom: var(--space-20);
  }

  .hero-image-wrapper {
    flex: 1;
    aspect-ratio: 3 / 4;
    max-width: 32rem;
    margin-bottom: 0;
  }

  .hero-cta-card {
    flex: 1;
    max-width: none;
    margin: 0;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .benefits {
    max-width: 72rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  .benefits-col:nth-child(2) {
    padding-top: 0;
  }

  .stat-card,
  .satisfaction-card {
    height: 16rem;
  }

  .support-section {
    max-width: 72rem;
  }

  .support-card__image {
    height: auto;
    min-height: 24rem;
  }

  .testimonials {
    max-width: 80rem;
  }

  .testimonial-card {
    min-width: 30%;
  }

  .cta-final {
    max-width: 72rem;
  }
}

/* ============================================
   RESPONSIVE - Ultra Wide (1440px+)
   ============================================ */
@media (min-width: 1440px) {
  .hero {
    max-width: 80rem;
  }

  .benefits {
    max-width: 80rem;
  }

  .support-section {
    max-width: 80rem;
  }

  .cta-final {
    max-width: 80rem;
  }
}
