/* ============================================
   IMPORTAR FUENTES
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

/* ============================================
   VARIABLES CSS COMPLETAS - DESIGN SYSTEM
   ============================================ */
:root {
  /* Colores principales */
  --color-titulos-principales: #ffffff;
  --color-subtitulos: #4ec2ec;
  --color-parrafos: #cccccc;
  --color-experiencias: #f59b22;
  --color-accent: #00d4ff;

  /* Fondos */
  --fondo-negro-oscuro: #000000;
  --fondo-negro-claro: #0a0a0a;

  /* Fuentes */
  --font-titulos-principales: "Bebas Neue", sans-serif;
  --font-parrafos: "Roboto", sans-serif;

  /* Espaciado responsive con clamp() */
  --spacing-xs: clamp(8px, 1vw, 10px);
  --spacing-sm: clamp(12px, 2vw, 20px);
  --spacing-md: clamp(20px, 3vw, 40px);
  --spacing-lg: clamp(40px, 5vw, 80px);
  --spacing-xl: clamp(60px, 8vw, 100px);
  --spacing-2xl: clamp(80px, 10vw, 150px);

  --page-padding: clamp(20px, 5vw, 80px);
  --section-spacing: clamp(60px, 8vw, 100px);

  /* Tamaños de fuente responsive */
  --font-size-xs: clamp(11px, 1.5vw, 13px);
  --font-size-sm: clamp(13px, 1.8vw, 14px);
  --font-size-base: clamp(14px, 2vw, 16px);
  --font-size-md: clamp(15px, 2.2vw, 17px);
  --font-size-lg: clamp(16px, 2.5vw, 18px);
  --font-size-xl: clamp(20px, 3vw, 24px);
  --font-size-2xl: clamp(24px, 4vw, 32px);
  --font-size-3xl: clamp(28px, 5vw, 48px);
  --font-size-4xl: clamp(32px, 6vw, 62px);
  --font-size-5xl: clamp(38px, 8vw, 72px);

  /* Bordes y radios */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 50px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.6);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s ease;

  /* Z-index system */
  --z-base: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Opacidades */
  --opacity-disabled: 0.5;
  --opacity-hover: 0.8;

  /* Gradientes reutilizables */
  --gradient-orange: linear-gradient(135deg, #f59b22, #ff8800);
  --gradient-blue: linear-gradient(135deg, #00d4ff, #0066cc);
  --gradient-dark: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ============================================
   RESET BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Respeta preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
  font-family: var(--font-parrafos);
  background-color: var(--fondo-negro-oscuro);
  color: var(--color-parrafos);
  overflow-x: hidden;
}

/* ============================================
   ACCESIBILIDAD - SKIP TO MAIN CONTENT
   ============================================ */
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-experiencias);
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  z-index: var(--z-tooltip);
  border-radius: 0 0 var(--border-radius-sm) 0;
  transition: top var(--transition-base);
}

.skip-to-main:focus {
  top: 0;
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================
   FOCUS MANAGEMENT MEJORADO
   ============================================ */
*:focus {
  outline: 2px solid var(--color-experiencias);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--color-experiencias);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================
   CLASES REUTILIZABLES - BOTONES
   ============================================ */
/* Botón base - compartido por todos */
.btn-base {
  display: inline-block;
  padding: clamp(14px, 2vw, 20px) clamp(30px, 4vw, 50px);
  text-decoration: none;
  border-radius: var(--border-radius-xl);
  font-size: var(--font-size-base);
  font-weight: bold;
  letter-spacing: clamp(2px, 0.3vw, 3px);
  text-transform: uppercase;
  transition: all var(--transition-slow);
  cursor: pointer;
  border: none;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #000000;
  box-shadow: 0 10px 30px rgba(245, 155, 34, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 155, 34, 0.5);
}

.btn-secondary {
  background: var(--gradient-blue);
  color: #ffffff;
}

.btn-secondary:hover {
  transform: translateX(10px);
}

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

.btn-outline:hover {
  background: var(--color-experiencias);
  color: #000;
  transform: scale(1.05);
}

/* Botones de carrusel - compartido entre todos los carruseles */
.btn-carousel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: clamp(44px, 6vw, 60px);
  height: clamp(44px, 6vw, 60px);
  border-radius: 50%;
  font-size: clamp(18px, 2.5vw, 28px);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-carousel:hover {
  background: rgba(245, 155, 34, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.btn-carousel.prev {
  left: clamp(10px, 2vw, 30px);
}

.btn-carousel.next {
  right: clamp(10px, 2vw, 30px);
}

/* ============================================
   CONTENEDORES Y DIVISORES
   ============================================ */
.full-width-section {
  width: 100%;
  position: relative;
}

.section-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.section-divider {
  width: 100%;
  padding: 0 var(--page-padding);
  margin: 0 0 var(--section-spacing) 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.section-divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.divider-logo {
  width: 50px;
  height: 50px;
  opacity: 0.8;
  transition: all 0.4s ease;
  order: -1;
}

.divider-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
  position: fixed;
  width: 100%;
  padding: clamp(15px, 3vw, 25px) var(--page-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-fixed);
  background: var(--gradient-dark);
  transition: all var(--transition-base);
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.98);
  padding: clamp(10px, 2vw, 15px) var(--page-padding);
  backdrop-filter: blur(15px);
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0.95);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  transition: all 0.5s ease;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59b22;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

.lang-selector {
  position: relative;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: background 0.3s ease;
}

.lang-selected:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-selected .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lang-options {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  min-width: 120px;
  z-index: 1002;
}

.lang-options a {
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--fondo-negro-oscuro);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("Imagenes/Portada-optimized.webp") center/cover;
  animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-titulos-principales);
  font-size: var(--font-size-5xl);
  font-weight: bold;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease 0.2s both;
  letter-spacing: clamp(4px, 1vw, 8px);
}

.hero-description {
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease 0.4s both;
}

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

.cta-button {
  display: inline-block;
  padding: 20px 50px;
  background: linear-gradient(135deg, #f59b22, #ff8800);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 10px 30px rgba(245, 155, 34, 0.3);
  transition: all 0.4s ease;
}

.cta-button:hover {
  transform: translateY(-8px) scale(1.05);
}

/* ============================================
   SOBRE NOSOTROS
   ============================================ */
#sobre-nosotros {
  background: var(--fondo-negro-claro);
  width: 100%;
  padding: var(--section-spacing) 0;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.about-title-main {
  font-family: var(--font-titulos-principales);
  font-size: 62px;
  text-align: left;
  color: #ffffff;
  letter-spacing: 4px;
  margin-bottom: -30px;
  margin-left: -550px;
  text-transform: uppercase;
}

.about-logo {
  width: 650px;
  max-width: 90%;
  height: auto;
  opacity: 0.95;
  filter: brightness(0.95);
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #d0d0d0;
  text-align: left;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARRUSEL 3D
   ============================================ */
.carousel-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 60px 0 0 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  width: 700px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-slide[data-position="0"] {
  transform: translateX(0) translateZ(0) scale(1);
  z-index: 3;
  opacity: 1;
}

.carousel-slide[data-position="-1"] {
  transform: translateX(-65%) translateZ(-200px) scale(0.8);
  z-index: 1;
  opacity: 0.6;
}

.carousel-slide[data-position="1"] {
  transform: translateX(65%) translateZ(-200px) scale(0.8);
  z-index: 1;
  opacity: 0.6;
}

.carousel-slide[data-position="-2"],
.carousel-slide[data-position="2"],
.carousel-slide[data-position="-3"],
.carousel-slide[data-position="3"],
.carousel-slide[data-position="-4"],
.carousel-slide[data-position="4"],
.carousel-slide[data-position="5"],
.carousel-slide[data-position="6"],
.carousel-slide[data-position="-5"],
.carousel-slide[data-position="-6"] {
  transform: translateX(0) translateZ(-600px) scale(0.3);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(245, 155, 34, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 30px;
}
.carousel-arrow.next {
  right: 30px;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #f59b22;
  border-color: #f59b22;
  transform: scale(1.3);
}

/* ============================================
   EXPERIENCIAS
   ============================================ */
#experiencias {
  background: var(--fondo-negro-oscuro);
  width: 100%;
  padding: var(--section-spacing) 0;
}

.section-title-center {
  font-family: var(--font-titulos-principales);
  font-size: 62px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 90px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-title-center .highlight {
  color: #4ec2ec;
}

.experiences-alternating {
  max-width: 1400px;
  margin: 0 auto 120px auto;
}

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-img {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.experience-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.experience-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.experience-carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.experience-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.experience-carousel-slide.active:hover img {
  transform: scale(1.08);
}

.experience-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-carousel-arrow:hover {
  background: rgba(245, 155, 34, 0.9);
}

.experience-carousel-arrow.prev {
  left: 15px;
}
.experience-carousel-arrow.next {
  right: 15px;
}

.experience-carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.experience-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.experience-carousel-dot.active {
  background: #f59b22;
  transform: scale(1.2);
}

.experience-name {
  font-family: var(--font-titulos-principales);
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-experiencias);
  letter-spacing: 2px;
}

.experience-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0066cc);
  margin-bottom: 25px;
}

.experience-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #d0d0d0;
  margin-bottom: 30px;
  text-align: justify;
}

.experience-link {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #00d4ff, #0066cc);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.experience-link:hover {
  transform: translateX(10px);
}

/* ============================================
   AZORES
   ============================================ */
.azores-section {
  background: transparent;
  width: 100%;
  padding: 0;
}

.azores-header {
  text-align: center;
  margin-bottom: 80px;
}

.azores-subtitle {
  font-family: var(--font-titulos-principales);
  font-size: 56px;
  color: #ffffff;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.azores-subtitle .highlight {
  color: #4ec2ec;
}

.very-soon {
  font-family: var(--font-titulos-principales);
  font-size: 32px;
  color: #f59b22;
  letter-spacing: 8px;
}

.azores-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.azores-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.azores-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  transition: all 0.5s ease;
}

.azores-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: blur(3px) brightness(0.7);
  transform: scale(1);
}

.azores-card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 3;
}

.azores-card-title {
  font-family: var(--font-titulos-principales);
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 2px;
  transition: all 0.5s ease;
}

.azores-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.1s;
}

.azores-card:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.azores-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.azores-card:hover img {
  filter: blur(0px) brightness(1);
  transform: scale(1.15);
}

.azores-card:hover .azores-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.azores-card:hover .azores-card-title {
  color: #f59b22;
  transform: translateY(-5px);
}

/* ============================================
   HOSTS
   ============================================ */
.hosts-section {
  background: var(--fondo-negro-claro);
  width: 100%;
  padding: var(--section-spacing) 0;
}

.hosts-container {
  max-width: 1400px;
  margin: 0 auto;
}

.hosts-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 60px;
}

.section-title-contact {
  font-family: var(--font-titulos-principales);
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-titulos-principales);
}

.section-title-contact .highlight {
  color: #f59b22;
}

.cta-adventure-btn {
  display: inline-block;
  padding: 20px 55px;
  background: linear-gradient(135deg, #f59b22, #ff8800);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.cta-adventure-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

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

.host-card {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  height: 600px;
}

.host-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.host-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.host-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.host-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.host-card:hover .host-image img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.host-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 2;
}

.host-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px 30px;
  z-index: 2;
}

.host-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 400;
}

.host-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-experiencias);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.host-instagram i {
  font-size: 20px;
}

.host-instagram:hover {
  color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
    url("Imagenes/torres-panoramica.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  padding: 60px var(--page-padding) 0;
  color: #cccccc;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quienes-somos-link {
  display: inline-block;
  padding: 12px 35px;
  background: transparent;
  border: 2px solid #f59b22;
  color: #f59b22;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.quienes-somos-link:hover {
  background: #f59b22;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(245, 155, 34, 0.4);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo-img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0.95);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: #f59b22;
  background: rgba(245, 155, 34, 0.1);
}

.social-links a i {
  color: #ffffff;
}

.footer-column h3 {
  font-family: var(--font-titulos-principales);
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #f59b22;
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #999;
}

.contact-item i {
  color: #f59b22;
  font-size: 16px;
  margin-top: 2px;
}

.contact-item a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f59b22;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form input:focus {
  border-color: #f59b22;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 10px 25px;
  background: linear-gradient(135deg, #f59b22, #ff8800);
  border: none;
  border-radius: 25px;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 155, 34, 0.4);
}

.footer-certification {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.sernatur-logo {
  height: 70px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.sernatur-logo:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: #666;
}

.footer-legal {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f59b22;
}

/* ============================================
   WHATSAPP Y MODALES
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 24px;
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
  padding: 40px 20px;
}

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

.modal-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s ease;
  margin: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #888;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  color: #f59b22;
}

.modal-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.modal-text {
  flex: 1;
}

.modal-text h2 {
  font-family: var(--font-titulos-principales);
  font-size: 48px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 30px;
}

.modal-text h3 {
  font-family: var(--font-titulos-principales);
  font-size: 32px;
  color: var(--color-experiencias);
  margin-top: 30px;
  margin-bottom: 15px;
}

.modal-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-parrafos);
  margin-bottom: 20px;
}

.modal-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.modal-text li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-parrafos);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.modal-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-experiencias);
  font-weight: bold;
}

.modal-text p strong {
  color: var(--color-experiencias);
  font-weight: 500;
}

.modal-image {
  flex: 1;
  max-width: 450px;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.modal-image span {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 1px;
}

.download-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f59b22, #ff8800);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  margin-top: 30px;
  cursor: pointer;
}

.download-pdf-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 155, 34, 0.5);
}

.download-pdf-btn i {
  font-size: 20px;
}

/* ============================================
   RESPONSIVE TABLET
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --page-padding: 40px;
    --section-spacing: 70px;
  }

  .about-title-main {
    margin-left: -300px;
    font-size: 52px;
  }

  .about-logo {
    width: 500px;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .hosts-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
  }

  .modal-body {
    flex-direction: column;
  }
}

/* ============================================
   RESPONSIVE MÓVIL - OPTIMIZADO
   ============================================ */
@media (max-width: 768px) {
  :root {
    --page-padding: 20px;
    --section-spacing: 60px;
  }

  /* NAVBAR MÓVIL */
  nav {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.98);
  }

  .logo-img {
    height: 40px;
  }

  .menu-toggle {
    display: block;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .lang-selector {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(10, 10, 10, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1001;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-links a {
    font-size: 28px;
    letter-spacing: 3px;
    padding: 15px 30px;
  }

  /* HERO MÓVIL */
  .hero {
    min-height: 650px;
  }

  .hero-bg {
    background-attachment: scroll;
    animation: none;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .cta-button {
    padding: 16px 35px;
    font-size: 13px;
    letter-spacing: 2px;
    min-height: 50px;
  }

  /* ABOUT MÓVIL */
  .section-divider {
    margin: 0 0 50px 0;
  }

  .divider-logo {
    width: 40px;
    height: 40px;
  }

  .about-title-main {
    font-size: 32px;
    margin-left: 0;
    text-align: center;
    margin-bottom: -15px;
  }

  .about-logo {
    width: 280px;
  }

  .about-text p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* CARRUSEL MÓVIL */
  .carousel-container {
    padding: 30px 0 0 0;
  }

  .carousel-wrapper {
    height: 280px;
  }

  .carousel-slide {
    width: 88%;
    height: 240px;
    border-radius: 15px;
  }

  .carousel-slide[data-position="-1"],
  .carousel-slide[data-position="1"] {
    transform: translateX(0) translateZ(-100px) scale(0.85);
    opacity: 0;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .carousel-arrow.prev {
    left: 10px;
  }
  .carousel-arrow.next {
    right: 10px;
  }

  .carousel-controls {
    bottom: 10px;
    gap: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  /* EXPERIENCIAS MÓVIL */
  .section-title-center {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .experiences-alternating {
    margin-bottom: 80px;
  }

  .experience-row {
    gap: 40px;
  }

  .experience-img {
    height: 300px;
    border-radius: 15px;
  }

  .experience-name {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .experience-desc {
    font-size: 15px;
    text-align: left;
  }

  .experience-link {
    font-size: 13px;
    padding: 14px 28px;
    min-height: 48px;
  }

  /* AZORES MÓVIL */
  .azores-header {
    margin-bottom: 50px;
  }

  .azores-subtitle {
    font-size: 32px;
    letter-spacing: 3px;
    line-height: 1.2;
  }

  .very-soon {
    font-size: 20px;
    letter-spacing: 4px;
  }

  .azores-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .azores-card {
    height: 350px;
    border-radius: 15px;
  }

  .azores-card-title {
    font-size: 24px;
  }

  .azores-card-desc {
    font-size: 14px;
  }

  /* HOSTS MÓVIL */
  .hosts-header {
    max-width: 100%;
    margin-bottom: 50px;
  }

  .section-title-contact {
    font-size: 36px;
    line-height: 1.2;
  }

  .cta-adventure-btn {
    padding: 16px 40px;
    font-size: 14px;
  }

  .hosts-grid {
    gap: 30px;
  }

  .host-card {
    height: 480px;
    border-radius: 15px;
  }

  .host-content {
    padding: 25px 18px 18px;
  }

  .host-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .host-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .host-instagram {
    font-size: 14px;
  }

  /* FOOTER MÓVIL OPTIMIZADO CON ACORDEÓN */
  footer {
    padding: 35px 20px 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.98)),
      url("Imagenes/torres-panoramica.png");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  .footer-top {
    margin-bottom: 30px;
    padding-bottom: 25px;
  }

  .quienes-somos-link {
    padding: 16px 40px;
    font-size: 13px;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #f59b22 0%, #ff8800 100%);
    color: #000;
    border: none;
    box-shadow: 0 8px 20px rgba(245, 155, 34, 0.3);
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }

  .footer-brand {
    text-align: center;
    padding: 0 0 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
  }

  .footer-logo-img {
    height: 50px;
    margin-bottom: 12px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0 10px;
  }

  .social-links {
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
  }

  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* ACORDEÓN FOOTER */
  .footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    margin: 0;
  }

  .footer-column:last-of-type {
    border-bottom: none;
  }

  .footer-column h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 15px;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #f59b22;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
  }

  .footer-column h3:active {
    background: rgba(255, 255, 255, 0.05);
  }

  .footer-column h3::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: #666;
    transition: transform 0.3s ease;
  }

  .footer-column.active h3::after {
    transform: rotate(180deg);
  }

  .footer-column ul,
  .footer-column .footer-contact-info,
  .footer-column .newsletter-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .footer-column.active ul,
  .footer-column.active .footer-contact-info {
    max-height: 400px;
    padding: 15px 15px 20px;
  }

  .footer-column.active .newsletter-form {
    max-height: 200px;
    padding: 0 15px 20px;
  }

  .footer-column ul li {
    margin-bottom: 10px;
    text-align: center;
  }

  .footer-column ul li a {
    font-size: 13px;
    padding: 8px 5px;
    display: block;
  }

  .footer-contact-info {
    align-items: center;
    gap: 12px;
  }

  .contact-item {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    text-align: center;
  }

  .contact-item i {
    font-size: 16px;
    margin-top: 0;
  }

  .contact-item a,
  .contact-item span {
    font-size: 13px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 30px;
  }

  .newsletter-form button {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    border-radius: 30px;
  }

  .footer-certification {
    padding: 20px 0;
    margin-bottom: 15px;
  }

  .sernatur-logo {
    height: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    padding: 18px 0 10px;
  }

  .copyright {
    font-size: 11px;
    line-height: 1.5;
    order: 2;
    text-align: center;
  }

  .footer-legal {
    order: 1;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
  }

  .footer-legal a {
    font-size: 11px;
    padding: 5px 0;
  }

  /* WHATSAPP Y MODAL MÓVIL */
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-float i {
    font-size: 26px;
  }

  .modal-content {
    padding: 25px 18px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
  }

  .modal-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .modal-text h3 {
    font-size: 22px;
    margin-top: 25px;
  }

  .modal-text p,
  .modal-text li {
    font-size: 14px;
  }

  .download-pdf-btn {
    padding: 14px 25px;
    font-size: 13px;
    min-height: 50px;
  }

  .modal-image {
    max-width: 100%;
  }

  /* TOUCH TARGETS */
  button,
  .cta-button,
  .experience-link,
  .quienes-somos-link,
  .cta-adventure-btn,
  .download-pdf-btn {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 375px) {
  .hero-title {
    font-size: 32px;
    letter-spacing: 3px;
  }

  .section-title-center {
    font-size: 28px;
  }

  .nav-links a {
    font-size: 24px;
  }
}

/* ============================================
   PRICE INFO & CTA ENHANCEMENTS
   ============================================ */
.price-info {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  background: linear-gradient(135deg, rgba(245, 155, 34, 0.1), rgba(0, 212, 255, 0.1));
  border-left: 4px solid var(--color-experiencias);
  border-radius: var(--border-radius-sm);
}

.price-label {
  font-size: var(--font-size-lg);
  color: var(--color-titulos-principales);
  margin: 0;
  line-height: 1.6;
}

.price-label strong {
  color: var(--color-experiencias);
  font-size: var(--font-size-xl);
}

/* CTA Actions Group */
.cta-actions-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.cta-actions-group .btn-base {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-actions-group .btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
}

.cta-actions-group .btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-actions-group .btn-email {
  background: linear-gradient(135deg, #EA4335, #C5221F);
  color: #ffffff;
}

.cta-actions-group .btn-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(234, 67, 53, 0.4);
}

/* Multiple Contact Options */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.contact-option-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  text-align: center;
  transition: all var(--transition-base);
}

.contact-option-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-experiencias);
  transform: translateY(-5px);
}

.contact-option-card i {
  font-size: var(--font-size-3xl);
  color: var(--color-experiencias);
  margin-bottom: var(--spacing-sm);
}

.contact-option-card h4 {
  font-family: var(--font-titulos-principales);
  font-size: var(--font-size-xl);
  color: var(--color-titulos-principales);
  margin-bottom: var(--spacing-xs);
}

.contact-option-card p {
  font-size: var(--font-size-sm);
  color: var(--color-parrafos);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
  }

  .cta-actions-group .btn-base {
    font-size: var(--font-size-sm);
    padding: 14px 20px;
  }
}

/* ============================================
   NEWSLETTER MESSAGES
   ============================================ */
.newsletter-message {
  margin-top: var(--spacing-sm);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-align: center;
  opacity: 1;
  transition: opacity var(--transition-base);
  animation: slideInUp 0.3s ease;
}

.newsletter-message--success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #4CAF50;
}

.newsletter-message--error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #F44336;
}

.newsletter-message--info {
  background: rgba(33, 150, 243, 0.2);
  border: 1px solid rgba(33, 150, 243, 0.5);
  color: #2196F3;
}

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

/* Spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

/* ============================================
   PDF DOWNLOAD MESSAGES
   ============================================ */
.pdf-download-message {
  margin-top: var(--spacing-md);
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  font-size: var(--font-size-base);
  font-weight: 500;
  text-align: center;
  opacity: 1;
  transition: opacity var(--transition-base);
  animation: slideInUp 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pdf-download-message--success {
  background: rgba(76, 175, 80, 0.15);
  border: 2px solid rgba(76, 175, 80, 0.6);
  color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.pdf-download-message--info {
  background: rgba(33, 150, 243, 0.15);
  border: 2px solid rgba(33, 150, 243, 0.6);
  color: #2196F3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}

.pdf-download-message--error {
  background: rgba(244, 67, 54, 0.15);
  border: 2px solid rgba(244, 67, 54, 0.6);
  color: #F44336;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.2);
}

/* Animación para el botón de descarga */
.download-pdf-btn:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.download-pdf-btn.downloading {
  opacity: 0.7;
  pointer-events: none;
}
