/* ========================================
   DESPEDIDA SIMPLE - Premium CSS
   Paleta: Mármol, Elegante, Confianza
   ======================================== */

/* ===== CSS Variables ===== */
:root {
  /* Colores principales - Paleta Mármol Elegante */
  --color-marble-white: #FAFAFA;
  --color-marble-light: #F5F5F4;
  --color-marble-mid: #E7E5E4;
  --color-marble-vein: #D6D3D1;
  
  /* Colores de acento */
  --color-charcoal: #1C1917;
  --color-charcoal-light: #292524;
  --color-warm-gray: #57534E;
  --color-soft-gray: #78716C;
  
  /* Dorado sutil para acentos premium */
  --color-gold: #B8860B;
  --color-gold-light: #DAA520;
  --color-gold-muted: #C9A962;
  
  /* Verde WhatsApp y CTA */
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE57;
  --color-price-green: #059669;
  --color-price-green-dark: #047857;
  
  /* Azul oscuro moderno */
  --color-dark-blue: #0A1628;
  --color-dark-blue-light: #0F2137;
  --color-dark-blue-mid: #152A45;
  
  /* Azul confianza */
  --color-trust-blue: #1E3A5F;
  --color-trust-blue-light: #2D4A6F;
  
  /* Tipografía */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Espaciado */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  
  /* Sombras elegantes */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 5px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.04);
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-marble-white);
  overflow-x: hidden;
}

/* ===== Tipografía ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--color-warm-gray);
  font-size: 1.0625rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== Sección Base ===== */
.section {
  padding: var(--section-padding) 0;
}

.section.services {
  padding: 2rem 0 1rem 0;
}

@media (min-width: 768px) {
  .section.services {
    padding: 3.5rem 0 3rem 0;
  }
  
  .section.faq {
    padding-top: 4rem;
  }
  
  .section.process {
    padding-top: 4rem;
  }
  
  .section.testimonials {
    padding-top: 4rem;
  }
  
  .section.coverage {
    padding-top: 4rem;
  }
}

.section.services .section__header {
  margin-bottom: 1rem;
}

.section.services h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* Título servicios más pequeño en móviles pequeños */
@media (max-width: 480px) {
  .section.services h2.services-title-mobile {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 350px) {
  .section.services h2.services-title-mobile {
    font-size: 1.35rem !important;
  }
}

/* Título cobertura más pequeño en móviles */
@media (max-width: 480px) {
  .section.coverage h2.coverage-title-mobile {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 350px) {
  .section.coverage h2.coverage-title-mobile {
    font-size: 1.45rem !important;
  }
}

/* Texto cobertura más pequeño en móviles */
@media (max-width: 480px) {
  .section.coverage .coverage__text p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 350px) {
  .section.coverage .coverage__text p {
    font-size: 0.85rem !important;
  }
}

/* Título CTA más pequeño en móviles */
@media (max-width: 480px) {
  .section.cta-section h2.cta-title-mobile {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 350px) {
  .section.cta-section h2.cta-title-mobile {
    font-size: 1.45rem !important;
  }
}

.services__text-line1,
.services__text-line2 {
  display: block;
}

@media (min-width: 768px) {
  .services__text-line1,
  .services__text-line2 {
    display: inline;
  }
  
  .services__text-line1::after {
    content: ', ';
  }
}

.section--marble {
  background: linear-gradient(180deg, var(--color-marble-white) 0%, var(--color-marble-light) 100%);
}

.section--dark {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
  color: white;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: white;
}

.section--dark p {
  color: rgba(255,255,255,0.8);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-base);
}

.navbar--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  background: rgba(10, 22, 40, 0.98);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0 rem;
  text-decoration: none;
}

.navbar__logo-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  margin-top: 0px;
}

.navbar__logo-line1 {
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
}

.navbar__logo-line2 {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  font-weight: 700;
}

.navbar__logo span {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.navbar__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__availability {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}

@media (min-width: 768px) {
  .navbar__availability {
    display: block;
  }
}

.navbar__contact-icons {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.2);
}

@media (hover: hover) {
  .navbar__icon:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
  }
}

.navbar__icon--whatsapp {
  background: var(--color-whatsapp);
  border-color: var(--color-whatsapp);
}

@media (hover: hover) {
  .navbar__icon--whatsapp:hover {
    background: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
  }
}

.navbar__icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.navbar__icon-text {
  display: none;
}

.navbar__badge {
  display: none;
}

/* Navegación interna para páginas locales */
.navbar__nav {
  display: none;
}

.navbar__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.navbar__link:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
}

.navbar__link--active {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .navbar__icon-text {
    display: block;
  }
  
  .navbar__nav {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
  }
  
  .navbar__badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 0 1rem;
    display: block;
  }
  
  .hide-on-desktop {
    display: none !important;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/images/parque.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(3px) brightness(0.7);
  transform: scale(1.05);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(15, 33, 55, 0.75) 50%, rgba(21, 42, 69, 0.80) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0.25rem 1.5rem 0;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 2rem 1.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold-light);
}

.hero__title {
  margin-bottom: 1rem;
  margin-top: -1rem;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero__title {
    margin-top: 0;
  }
}

.hero__title span {
  color: rgba(255,255,255,0.6);
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__subtitle-secondary {
  color: rgba(255,255,255,0.7);
  font-size: 0.95em;
  display: block;
  margin-top: 0.25rem;
}

.hero__subtitle-mobile {
  display: block;
}

.hero__subtitle-desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero__subtitle {
    max-width: 750px;
  }
  
  .hero__subtitle-secondary {
    color: rgba(255,255,255,0.85);
    font-size: 1em;
    display: inline;
    margin-top: 0;
  }
  
  .hero__subtitle-mobile {
    display: none;
  }
  
  .hero__subtitle-desktop {
    display: inline;
  }
}

/* ===== Section Text Mobile/Desktop ===== */
.section__text-line1,
.section__text-line2 {
  display: block;
}

@media (min-width: 768px) {
  .section__text-line1,
  .section__text-line2 {
    display: inline;
  }
}

/* ===== FAQ Text Mobile/Desktop ===== */
.faq__text-line1 {
  display: block;
}

.faq__text-line2 {
  display: none;
}

@media (min-width: 768px) {
  .faq__text-line1,
  .faq__text-line2 {
    display: inline;
  }
}

/* ===== Price Card Text Mobile/Desktop ===== */
.price-card__mobile-text {
  display: inline;
}

.price-card__desktop-text {
  display: none;
}

@media (min-width: 768px) {
  .price-card__mobile-text {
    display: none;
  }
  
  .price-card__desktop-text {
    display: inline;
  }
}

/* ===== Price Card ===== */
.price-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  padding-bottom: 1.5rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.15), inset 0 1px 0 rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  max-width: 100%;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold-light), var(--color-gold-muted));
  box-shadow: 0 1px 3px rgba(184, 134, 11, 0.3);
}

.price-card__label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
}

.price-card__price {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: #4CAF50;
}

.price-card__price span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.price-card__note {
  font-size: 0.9375rem;
  color: var(--color-soft-gray);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.price-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--color-warm-gray);
}

.price-card__features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-whatsapp);
  margin-top: 0.125rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 22px;
  height: 22px;
}

.btn--primary {
  background: var(--color-whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
}

.btn--secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

@media (hover: hover) {
  .btn--secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
  }
}

.btn--outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-marble-vein);
}

@media (hover: hover) {
  .btn--outline:hover {
    border-color: var(--color-charcoal);
    background: var(--color-marble-light);
  }
}

.btn--white {
  background: white;
  color: var(--color-charcoal);
}

@media (hover: hover) {
  .btn--white:hover {
    background: var(--color-marble-light);
    transform: translateY(-2px);
  }
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== Badge 24hs ===== */
.badge-24h {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0;
  backdrop-filter: blur(10px);
}

.badge-24h svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-light);
}

/* Ocultar badge en desktop */
@media (min-width: 768px) {
  .badge-24h {
    display: none;
  }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: linear-gradient(180deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .trust-bar__item {
    font-size: 0.9375rem;
  }
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold-muted);
}

.trust-bar__text--desktop {
  display: none;
}

.trust-bar__text--mobile {
  display: inline;
}

@media (min-width: 768px) {
  .trust-bar__text--desktop {
    display: inline;
  }
  
  .trust-bar__text--mobile {
    display: none;
  }
}

.trust-bar__item:nth-child(2),
.trust-bar__item:nth-child(3),
.trust-bar__item:nth-child(4) {
  display: none;
}

@media (min-width: 768px) {
  .trust-bar__item:nth-child(2),
  .trust-bar__item:nth-child(3),
  .trust-bar__item:nth-child(4) {
    display: flex;
  }
}

/* Trust Bar Description */
.trust-bar__description {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1.25rem;
}

.trust-bar__description--mobile {
  display: inline;
}

.trust-bar__description--desktop {
  display: none;
}

@media (min-width: 768px) {
  .trust-bar__description {
    font-size: 0.9375rem;
    padding: 1.5rem 2rem 0.75rem;
  }
  
  .trust-bar__description--mobile {
    display: none;
  }
  
  .trust-bar__description--desktop {
    display: inline;
  }
}

/* ===== How it Works (Process) ===== */
.process {
  background: white;
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section__header p {
  margin-top: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .section__header p {
    font-size: 1rem;
  }
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.process__step {
  text-align: center;
  padding: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .process__step {
    padding: 1.5rem;
  }
}

.process__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-trust-blue) 0%, var(--color-trust-blue-light) 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

@media (min-width: 768px) {
  .process__number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-charcoal-light) 100%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
  }
}

.process__step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .process__step h3 {
    font-family: var(--font-heading);
  }
}

.process__step p {
  font-size: 0.9375rem;
  color: var(--color-soft-gray);
}

/* Línea conectora en desktop */
@media (min-width: 768px) {
  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(1.5rem + 28px);
    right: -0.5rem;
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-marble-vein) 0%, transparent 100%);
    transform: translateX(50%);
  }
}

/* ===== Services Section ===== */
.services {
  background: var(--color-marble-light);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.services__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services__content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
}

.services__content p:last-child {
  margin-bottom: 0;
}

.services__content strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

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

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-marble-mid);
  transition: var(--transition-base);
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-marble-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-charcoal);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-soft-gray);
}

/* ===== FAQ Section ===== */
.faq {
  background: white;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: -2rem;
}

.faq__mobile-text {
  display: block;
}

.faq__desktop-text {
  display: none;
}

@media (min-width: 768px) {
  .faq__mobile-text {
    display: none;
  }
  
  .faq__desktop-text {
    display: block;
  }
}

.faq__item {
  border-bottom: 1px solid var(--color-marble-mid);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

@media (hover: hover) {
  .faq__question:hover {
    color: var(--color-warm-gray);
  }
}

.faq__question svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-soft-gray);
  transition: var(--transition-base);
}

.faq__item.open .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: 0;
  color: var(--color-warm-gray);
  line-height: 1.7;
  transition: padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

.faq__item.open .faq__answer p {
  padding-bottom: 1.5rem;
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--color-marble-light);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonials__stars {
  display: flex;
  gap: 0.125rem;
  color: #FBBF24;
}

.testimonials__stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonials__score {
  font-weight: 600;
  color: var(--color-charcoal);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-marble-mid);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  color: #FBBF24;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--color-warm-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-card__source {
  font-size: 0.8125rem;
  color: var(--color-soft-gray);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: -1rem;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  color: #FBBF24;
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonials__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.testimonials__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-trust-blue);
  font-weight: 600;
}

@media (hover: hover) {
  .testimonials__cta a:hover {
    text-decoration: underline;
  }
}

.testimonials__cta svg {
  width: 20px;
  height: 20px;
}

/* ===== Coverage Section ===== */
.coverage {
  background: white;
}

.coverage__content {
  max-width: 900px;
  margin: 0 auto;
}

.coverage__text h2 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.coverage__text p {
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .coverage__text p {
    max-width: 900px;
  }
}

.coverage__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .coverage__zones {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.coverage__zone h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.coverage__zone-link {
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.coverage__zone-link:hover {
  color: var(--color-gold);
}

.coverage__zone ul {
  list-style: none;
}

.coverage__zone li {
  font-size: 0.9375rem;
  color: var(--color-warm-gray);
  padding: 0.25rem 0;
}

/* ===== Coverage Compact Section ===== */
.coverage-compact {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F4 100%);
  position: relative;
  overflow: hidden;
}

.coverage-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-marble-vein), transparent);
  opacity: 0.5;
}

.coverage-compact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .coverage-compact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

.coverage-compact__box {
  background: white;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-marble-mid);
  position: relative;
  overflow: hidden;
}

.coverage-compact__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-muted));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.coverage-compact__box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--color-gold-muted);
}

.coverage-compact__box:hover::before {
  transform: scaleX(1);
}

.coverage-compact__box h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  text-align: center;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--color-marble-mid);
  letter-spacing: 0.01em;
}

.coverage-compact__box p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-warm-gray);
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-trust-blue) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta__mobile-text {
  display: inline;
}

.cta__desktop-text {
  display: none;
}

@media (min-width: 769px) {
  .cta__mobile-text {
    display: none;
  }
  
  .cta__desktop-text {
    display: inline;
  }
}

@media (max-width: 768px) {
  .cta-section p {
    font-size: 0.9375rem;
  }
  
  .section.cta-section {
    padding-bottom: 1.5rem !important;
  }
}

/* Teléfono en CTA */
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: -2rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.cta__phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-light);
}

@media (hover: hover) {
  .cta__phone:hover {
    opacity: 0.8;
  }
}

@media (min-width: 769px) {
  .cta__phone {
    display: none;
  }
}

/* Ocultar teléfono y atención 24hs del footer en mobile */
@media (max-width: 768px) {
  .footer__contact {
    display: none;
  }
}

.cta-section .btn-group {
  max-width: 500px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-charcoal);
  color: white;
  padding: 2rem 0 1.5rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    margin-bottom: 0;
  }
  
  .footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    align-self: end;
    margin-bottom: 1rem;
  }
}

.footer__brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer__brand {
    text-align: left;
  }
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer__brand h3 span {
  color: var(--color-soft-gray);
  font-weight: 700;
}

.footer__brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer__brand p:first-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer__brand p {
    margin-bottom: 1.5rem;
  }
  
  .footer__brand-experience {
    margin-top: 0;
  }
}

.footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer__contact-item {
    justify-content: flex-end;
  }
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-muted);
}

.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
}

.footer__links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

@media (min-width: 768px) {
  .footer__links ul {
    grid-template-columns: 1fr;
  }
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

@media (hover: hover) {
  .footer__links a:hover {
    color: white;
  }
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* Mobile: copyright en dos líneas */
@media (max-width: 768px) {
  .footer__bottom p {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

@media (hover: hover) {
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  }
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-whatsapp);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 72px;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-muted), var(--color-gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .price-card {
    padding: 1.75rem;
    padding-bottom: 0rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section.process .section__header {
    margin-bottom: 1.5rem;
  }
  
  .process__step:not(:last-child)::after {
    display: none;
  }
  
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
