/* ==========================================================================
   CSS PRINCIPAL - FUNERARIA MEMORIAL
   Estilo Sofisticado, Moderno y Cálido: Paz en cada despedida
   ========================================================================== */

/* 1. CONFIGURACIÓN DE VARIABLES Y SISTEMA DE DISEÑO */
:root {
  /* Paleta Oficial Funeraria Memorial */
  --color-primary: #0B2340; /* Azul noche profundo */
  --color-primary-light: #163A66; /* Azul medianoche medio */
  --color-primary-dark: #07172B; /* Azul noche sobrio */
  --color-accent: #D8C9A7; /* Champagne refinado */
  --color-accent-light: #FAF6EE; /* Marfil claro */
  --color-accent-dark: #B8A37E; /* Champagne oro cálido / tostado */
  
  /* Fallbacks y compatibilidad con estilos previos */
  --accent-gold: #D8C9A7;
  --accent-light-gold: #EFE8D8;
  --color-gray: #6B7280; /* Gris piedra */
  
  /* Escala de Neutros / Fondos */
  --bg-dark: #0B2340; /* Azul noche */
  --bg-dark-alt: #07172B; /* Azul noche profundo */
  --bg-light: #F7F4E8; /* Marfil corporativo */
  --bg-light-alt: #EFEAD9; /* Marfil suave alternativo */
  --bg-card: #FFFFFF; /* Blanco puro para tarjetas elevadas */
  --text-dark: #0B2340; /* Azul noche para lectura nítida */
  --text-dark-muted: #6B7280; /* Gris piedra elegante para subtítulos */
  --text-light: #FFFFFF;
  --text-light-muted: #D8C9A7; /* Champagne para contraste sobre fondos oscuros */
  
  /* Gradientes de Lujo */
  --gold-gradient: linear-gradient(135deg, #EADFCB 0%, #D8C9A7 50%, #BBA67D 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FAF6EE 0%, #E2D5B9 50%, #A8956F 100%);
  --dark-gradient: linear-gradient(180deg, #0B2340 0%, #07172B 100%);
  --navy-hero-overlay: linear-gradient(to bottom, rgba(11, 35, 64, 0.82), rgba(7, 23, 43, 0.94));

  /* Fuentes */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', Arial, sans-serif;
  
  /* Sombras y Efectos */
  --shadow-sm: 0 2px 10px rgba(11, 35, 64, 0.05);
  --shadow-md: 0 8px 30px rgba(11, 35, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 35, 64, 0.12);
  --shadow-gold: 0 4px 20px rgba(216, 201, 167, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.95); /* Fondo claro cristalino para cabecera */
  --glass-border: rgba(216, 201, 167, 0.35); /* Borde Champagne sutil */
  
  /* Transiciones */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Medidas de Contenedor */
  --container-width: 1320px;
}

/* 2. REINICIO Y ESTILOS GENERALES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.3;
}

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

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.alt-bg {
  background-color: var(--bg-light-alt);
}

.text-center {
  text-align: center;
}

.text-white h1, 
.text-white h2, 
.text-white h3, 
.text-white h4, 
.text-white p,
.inner-hero-section h1,
.inner-hero-section h2,
.inner-hero-section h3,
.inner-hero-section p,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p,
.step-card.highlight h1,
.step-card.highlight h2,
.step-card.highlight h3,
.step-card.highlight p {
  color: var(--text-light) !important;
}

/* 3. BOTONES Y COMPONENTES REUTILIZABLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--color-primary) !important;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--color-primary) !important;
}

.btn-secondary {
  background-color: transparent !important;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary) !important;
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: var(--color-primary) !important;
  color: var(--text-light) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modificadores para botones secundarios en secciones con fondo oscuro */
.hero-section .btn-secondary,
.text-white .btn-secondary,
.inner-hero-section .btn-secondary,
.inner-hero-content .btn-secondary,
.step-card.highlight .btn-secondary {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border-color: var(--color-accent) !important;
}

.hero-section .btn-secondary:hover,
.text-white .btn-secondary:hover,
.inner-hero-section .btn-secondary:hover,
.inner-hero-content .btn-secondary:hover,
.step-card.highlight .btn-secondary:hover {
  background: var(--gold-gradient) !important;
  color: var(--color-primary) !important;
  border-color: transparent !important;
  box-shadow: var(--shadow-gold);
}

.btn-secondary-plan {
  background-color: transparent;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-accent-dark);
  font-weight: 700;
}

.btn-secondary-plan:hover {
  background: var(--gold-gradient);
  color: var(--color-primary) !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.icon-btn {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Etiquetas de Sección */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.section-tag-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F7F4E8 !important;
  background: rgba(216, 201, 167, 0.2) !important;
  border: 1px solid rgba(216, 201, 167, 0.5) !important;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.inner-hero-section .section-tag,
.inner-hero-section .section-tag-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F7F4E8 !important;
  background: rgba(216, 201, 167, 0.22) !important;
  border: 1px solid rgba(216, 201, 167, 0.55) !important;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  max-width: 700px;
  margin: 0 auto 60px auto;
}

/* ==================== 1. BARRA DE EMERGENCIA (TOP BAR) ==================== */
.top-emergency-bar {
  display: none !important;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.emergency-badge {
  background-color: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff6b6b;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 107, 107, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

.emergency-text {
  font-weight: 500;
  color: var(--text-light);
}

.emergency-phone-link {
  color: var(--color-accent) !important;
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.emergency-phone-link:hover {
  color: #FFFFFF !important;
  text-shadow: var(--shadow-gold);
}

.icon-phone-inline {
  width: 14px;
  height: 14px;
}

/* ==================== 2. HEADER Y NAVEGACIÓN (GLASS HEADER) ==================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.04);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 201, 167, 0.55);
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 8px;
}

.header-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: var(--transition-fast);
}

.main-header.scrolled .header-logo {
  height: 38px;
  max-height: 38px;
}

.header-logo:hover {
  opacity: 0.92;
}

/* Menú de Navegación */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary) !important;
  letter-spacing: 0.2px;
  padding: 8px 2px;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--color-accent-dark) !important;
}

.nav-link:hover::after, 
.nav-link.active::after {
  width: 100%;
}

.header-ctas {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

.header-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 201, 167, 0.15);
  border: 1px solid rgba(216, 201, 167, 0.6);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-phone-badge svg {
  color: var(--color-accent-dark);
}

.header-phone-badge:hover {
  background: var(--color-primary);
  color: #FAF8F5;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(11, 35, 64, 0.2);
  transform: translateY(-1px);
}

.header-phone-badge:hover svg {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .header-phone-badge {
    display: none;
  }
}

/* --- Dropdown Menu Estilos --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  flex-direction: column !important;
  gap: 0 !important;
  list-style: none;
  margin-top: 10px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-item {
  display: block;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  transition: var(--transition-fast);
  text-align: left;
  white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--color-primary) !important;
  background-color: var(--bg-light);
  padding-left: 28px;
}

/* Mostrar Dropdown en escritorio */
@media (min-width: 769px) {
  .dropdown.open-desktop .dropdown-menu {
    display: flex !important;
  }
}

.arrow {
  font-size: 0.65rem;
  margin-left: 3px;
  display: inline-block;
  transition: var(--transition-fast);
  color: var(--color-accent-dark);
}

.dropdown:hover .arrow, .dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Botón de WhatsApp en Header */
.btn-whatsapp-header {
  background-color: #25d366;
  color: #ffffff !important;
  font-size: 0.8rem;
  padding: 10px 18px;
  gap: 8px;
  font-weight: 700;
}

.btn-whatsapp-header:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.icon-whatsapp {
  width: 15px;
  height: 15px;
}

/* Toggle del Menú Móvil */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

/* ==================== 3. HERO RESPETUOSO (HERO SECTION) ==================== */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0 100px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 680px;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(11, 35, 64, 0.55);
  border: 1px solid rgba(216, 201, 167, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  color: #FAF8F5;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.badge-item:hover {
  background: rgba(216, 201, 167, 0.25);
  border-color: rgba(216, 201, 167, 0.75);
  transform: translateY(-2px);
}

.icon-badge {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* ==================== 4. ASISTENCIA INMEDIATA (SOS SECTION) ==================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.step-card:nth-child(2) {
  margin-top: 40px;
}

.step-card {
  background-color: var(--bg-light);
  border: 1px solid rgba(216, 201, 167, 0.15);
  border-radius: 20px 20px 4px 20px; /* Unique asymmetrical shape */
  border-top: 3px solid var(--color-primary-light);
  padding: 40px 30px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.step-number {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.step-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(165, 121, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
  background: var(--gold-gradient);
  color: #121214;
}

.step-icon {
  width: 28px;
  height: 28px;
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--bg-dark);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.step-link {
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
}

.step-link:hover {
  color: var(--color-accent);
}

/* Tarjeta Destacada (Paso 2: Trámites) */
.step-card.highlight {
  background: linear-gradient(180deg, #0B2340 0%, #061528 100%) !important;
  border: 2px solid var(--color-accent) !important;
  border-radius: 20px 20px 4px 20px !important;
  box-shadow: 0 16px 40px rgba(11, 35, 64, 0.3), 0 0 25px rgba(216, 201, 167, 0.15) !important;
  transform: translateY(-6px);
}

.step-card.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(11, 35, 64, 0.4), 0 0 35px rgba(216, 201, 167, 0.25) !important;
}

.step-card.highlight .step-number {
  color: var(--color-accent) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.step-card.highlight .step-title,
.step-card.highlight h3 {
  color: #FFFFFF !important;
  font-family: var(--font-headings);
  font-size: 1.45rem;
  margin-bottom: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step-card.highlight .step-desc,
.step-card.highlight p {
  color: #FAF8F5 !important;
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0.95;
}

.step-card.highlight .step-desc strong,
.step-card.highlight p strong {
  color: var(--color-accent) !important;
  font-weight: 800;
}

.step-tag-highlight {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #0B2340 !important;
  background: var(--gold-gradient) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  padding: 6px 16px;
  border-radius: 30px;
  margin-top: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* ==================== 5. QUIÉNES SOMOS (TRUST SECTION) ==================== */
.nosotros-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nosotros-visual {
  position: relative;
  padding-right: 30px;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: var(--shadow-md);
}

.badge-float {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 10;
  background-color: var(--bg-dark);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: 24px;
  width: 200px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.badge-float-num {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.badge-float-text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.nosotros-content p {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 35px;
}

.value-item {
  display: flex;
  gap: 16px;
}

.value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(165, 121, 73, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--text-dark-muted);
  margin-bottom: 0;
}

/* ==================== 6. NUESTROS SERVICIOS ==================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.35);
  border-top: 3px solid var(--color-accent);
  border-radius: 14px;
  padding: 38px 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.05);
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 380px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 35, 64, 0.12);
  border-color: rgba(216, 201, 167, 0.85);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background-color: rgba(165, 121, 73, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  color: #121214;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--bg-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-action-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
}

.service-action-link:hover {
  color: var(--color-accent);
}

.service-badge-include {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background-color: rgba(165, 121, 73, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

/* ==================== 7. PLANES FUNERARIOS DE SEPELIO ==================== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.35);
  border-radius: 14px;
  padding: 44px 28px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.05);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 35, 64, 0.12);
  border-color: rgba(216, 201, 167, 0.85);
}

.plan-header {
  text-align: center;
  border-bottom: 1px solid rgba(216, 201, 167, 0.25);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.55rem;
  color: var(--bg-dark);
  margin-bottom: 8px;
  font-family: var(--font-headings);
}

.plan-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  background-color: rgba(216, 201, 167, 0.2);
  border: 1px solid rgba(216, 201, 167, 0.5);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.plan-subtitle {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  margin-bottom: 35px;
  flex-grow: 1;
  line-height: 1.6;
}

.plan-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-footer {
  margin-top: auto;
}

.bullet-check {
  color: var(--color-accent-dark);
  margin-right: 8px;
  font-weight: bold;
}

/* Plan Recomendado Destacado */
.plan-card.recommended {
  background: linear-gradient(180deg, #0E2B4E 0%, #07172B 100%) !important;
  border: 2px solid var(--color-accent) !important;
  border-radius: 14px;
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(11, 35, 64, 0.3), 0 0 25px rgba(216, 201, 167, 0.12) !important;
  z-index: 2;
}

.plan-card.recommended:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 25px 60px rgba(11, 35, 64, 0.4), 0 0 35px rgba(216, 201, 167, 0.25) !important;
}

.recommended-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-gradient);
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.plan-card.recommended .plan-name {
  color: var(--text-light);
}

.plan-card.recommended .plan-tag {
  background-color: rgba(216, 201, 167, 0.2);
  color: var(--color-accent);
}

.plan-card.recommended .plan-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.plan-card.recommended .plan-features {
  color: rgba(255, 255, 255, 0.8);
}

.plan-card.recommended .bullet-check {
  color: var(--color-accent);
}

.plan-card.recommended .plan-header {
  border-bottom-color: rgba(216, 201, 167, 0.2);
}

/* ==================== 8. SERVICIO DE CREMACIÓN ==================== */
.cremacion-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cremacion-content .section-title {
  margin-bottom: 24px;
}

.cremacion-content p {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 30px;
}

.cremacion-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.c-bullet {
  display: flex;
  gap: 16px;
}

.c-bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: rgba(165, 121, 73, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.c-bullet-text {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.cremacion-cta-block {
  border-top: 1px solid rgba(216, 201, 167, 0.15);
  padding-top: 30px;
}

.cta-price-info {
  font-size: 0.88rem !important;
  font-style: italic;
  margin-bottom: 16px !important;
}

/* ==================== 9. PLANES PREVENTIVOS (PREVISIÓN) ==================== */
.prevision-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.prevision-title {
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.prevision-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

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

.benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 201, 167, 0.15);
  border-radius: 6px;
  padding: 24px;
}

.benefit-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-accent) !important;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Tarjeta de Formulario */
.prevision-form-card {
  background-color: var(--bg-light);
  border: 1px solid var(--color-primary-light);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark) !important;
}

.prevision-form-card h3 {
  font-size: 1.5rem;
  color: var(--bg-dark) !important;
  margin-bottom: 10px;
  text-align: center;
}

.prevision-form-card p {
  font-size: 0.85rem;
  color: var(--text-dark-muted) !important;
  margin-bottom: 30px;
  text-align: center;
}

/* Estilos para Formularios Modificados */
.styled-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.styled-form label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  letter-spacing: 0.5px;
}

.styled-form input,
.styled-form select,
.styled-form textarea {
  font-family: var(--font-body);
  padding: 13px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(216, 201, 167, 0.45);
  background-color: #FAF8F5;
  font-size: 0.94rem;
  color: var(--text-dark);
  transition: all 0.25s ease;
}

.styled-form input:focus,
.styled-form select:focus,
.styled-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 3.5px rgba(216, 201, 167, 0.3);
  background-color: #FFFFFF;
}

.form-success-alert {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid #28a745;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 20px;
  animation: fadeIn 0.4s ease;
}

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

/* ==================== 10. PREGUNTAS FRECUENTES (FAQ ACORDEÓN) ==================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(216, 201, 167, 0.35);
  border-radius: 12px;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(11, 35, 64, 0.04);
}

.faq-item:hover {
  border-color: rgba(216, 201, 167, 0.75);
  box-shadow: 0 8px 25px rgba(11, 35, 64, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-dark);
  transition: var(--transition-fast);
}

.faq-question:focus {
  outline: none;
}

.faq-icon-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(216, 201, 167, 0.18);
  border: 1px solid rgba(216, 201, 167, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.faq-item.active {
  border-color: rgba(216, 201, 167, 0.9);
  box-shadow: 0 10px 25px rgba(11, 35, 64, 0.08);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-item.active .faq-icon-arrow {
  background: var(--gold-gradient);
  color: var(--color-primary);
  transform: rotate(45deg);
  border-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 30px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
}

/* ==================== 11. TESTIMONIOS ==================== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-headings);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--bg-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

/* Controles de Slider */
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  background-color: transparent;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-gradient);
  color: #121214;
  border-color: transparent;
}

/* ==================== 12. CONTACTO, FORMULARIO Y MAPA ==================== */
.contacto-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contacto-intro {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  margin-bottom: 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: rgba(165, 121, 73, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark-muted);
  margin-bottom: 4px;
}

.info-text a,
.info-text span {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bg-dark);
}

.info-text a:hover {
  color: var(--color-primary);
}

/* Simulación de Mapa */
.map-placeholder {
  position: relative;
  background-color: #1c1c1e;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  height: 200px;
  overflow: hidden;
}

.map-placeholder .btn-secondary {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border: 1.5px solid var(--color-primary-light) !important;
}

.map-placeholder .btn-secondary:hover {
  background-color: var(--color-primary) !important;
  color: #121214 !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.map-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 30px rgba(165, 121, 73, 0.1);
  pointer-events: none;
  z-index: 2;
}

.map-link-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
}

/* Tarjeta Formulario de Contacto */
.contacto-form-wrapper {
  position: sticky;
  top: 100px;
}

.contacto-form-card {
  background-color: var(--bg-light);
  border: 1px solid rgba(216, 201, 167, 0.2);
  padding: 40px 30px;
}

.contacto-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contacto-form-card p {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  margin-bottom: 30px;
}

/* ==================== 13. PIE DE PÁGINA (FOOTER) ==================== */
.main-footer {
  background-color: var(--bg-dark-alt);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px 0;
  border-top: 1px solid rgba(216, 201, 167, 0.2);
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  margin-top: 20px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(247, 244, 232, 0.75);
}

.footer-logo {
  height: 80px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  background: #F7F4E8;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(216, 201, 167, 0.6);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: inline-block;
  filter: none;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 201, 167, 0.25);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-gradient);
  color: var(--color-primary);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--color-accent) !important;
  padding-left: 4px;
}

.footer-contact p {
  margin-bottom: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.footer-link-tel {
  color: var(--color-accent) !important;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.78rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer-legal-links a:hover {
  color: var(--color-accent) !important;
}

/* Widget Flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff !important;
  height: 54px;
  border-radius: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-icon {
  width: 26px;
  height: 26px;
}

.whatsapp-float-tooltip {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ==========================================================================
   4. ESTILOS RESPONSIVOS (MOBILE-FIRST & BREAKPOINTS)
   ========================================================================== */

/* Tablet y Pantallas Medianas (max-width: 1024px) */
@media (max-width: 1024px) {
  .services-grid {
    /* Centrado dinámico con flexbox */
  }
  
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .plan-card.recommended {
    transform: none; /* Evita que rompa layout al no estar centrada en 4 columnas */
  }
  
  .plan-card.recommended .recommended-badge {
    width: 70%;
  }

  .contacto-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contacto-form-wrapper {
    position: static;
  }

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

/* Dispositivos Móviles y Tablets (max-width: 1080px) */
@media (max-width: 1080px) {
  .header-phone-badge {
    display: none !important;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background-color: #FFFFFF;
    padding: 40px 24px;
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(216, 201, 167, 0.3);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-link {
    font-size: 1.15rem;
    color: var(--color-primary) !important;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-accent-dark) !important;
  }
  
  /* Dropdown en móvil */
  .nav-menu .dropdown {
    width: 100%;
  }
  
  .nav-menu .dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 0 5px 20px !important;
    min-width: auto !important;
    margin-top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .nav-menu .dropdown-menu::before {
    display: none !important;
  }
  
  .nav-menu .dropdown-item {
    padding: 6px 12px !important;
    font-size: 1.05rem !important;
    color: var(--text-dark-muted) !important;
  }
  
  .nav-menu .dropdown-item:hover,
  .nav-menu .dropdown-item.active {
    color: var(--color-primary) !important;
    background-color: transparent !important;
    padding-left: 16px !important;
  }
  
  .nav-menu .arrow {
    display: none !important;
  }
  
  /* Hero */
  .hero-section {
    padding: 100px 0 60px 0;
    min-height: auto;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }
  
  /* SOS Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Nosotros */
  .nosotros-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nosotros-visual {
    padding-right: 0;
  }

  .nosotros-content {
    text-align: center;
  }

  .nosotros-content .btn {
    margin: 15px auto 0 auto;
  }
  
  /* Cremación */
  .cremacion-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cremacion-visual {
    order: -1;
  }

  .cremacion-content {
    text-align: center;
  }

  .cremacion-bullets {
    align-items: center;
    text-align: left;
  }

  .cremacion-content .btn {
    margin: 15px auto 0 auto;
  }

  /* Previsión */
  .prevision-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .prevision-content-left {
    text-align: center;
  }

  .prevision-content-left .btn {
    margin: 15px auto 0 auto;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Contacto */
  .contacto-info {
    text-align: center;
  }

  .contacto-info .info-items {
    align-items: center;
    text-align: left;
  }

  .contacto-info .btn {
    margin: 15px auto 0 auto;
  }
}

/* Teléfonos Móviles Pequeños (max-width: 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .top-emergency-bar {
    font-size: 0.78rem;
    text-align: center;
  }
  
  .top-bar-content {
    justify-content: center;
    flex-direction: column;
  }
  
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .btn-whatsapp-header {
    display: none; /* Oculta botón en header para dar espacio */
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .services-grid {
    /* Adaptado por flexbox */
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-card {
    padding: 30px 16px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==================== ESTILOS ADICIONALES PARA PÁGINAS INTERNAS ==================== */
.inner-hero-section {
  position: relative;
  background-color: var(--bg-dark);
  padding: 120px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(216, 201, 167, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.inner-hero-title {
  font-size: 2.8rem;
  color: var(--text-light) !important;
  margin-bottom: 15px;
}

.inner-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light-muted) !important;
}

@media (max-width: 768px) {
  .inner-hero-section {
    padding: 100px 0 50px 0;
  }
  .inner-hero-title {
    font-size: 2rem;
  }
  .inner-hero-subtitle {
    font-size: 0.95rem;
  }
}

/* ==================== 10. PESTAÑAS DE SERVICIOS (TABS) Y RESPONSIVIDAD ADICIONAL ==================== */

/* Barra pegajosa para el selector de pestañas */
.services-tab-navigation-bar {
  background-color: #FAF8F5 !important;
  border-bottom: 1px solid rgba(165, 121, 73, 0.12) !important;
  padding: 30px 0 25px 0 !important;
  position: sticky !important;
  top: 76px !important;
  z-index: 99 !important;
}

.services-tab-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #FAF8F5 !important;
  border: 1px solid rgba(165, 121, 73, 0.18) !important;
  border-radius: 60px !important;
  padding: 6px !important;
  gap: 6px !important;
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-shadow: 0 6px 20px rgba(165, 121, 73, 0.04) !important;
  overflow: visible !important;
  flex-wrap: nowrap !important;
}

.services-tab-btn {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--text-dark-muted) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
}

.services-tab-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
  transition: transform 0.3s ease !important;
}

.services-tab-btn:hover {
  color: var(--color-primary) !important;
  background-color: rgba(165, 121, 73, 0.08) !important;
}

.services-tab-btn:hover svg {
  transform: translateY(-1px) !important;
}

.services-tab-btn.active {
  background: var(--gold-gradient) !important;
  color: #121214 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(165, 121, 73, 0.28) !important;
}

.services-tab-btn.active svg {
  fill: #121214 !important;
}

/* Paneles de Contenido (Fade In & Slide Up) */




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

/* --- Mejoras de Contraste y Legibilidad en Fondos Oscuros --- */
.bg-dark,
.section-prevision,
[style*="background: var(--bg-dark)"],
[style*="background-color: var(--bg-dark)"],
.prevision-container,
.tab-panel .section-prevision,
.prevision-content-left {
  color: var(--text-light) !important;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4,
.section-prevision h1, .section-prevision h2, .section-prevision h3, .section-prevision h4,
[style*="background: var(--bg-dark)"] h1, [style*="background: var(--bg-dark)"] h2, [style*="background: var(--bg-dark)"] h3, [style*="background: var(--bg-dark)"] h4,
[style*="background-color: var(--bg-dark)"] h1, [style*="background-color: var(--bg-dark)"] h2, [style*="background-color: var(--bg-dark)"] h3, [style*="background-color: var(--bg-dark)"] h4,
.prevision-container h1, .prevision-container h2, .prevision-container h3, .prevision-container h4,
.prevision-content-left h1, .prevision-content-left h2, .prevision-content-left h3, .prevision-content-left h4 {
  color: var(--text-light) !important;
}

.bg-dark p,
.section-prevision p,
[style*="background: var(--bg-dark)"] p,
[style*="background-color: var(--bg-dark)"] p,
.prevision-container p,
.prevision-content-left p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Salvaguardar Botones en Secciones Oscuras */
.bg-dark .btn-secondary,
.section-prevision .btn-secondary,
[style*="background: var(--bg-dark)"] .btn-secondary,
[style*="background-color: var(--bg-dark)"] .btn-secondary,
.prevision-container .btn-secondary {
  color: var(--text-light) !important;
  border-color: var(--color-primary-light) !important;
}

.bg-dark .btn-secondary:hover,
.section-prevision .btn-secondary:hover,
[style*="background: var(--bg-dark)"] .btn-secondary:hover,
[style*="background-color: var(--bg-dark)"] .btn-secondary:hover,
.prevision-container .btn-secondary:hover {
  background-color: var(--color-primary) !important;
  color: #121214 !important;
  border-color: var(--color-primary) !important;
}

/* --- Mejoras de Centrado e Información --- */
.text-center {
  text-align: center !important;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  text-align: center !important;
  color: var(--text-dark-muted) !important;
  line-height: 1.6;
}

.section-prevision .section-tag-gold,
.section-prevision h2 {
  text-align: left;
}

/* --- Responsividad Adicional (Tablets y Dispositivos Medianos) --- */
@media (max-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  .services-tab-navigation-bar {
    top: 72px; /* Adaptación para pantallas táctiles */
  }

  .services-tab-container {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    padding: 8px !important;
    gap: 8px !important;
    border-radius: 30px !important;
    scrollbar-width: none !important;
  }
  .services-tab-container::-webkit-scrollbar {
    display: none !important;
  }

  .services-tab-btn {
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }

  .prevision-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .prevision-content-left {
    text-align: center;
  }

  .prevision-content-left h2,
  .prevision-content-left p,
  .prevision-content-left .section-tag-gold {
    text-align: center !important;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }

  .cremacion-container {
    flex-direction: column;
    gap: 35px !important;
  }

  .cremacion-content, .cremacion-visual {
    flex: 1 1 100% !important;
    text-align: center !important;
  }
  
  .cremacion-bullets {
    align-items: flex-start;
    text-align: left;
    max-width: 550px;
    margin: 30px auto 0 auto;
  }
}

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

  .benefits-grid {
    grid-template-columns: 1fr !important;
  }

  .prevision-form-card {
    padding: 30px 20px !important;
  }
}

/* ==========================================================================
   5. FORO VISUAL CARDS
   ========================================================================== */
.foro-visual-card {
  background: #ffffff;
  border: 1px solid rgba(216, 201, 167, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.foro-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 35, 64, 0.12);
  border-color: rgba(216, 201, 167, 0.85);
}

.foro-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(216, 201, 167, 0.2);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.foro-visual-card:hover .foro-card-img {
  transform: scale(1.05);
}

.foro-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.foro-card-body h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.foro-card-body p {
  color: var(--text-dark-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.foro-card-divider {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 20px 0;
}

.foro-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a2b3c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.foro-read-more:hover {
  color: var(--color-primary);
}

.foro-read-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.foro-read-more:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   6. NUEVOS ESTILOS: MISIÓN/VISIÓN Y BOTÓN FLOTANTE DE LLAMADA
   ========================================================================== */
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(165, 121, 73, 0.08) !important;
  border-color: var(--color-primary) !important;
}

.call-float {
  position: fixed;
  bottom: 92px; /* Encima del botón de WhatsApp (bottom: 24px + height: 54px + gap: 14px) */
  right: 24px;
  background: var(--gold-gradient);
  color: #121214 !important;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.call-float:hover {
  transform: translateY(-4px);
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 20px rgba(165, 121, 73, 0.45);
}

.call-float-icon {
  width: 22px;
  height: 22px;
  fill: #121214;
}

.call-float-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.call-float-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
}

.call-float-number {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* Ajustes en pantallas pequeñas para que no se superpongan o se achiquen adecuadamente */
@media (max-width: 480px) {
  .call-float {
    padding: 0 16px;
    gap: 8px;
    height: 50px;
    border-radius: 25px;
    bottom: 84px;
    right: 16px;
  }
  .call-float-label {
    font-size: 0.65rem;
  }
  .call-float-number {
    font-size: 0.85rem;
  }
  .call-float-icon {
    width: 18px;
    height: 18px;
  }
}

  .nav-menu .dropdown.open .dropdown-menu {
    display: flex !important;
  }


.tab-panel {
  display: none !important;
}

.tab-panel.active {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  animation: fadeInTab 0.5s ease-in-out forwards !important;
}

/* Footer Bottom Styles Update */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.developer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.developer-info a {
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.developer-info img {
  width: 40px;
  height: auto;
}

.copyright-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.copyright-info p {
  margin: 0;
}

@media (max-width: 991px) {
  .footer-bottom-content {
    flex-direction: column;
    justify-content: center;
  }
  .copyright-info {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 10px;
  }
}

/* ==================== 14. ETIQUETAS DE SECCIÓN DE ALTA VISIBILIDAD ==================== */
.section-tag-gold,
.articulo-tag,
.inner-hero-section .section-tag,
.inner-hero-section .section-tag-gold,
.articulo-hero .articulo-tag,
.articulo-hero .section-tag-gold {
  display: inline-block !important;
  background: rgba(216, 201, 167, 0.25) !important;
  color: #F7F4E8 !important;
  border: 1px solid rgba(216, 201, 167, 0.7) !important;
  padding: 6px 20px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.top-emergency-bar {
  display: none !important;
}

/* ==================== 15. EXPERIENCIA INMERSIVA Y ANIMACIONES SCROLL ==================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Divisor Dorado Minimalista */
.divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 35px auto;
  max-width: 260px;
}

.divider-gold::before,
.divider-gold::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 201, 167, 0.6), transparent);
}

.divider-gold span {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ==================== 16. DISEÑO EDITORIAL INSPIRADO EN AROHA STUDIO ==================== */
/* Tipografía editorial de alto impacto */
.font-display {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px;
}

.aroha-hero-section {
  position: relative;
  padding: 80px 0 70px;
  background-color: #FAF8F5;
  border-bottom: 1px solid rgba(216, 201, 167, 0.4);
  overflow: hidden;
}

/* Sutil textura ambiental de fondo */
.aroha-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(216, 201, 167, 0.22) 0%, rgba(250, 248, 245, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(11, 35, 64, 0.04) 0%, rgba(250, 248, 245, 0) 50%);
  pointer-events: none;
  z-index: 1;
}

.aroha-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.aroha-hero-content {
  text-align: left;
}

.aroha-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-primary-light);
  margin-bottom: 20px;
  padding: 6px 14px;
  background-color: rgba(216, 201, 167, 0.25);
  border: 1px solid rgba(216, 201, 167, 0.5);
  border-radius: 4px;
}

.aroha-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.aroha-hero-title b,
.aroha-hero-title strong {
  font-weight: 800;
  color: var(--color-primary-dark);
  background: linear-gradient(135deg, #0B2340 0%, #163A66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aroha-hero-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: #374151;
  max-width: 620px;
  margin-bottom: 30px;
}

.aroha-hero-desc b {
  color: var(--color-primary);
  font-weight: 700;
}

.aroha-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

/* Métricas y Sellos de Confianza */
.aroha-hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(216, 201, 167, 0.5);
  max-width: 620px;
}

.aroha-trust-item {
  display: flex;
  flex-direction: column;
}

.aroha-trust-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.aroha-trust-label {
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aroha-trust-divider {
  width: 1px;
  height: 34px;
  background-color: rgba(216, 201, 167, 0.7);
}

/* Columna Visual del Hero */
.aroha-hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.aroha-hero-image-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: visible;
}

.aroha-hero-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(216, 201, 167, 0.6);
  box-shadow: 0 20px 45px rgba(11, 35, 64, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aroha-hero-main-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(11, 35, 64, 0.22);
}

.aroha-hero-floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.7);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

.floating-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FAF8F5;
  border: 1.5px solid rgba(216, 201, 167, 0.8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 35, 64, 0.08);
}

.floating-badge-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-badge-info strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.floating-badge-info span {
  font-size: 0.8rem;
  color: #6B7280;
}

@keyframes floatSubtle {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Ticker Marquee Infinito (Aroha Studio Signature) */
.aroha-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-accent-light);
  border-top: 1px solid rgba(216, 201, 167, 0.4);
  border-bottom: 1px solid rgba(216, 201, 167, 0.4);
  padding: 16px 0;
  position: relative;
  z-index: 10;
}

.aroha-ticker-track {
  display: flex;
  width: max-content;
  animation: arohaMarquee 26s linear infinite;
  white-space: nowrap;
}

.aroha-ticker-track:hover {
  animation-play-state: paused;
}

.aroha-ticker-item {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
}

.aroha-ticker-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition-fast);
}

.aroha-ticker-item a:hover {
  color: var(--color-accent);
}

.aroha-ticker-sep {
  color: var(--color-accent);
  margin: 0 18px;
  font-size: 0.9rem;
  opacity: 0.8;
  vertical-align: middle;
}

@keyframes arohaMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sección Editorial "Es momento de contar con el mejor respaldo" */
.aroha-intro-section {
  padding: 90px 0 50px;
  background-color: #FAF8F5;
  text-align: center;
}

.aroha-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 14px;
}

.aroha-headline-big {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-primary);
  max-width: 860px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}

.aroha-headline-big b {
  display: block;
  color: var(--color-primary-dark);
}

.aroha-subhead-editorial {
  font-size: 1.15rem;
  color: #4B5563;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Tarjetas Informativas Limpias (Estilo Info-Boxes Aroha) */
.aroha-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 70px;
}

.aroha-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.4);
  border-radius: 6px;
  padding: 44px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(11, 35, 64, 0.04);
  position: relative;
}

.aroha-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 201, 167, 0.9);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.09);
}

.aroha-card-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #FAF8F5;
  border: 2px solid rgba(216, 201, 167, 0.7);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(11, 35, 64, 0.08);
  transition: all 0.35s ease;
}

.aroha-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.aroha-card:hover .aroha-card-icon {
  border-color: var(--color-accent);
  box-shadow: 0 10px 24px rgba(11, 35, 64, 0.15);
  transform: translateY(-3px) scale(1.05);
}

.aroha-card:hover .aroha-card-img {
  transform: scale(1.1);
}

.aroha-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.aroha-card-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}

.aroha-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.aroha-card-btn:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-primary);
  gap: 12px;
}

/* Sección "Detrás de la pantalla / Quiénes Somos" Split Editorial */
.aroha-split-about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 85px 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 40px auto 80px;
}

.aroha-about-visual {
  position: relative;
  padding: 0 20px;
}

.aroha-about-visual img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(216, 201, 167, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  max-height: 480px;
}

.aroha-about-content {
  padding-right: 40px;
}

.aroha-about-content .aroha-section-eyebrow {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.aroha-about-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.aroha-about-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 244, 232, 0.88);
  margin-bottom: 18px;
}

/* Banner de Cita de Gran Formato (Aroha Impact Statement) */
.aroha-statement-banner {
  background-color: #F4F2E6;
  border-top: 1px solid rgba(216, 201, 167, 0.6);
  border-bottom: 1px solid rgba(216, 201, 167, 0.6);
  padding: 95px 24px;
  text-align: center;
}

.aroha-statement-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 30px;
  letter-spacing: -0.5px;
}

.aroha-statement-title b {
  display: block;
  color: var(--color-primary-dark);
}

/* Módulo de Contacto Inmediato (Llamada & WhatsApp) */
.aroha-direct-contact-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.aroha-contact-btn {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.15rem !important;
  letter-spacing: 1px !important;
  padding: 16px 32px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.35s ease !important;
}

.btn-whatsapp-direct {
  background-color: #25D366 !important;
  color: #FFFFFF !important;
  border: 1px solid #1EBE5D !important;
}

.btn-whatsapp-direct:hover {
  background-color: #20BA5A !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 991px) {
  .aroha-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .aroha-hero-content {
    text-align: center;
  }
  .aroha-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .aroha-hero-actions {
    justify-content: center;
  }
  .aroha-hero-trust-bar {
    justify-content: center;
    margin: 0 auto;
  }
  .aroha-hero-visual-wrap {
    order: -1;
  }
  .aroha-hero-image-card {
    max-width: 100%;
  }
  .aroha-hero-main-img {
    height: 320px;
  }
  .aroha-split-about {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }
  .aroha-about-content {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .aroha-hero-section {
    padding: 50px 0 40px;
  }
  .aroha-hero-main-img {
    height: 250px;
  }
  .aroha-hero-floating-badge {
    bottom: -15px;
    left: 10px;
    right: 10px;
    padding: 10px 14px;
  }
  .aroha-hero-trust-bar {
    flex-wrap: wrap;
    gap: 15px;
  }
  .aroha-trust-divider {
    display: none;
  }
  .aroha-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== NUEVO PROCESO EDITORIAL CONTINUO LIMPIO (SIN CÍRCULOS) ==================== */
.aroha-process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 25px;
}

.process-step-item {
  display: flex;
  flex-direction: column;
}

.process-step-card {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.5);
  border-radius: 12px;
  padding: 44px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(11, 35, 64, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 360px;
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 201, 167, 0.95);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.1);
}

/* Tarjeta Activa / Destacada (Paso 2) */
.process-step-card.active {
  background: linear-gradient(180deg, #0B2340 0%, #061528 100%);
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 16px 40px rgba(11, 35, 64, 0.25);
}

/* Número Tipográfico Limpio */
.process-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-dark);
  margin-bottom: 20px;
  display: block;
}

.process-step-num.active {
  color: var(--color-accent);
}

.process-pill-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0B2340;
  background: var(--gold-gradient);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.process-step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.process-step-card.active .process-step-title {
  color: #FFFFFF;
}

.process-step-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.process-step-card.active .process-step-desc {
  color: rgba(250, 248, 245, 0.9);
}

.process-step-card.active .process-step-desc strong {
  color: var(--color-accent);
}

.process-step-action {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.process-step-action:hover {
  color: var(--color-accent-dark);
  gap: 12px;
}

.process-guarantee-note {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsividad para móviles y tablet */
@media (max-width: 991px) {
  .aroha-process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aroha-process-timeline::before {
    display: none;
  }
  .process-step-card {
    min-height: auto;
  }
}

/* ==================== HERO EDITORIAL INTERNO (ESTILO AROHA STUDIO) ==================== */
.aroha-inner-hero {
  position: relative;
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, rgba(11, 35, 64, 0.94) 0%, rgba(6, 21, 40, 0.96) 100%), url('assets/servicios_hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0 85px;
  text-align: center;
  border-bottom: 1px solid rgba(216, 201, 167, 0.35);
  overflow: hidden;
}

.aroha-inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(216, 201, 167, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.aroha-inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.aroha-inner-hero .aroha-eyebrow {
  background-color: rgba(216, 201, 167, 0.15);
  border-color: rgba(216, 201, 167, 0.4);
  color: var(--color-accent);
}

.aroha-inner-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.aroha-inner-hero-title b {
  color: var(--color-accent);
  display: block;
}

.aroha-inner-hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.88);
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .aroha-inner-hero {
    padding: 85px 0 60px;
  }
}

/* ========================================================
   AROHA EDITORIAL DESIGN SYSTEM: SERVICIOS.HTML
   ======================================================== */

/* --- 1. PLANES DE SEPELIO EDITORIAL GRID --- */
.aroha-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .aroha-plans-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.aroha-plan-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 35, 64, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.04);
}

.aroha-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.1);
  border-color: rgba(216, 201, 167, 0.8);
}

.aroha-plan-card.featured {
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
  box-shadow: 0 12px 36px rgba(11, 35, 64, 0.22), 0 0 0 1px rgba(216, 201, 167, 0.3);
  transform: scale(1.02);
  z-index: 2;
}

.aroha-plan-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 35, 64, 0.35), 0 0 20px rgba(216, 201, 167, 0.4);
}

.aroha-plan-badge-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #b89c68 100%);
  color: var(--color-primary);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
}

.aroha-plan-head {
  padding: 36px 30px 24px;
  border-bottom: 1px solid rgba(11, 35, 64, 0.08);
  position: relative;
}

.aroha-plan-card.featured .aroha-plan-head {
  padding-top: 48px;
  border-bottom-color: rgba(216, 201, 167, 0.2);
}

.aroha-plan-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

.aroha-plan-card.featured .aroha-plan-tag {
  color: var(--color-accent);
}

.aroha-plan-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.aroha-plan-card.featured .aroha-plan-title {
  color: #FFFFFF;
}

.aroha-plan-tagline {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin: 0;
}

.aroha-plan-card.featured .aroha-plan-tagline {
  color: rgba(250, 248, 245, 0.78);
}

.aroha-plan-features-wrap {
  padding: 28px 30px;
  flex: 1;
}

.aroha-plan-features-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark-muted);
  margin-bottom: 16px;
}

.aroha-plan-card.featured .aroha-plan-features-label {
  color: var(--color-accent);
}

.aroha-plan-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aroha-plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-primary);
}

.aroha-plan-card.featured .aroha-plan-feature-list li {
  color: #FFFFFF;
}

.aroha-plan-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(216, 201, 167, 0.25);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}

.aroha-plan-card.featured .aroha-plan-check {
  background: var(--color-accent);
  color: var(--color-primary);
}

.aroha-plan-action {
  padding: 24px 30px 32px;
}

.aroha-plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.aroha-plan-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.aroha-plan-btn-outline:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.aroha-plan-btn-featured {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
}

.aroha-plan-btn-featured:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}


/* --- 2. PLANES PREVENTIVOS / PREVISIÓN FAMILIAR (EDITORIAL SPLIT) --- */
.aroha-prevision-section {
  position: relative;
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 95px 0;
  overflow: hidden;
}

.aroha-prevision-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(105deg, rgba(11, 35, 64, 0.97) 0%, rgba(11, 35, 64, 0.92) 55%, rgba(11, 35, 64, 0.85) 100%),
    url('assets/foro_opciones_funerarias_1779383426443.png');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.aroha-prevision-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .aroha-prevision-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.aroha-prevision-tag {
  display: inline-block;
  background: rgba(216, 201, 167, 0.12);
  border: 1px solid rgba(216, 201, 167, 0.4);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.aroha-prevision-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.aroha-prevision-headline b {
  color: var(--color-accent);
}

.aroha-prevision-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.88);
  margin-bottom: 36px;
  max-width: 600px;
}

.aroha-prevision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 576px) {
  .aroha-prevision-grid {
    grid-template-columns: 1fr;
  }
}

.aroha-prevision-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 201, 167, 0.2);
  border-radius: 10px;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.aroha-prevision-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.aroha-prevision-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(216, 201, 167, 0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.aroha-prevision-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.aroha-prevision-card-text {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(250, 248, 245, 0.75);
  margin: 0;
}

/* Card Asesoría Derecha */
.aroha-prevision-action-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 42px 36px;
  color: var(--color-primary);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.aroha-prevision-action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

.aroha-action-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}

.aroha-action-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
  margin: 0 0 12px;
}

.aroha-action-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 26px;
}

.aroha-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aroha-action-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aroha-action-btn-call:hover {
  background: #153c69;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.aroha-action-btn-ws {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aroha-action-btn-ws:hover {
  background: #1fb855;
  transform: translateY(-2px);
  color: #FFFFFF;
}


/* --- 3. ESTÁNDAR MEMORIAL (LO QUE INCLUYE) --- */
.aroha-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .aroha-inclusions-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.aroha-inclusion-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 12px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 18px rgba(11, 35, 64, 0.03);
}

.aroha-inclusion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(11, 35, 64, 0.08);
  border-color: var(--color-accent);
}

.aroha-inclusion-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-accent-dark);
  margin-bottom: 12px;
}

.aroha-inclusion-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(216, 201, 167, 0.18);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.aroha-inclusion-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.aroha-inclusion-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin: 0;
}


/* --- 4. GLOBAL BOTTOM CTA BANNER --- */
.aroha-bottom-cta {
  position: relative;
  background: var(--color-primary);
  color: #FFFFFF;
  padding: 85px 0;
  overflow: hidden;
  text-align: center;
}

.aroha-bottom-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(135deg, rgba(11, 35, 64, 0.95) 0%, rgba(11, 35, 64, 0.88) 100%),
    url('assets/nosotros_hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.aroha-bottom-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.aroha-bottom-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.aroha-bottom-cta-title b {
  color: var(--color-accent);
}

.aroha-bottom-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.85);
  margin: 0 auto 36px;
  max-width: 660px;
}

.aroha-bottom-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.aroha-bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.aroha-bottom-btn-primary {
  background: var(--color-accent);
  color: var(--color-primary);
}

.aroha-bottom-btn-primary:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.aroha-bottom-btn-ws {
  background: #25D366;
  color: #FFFFFF;
}

.aroha-bottom-btn-ws:hover {
  background: #1fb855;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ========================================================
   AROHA EDITORIAL DESIGN SYSTEM: ASISTENCIA SOS
   ======================================================== */
.aroha-sos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .aroha-sos-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

.aroha-sos-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 14px;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(11, 35, 64, 0.04);
  overflow: hidden;
}

.aroha-sos-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.1);
  border-color: rgba(216, 201, 167, 0.8);
}

.aroha-sos-card.highlight {
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
  box-shadow: 0 14px 40px rgba(11, 35, 64, 0.28), 0 0 0 1px rgba(216, 201, 167, 0.3);
  transform: scale(1.02);
  z-index: 2;
}

.aroha-sos-card.highlight:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 20px 48px rgba(11, 35, 64, 0.38), 0 0 24px rgba(216, 201, 167, 0.4);
}

.aroha-sos-badge-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #b89c68 100%);
  color: var(--color-primary);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
}

.aroha-sos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.aroha-sos-card.highlight .aroha-sos-header {
  margin-top: 14px;
}

.aroha-sos-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  line-height: 1;
}

.aroha-sos-card.highlight .aroha-sos-step-num {
  color: var(--color-accent);
}

.aroha-sos-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(216, 201, 167, 0.18);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.aroha-sos-card.highlight .aroha-sos-icon-box {
  background: rgba(216, 201, 167, 0.22);
  color: var(--color-accent);
}

.aroha-sos-step-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

.aroha-sos-card.highlight .aroha-sos-step-tag {
  color: var(--color-accent);
}

.aroha-sos-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}

.aroha-sos-card.highlight .aroha-sos-title {
  color: #FFFFFF;
}

.aroha-sos-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-dark-muted);
  margin: 0 0 26px;
  flex: 1;
}

.aroha-sos-card.highlight .aroha-sos-desc {
  color: rgba(250, 248, 245, 0.88);
}

.aroha-sos-action {
  margin-top: auto;
}

.aroha-sos-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.aroha-sos-btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.aroha-sos-btn-outline:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

.aroha-sos-btn-gold {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
}

.aroha-sos-btn-gold:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.aroha-sos-btn-ws {
  background: #25D366;
  color: #FFFFFF;
}

.aroha-sos-btn-ws:hover {
  background: #1fb855;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ========================================================
   AROHA EDITORIAL DESIGN SYSTEM: CAPILLAS & SALAS
   ======================================================== */
.aroha-spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .aroha-spaces-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.aroha-space-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 18px rgba(11, 35, 64, 0.04);
  display: flex;
  flex-direction: column;
}

.aroha-space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.12);
  border-color: rgba(216, 201, 167, 0.8);
}

.aroha-space-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.aroha-space-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aroha-space-card:hover .aroha-space-img {
  transform: scale(1.06);
}

.aroha-space-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 35, 64, 0.85);
  color: var(--color-accent);
  border: 1px solid rgba(216, 201, 167, 0.5);
  padding: 5px 12px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.aroha-space-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aroha-space-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.aroha-space-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 18px;
  flex: 1;
}

.aroha-space-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aroha-space-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-primary);
  font-weight: 500;
}

.aroha-space-features i {
  color: var(--color-accent-dark);
  font-size: 0.8rem;
}

/* ========================================================
   AROHA EDITORIAL DESIGN SYSTEM: TESTIMONIOS
   ======================================================== */
.aroha-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .aroha-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

.aroha-review-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 14px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(11, 35, 64, 0.04);
  position: relative;
  transition: all 0.3s ease;
}

.aroha-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(11, 35, 64, 0.1);
  border-color: rgba(216, 201, 167, 0.6);
}

.aroha-review-stars {
  color: #D4AF37;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.aroha-review-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-primary);
  margin-bottom: 22px;
  flex: 1;
}

.aroha-review-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(11, 35, 64, 0.08);
  padding-top: 18px;
}

.aroha-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.aroha-review-author-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0;
}

.aroha-review-service-tag {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  margin: 0;
}

/* ══ Estilos de Bloque de Ubicaciones en Landing Page ══ */
.landing-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.landing-location-card {
  background: #FFFFFF;
  border: 1px solid rgba(216, 201, 167, 0.55);
  border-radius: 10px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.05);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.landing-location-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 36px rgba(11, 35, 64, 0.1);
}

.landing-location-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  background: rgba(165, 121, 73, 0.12);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.landing-location-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.landing-location-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 20px;
}

.landing-location-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(216, 201, 167, 0.35);
  padding-top: 16px;
}

.landing-location-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
}

.landing-location-details li i {
  color: var(--color-primary);
  margin-top: 3px;
  font-size: 0.95rem;
}

.landing-location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.landing-location-link:hover {
  color: var(--color-accent-dark, #8F693A);
  gap: 12px;
}

@media (max-width: 768px) {
  .landing-locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



