/* ========================================
   PACIFIC BEACH - ESTILOS PRINCIPALES
   Optimizado para WordPress
   ======================================== */

/* ========== RESET Y VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevenir conflictos con WordPress */
.page-content,
.entry-content,
.site-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remover padding del tema de WordPress */
body.page .site-main,
body.page-template-default .site-main {
  padding: 0 !important;
}

/* Forzar ancho completo para todas las secciones */
section,
.section,
.hero-section,
.hero-surf-section,
.surf-gallery-section,
.pricing-section,
.refiere-section,
.map-section {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* Asegurar que los contenedores internos respeten el diseño */
.hero-surf-content,
.refiere-container,
.map-container {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

:root {
  --navy-blue: #006BA6;
  --primary-yellow: #FFD700;
  --ocean-blue: #0288D1;
  --deep-ocean: #006BA6;
  --navbar-blue: #0288D1;
  --light-gray: #F5F5F5;
  --dark-text: #2C3E50;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  /* Nav / ocean gradient (opción Azul Profundo Elegante) */
  --gradient-ocean: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body, html {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  max-width: 100%;
}

section {
  margin: 0;
  padding: 0;
  width: 100%;
}

.section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ========== NAVEGACIÓN ========== */
.navbar {
  /* Azul Océano Profundo */
  background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(2, 136, 209, 0.3);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  animation: slideDown 0.5s ease;
}

/* Carousel controls styling */
.carousel-controls {
  z-index: 1000;
  position: relative;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    overflow: hidden;
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 80px 20px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(2, 136, 209, 0.4);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-wrapper.active {
    left: 0;
  }

  .nav-contact {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .contact-item {
    font-size: 0.85rem;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--white);
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    display: block;
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 60px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s;
  z-index: 2;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 55px;
  width: auto;
  transition: all 0.3s;
  animation: logoFloat 3s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 28px;
  border-radius: 50px;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.1),
    0 0 0 2px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.logo:hover .logo-image {
  transform: scale(1.05) rotate(5deg);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-menu li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-yellow);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF8C00;
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: #FF8C00; /* naranja elegante */
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(255, 140, 0, 0.3);
}

.nav-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 100%;
  margin-left: 40px;
}

.contact-item {
  color: var(--white);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
  white-space: nowrap;
}

.contact-item i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.contact-item:hover {
  background: var(--primary-yellow);
  color: var(--navy-blue);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.contact-item:hover i {
  transform: scale(1.1);
}

/* ========== HERO SECTION ========== */
.hero-section {
  margin-top: 70px;
  position: relative;
  height: 650px;
  overflow: hidden;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

/* Estilos para el slide con video */
.hero-video-slide {
  background-image: none !important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Para iframe de YouTube/Vimeo */
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100%;
  min-width: 177.77vh; /* 16:9 */
  pointer-events: none;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  animation: kenBurns 20s ease infinite;
}

/* Desactivar animación Ken Burns en el video */
.hero-video-slide.active {
  animation: none;
}

@keyframes kenBurns {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 76, 140, 0.7), rgba(2, 136, 209, 0.5));
  z-index: 1;
}

/* Overlay más suave para el video */
.hero-video-slide .hero-overlay {
  background: linear-gradient(135deg, rgba(0, 76, 140, 0.3), rgba(2, 136, 209, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  background: var(--gradient-primary);
  color: var(--navy-blue);
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  animation: fadeInUp 1.6s ease, buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
  display: none; /* Ocultos por defecto (móvil) */
}

/* Solo mostrar en desktop */
@media (min-width: 769px) {
  .hero-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.hero-nav-btn:hover {
  background: rgba(255, 215, 0, 0.8);
  color: var(--navy-blue);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn.prev {
  left: 20px;
}

.hero-nav-btn.next {
  right: 20px;
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: #FF8C00;
  width: 30px;
  border-radius: 6px;
  animation: indicatorGrow 0.3s ease;
}

@keyframes indicatorGrow {
  0% {
    width: 12px;
  }
  100% {
    width: 30px;
  }
}

.indicator:hover {
  background: var(--primary-yellow);
  transform: scale(1.2);
}

/* ========== IMAGEN AFP EN HERO ========== */
.afp-hero-image {
  position: absolute;
  right: 30px;
  bottom: 80px;
  z-index: 4;
  animation: afpFloat 3s ease-in-out infinite;
}

.afp-hero-image img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.afp-hero-image img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

@keyframes afpFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========== SECCIONES GENERALES ========== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 2.8rem;
  color: var(--navy-blue);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: underlineGrow 1s ease;
}

@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--ocean-blue);
}

/* ========== PRECIOS Y PLANES (GRID ESTÁTICO) ========== */
.pricing-section {
  background: var(--light-gray);
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s;
  border: 3px solid transparent;
  position: relative;
  animation: cardFadeIn 0.6s ease;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-yellow);
}

.pricing-card.featured {
  border-color: var(--primary-yellow);
  animation: featuredGlow 2s ease-in-out infinite;
}

@keyframes featuredGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  }
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--navy-blue);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: badgeBounce 1s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.pricing-badge.premium {
  background: var(--gradient-ocean);
  color: var(--white);
}

.pricing-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.pricing-card:hover .pricing-image {
  transform: scale(1.1);
}

.pricing-content {
  padding: 30px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-lot-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pricing-lot-label {
  font-size: 1.1rem;
  color: var(--dark-text);
}

.pricing-lot-size {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-blue);
  animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pricing-total {
  text-align: right;
}

.pricing-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-blue);
}

.pricing-initial {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.pricing-plans {
  margin: 20px 0;
}

.pricing-plan {
  background: var(--light-gray);
  padding: 15px;
  margin: 10px 0;
  border-radius: 12px;
  transition: all 0.3s;
}

.pricing-plan:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-plan.special-offer-btn {
  background: linear-gradient(135deg, #FF5252 0%, #FF6E40 100%);
  cursor: pointer;
  border: 2px solid #FF1744;
  cursor: pointer;
  border: 2px solid #FF4757;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }
  50% {
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
  }
}

.pricing-plan.special-offer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.pricing-plan.special-offer-btn:hover::before {
  left: 100%;
}

.pricing-plan.special-offer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 71, 87, 0.6);
}

.pricing-plan.special-offer-btn .plan-discount {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.pricing-plan.special-offer-btn .plan-price {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.plan-discount {
  font-weight: 600;
  color: var(--ocean-blue);
  font-size: 0.95rem;
}

.plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-top: 5px;
}

.pricing-plan.highlighted {
  background: #FFF9E6;
  border: 2px solid var(--primary-yellow);
}

.pricing-installments {
  font-size: 0.9rem;
  color: #666;
  margin: 15px 0;
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--dark-text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: featureFadeIn 0.5s ease forwards;
  opacity: 0;
}

.pricing-card:hover .pricing-features li {
  animation: featureFadeIn 0.5s ease forwards;
}

.pricing-features li:nth-child(1) { animation-delay: 0.1s; }
.pricing-features li:nth-child(2) { animation-delay: 0.2s; }
.pricing-features li:nth-child(3) { animation-delay: 0.3s; }
.pricing-features li:nth-child(4) { animation-delay: 0.4s; }
.pricing-features li:nth-child(5) { animation-delay: 0.5s; }
.pricing-features li:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pricing-features li::before {
  content: '✔';
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-button {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--navy-blue);
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ========== MODAL OFERTA ESPECIAL ========== */
.offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.offer-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.offer-modal-content {
  position: relative;
  background: white;
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 25px;
  z-index: 10001;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.offer-modal-header {
  background: linear-gradient(135deg, #FF5252 0%, #FF6E40 100%);
  padding: 40px 30px;
  text-align: center;
  color: white;
  position: relative;
}

.offer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.offer-modal-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  50% {
    text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
  }
}

.offer-modal-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.offer-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.offer-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.offer-modal-body {
  padding: 40px 30px;
}

/* ========== SECCIÓN DE AHORRO ========== */
.savings-section {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.savings-badge {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.savings-amount {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.savings-percent {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.9;
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-label {
  font-weight: 600;
  color: #555;
}

.price-value {
  font-size: 1.3rem;
  font-weight: 700;
}

.original .price-value {
  color: #999;
  text-decoration: line-through;
}

.discount .price-value {
  color: #FF6B6B;
  animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.final .price-value {
  color: #2ECC71;
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
  }
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: slideIn 0.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.benefit-icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

/* ========== TIMER DE CUENTA REGRESIVA ========== */
.countdown-timer {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
  animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.countdown-timer-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  min-width: 70px;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}



.timer-label {
  font-size: 0.8rem;
  opacity: 0.9;
  display: block;
  margin-top: 5px;
}

/* ========== SEPARACIÓN DE LOTE ========== */
.reservation-section {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-yellow);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.reservation-section h3 {
  color: var(--navy-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reservation-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.reservation-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-text);
  font-size: 0.95rem;
}

.reservation-benefit::before {
  content: '✔';
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 1.2rem;
}

.reservation-price {
  text-align: center;
  margin: 20px 0;
}

.reservation-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-blue);
  display: block;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  }
}

.reservation-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
}

.offer-info {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid #FF6B6B;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

.offer-info h3 {
  color: var(--navy-blue);
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-info ul {
  list-style: none;
  margin-top: 15px;
}

.offer-info li {
  padding: 8px 0;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: listItemSlide 0.5s ease forwards;
  opacity: 0;
}

.offer-info li:nth-child(1) { animation-delay: 0.1s; }
.offer-info li:nth-child(2) { animation-delay: 0.2s; }
.offer-info li:nth-child(3) { animation-delay: 0.3s; }
.offer-info li:nth-child(4) { animation-delay: 0.4s; }

@keyframes listItemSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.offer-form-title {
  color: var(--navy-blue);
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.offer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.offer-form-label {
  font-weight: 600;
  color: var(--navy-blue);
  font-size: 0.95rem;
}

.offer-form-input {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.offer-form-input:focus {
  outline: none;
  border-color: #FF6B6B;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
  transform: scale(1.01);
}

/* ========== CHECKBOXES DE TÉRMINOS ========== */
.terms-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.checkbox-container {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: #FF6B6B;
  text-decoration: underline;
  transition: color 0.3s;
}

.checkbox-label a:hover {
  color: #FF4757;
}

.terms-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.terms-modal-content {
  background: white;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  animation: slideUp 0.4s ease;
}

.terms-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.terms-modal-close:hover {
  color: #333;
  transform: rotate(90deg);
}

.terms-modal-content h2 {
  color: var(--navy-blue);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.terms-modal-content h3 {
  color: var(--ocean-blue);
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.terms-modal-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.offer-form-button {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.offer-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.offer-form-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.discount-reveal {
  text-align: center;
  padding: 30px;
}

.discount-reveal-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FF6B6B;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.discount-reveal h3 {
  color: var(--navy-blue);
  font-size: 2rem;
  margin-bottom: 15px;
}

.discount-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #FF6B6B;
  margin: 20px 0;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.discounted-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 20px;
}

.discount-reveal p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.discount-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.discount-btn {
  flex: 1;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  text-align: center;
  font-size: 1rem;
}

.discount-btn.whatsapp {
  background: #25D366;
  color: white;
  border: none;
  cursor: pointer;
}

.discount-btn.whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.discount-btn.contact {
  background: var(--primary-yellow);
  color: var(--navy-blue);
  border: none;
  cursor: pointer;
}

.discount-btn.contact:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ========== REFIERE Y GANA ========== */
.refiere-section {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.refiere-section::before {
  content: '🌴';
  position: absolute;
  font-size: 15rem;
  opacity: 0.05;
  top: -50px;
  right: -50px;
  transform: rotate(-15deg);
  animation: palmSway 5s ease-in-out infinite;
}

@keyframes palmSway {
  0%, 100% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

.refiere-container {
  max-width: 1200px;
  margin: 0 auto;
}

.refiere-header {
  text-align: center;
  margin-bottom: 50px;
}

.refiere-intro {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px var(--shadow);
  border-left: 5px solid var(--primary-yellow);
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.refiere-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.refiere-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.refiere-step {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  transition: all 0.4s;
  position: relative;
  animation: stepFadeIn 0.8s ease forwards;
  opacity: 0;
}

.refiere-step:nth-child(1) { animation-delay: 0.2s; }
.refiere-step:nth-child(2) { animation-delay: 0.4s; }
.refiere-step:nth-child(3) { animation-delay: 0.6s; }

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.refiere-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}



.step-icon {
  font-size: 4rem;
  margin: 20px 0;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.refiere-step h3 {
  color: var(--navy-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.refiere-step p {
  color: #666;
  line-height: 1.6;
}

.refiere-cta {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
  border: 3px solid var(--primary-yellow);
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  }
}

.refiere-cta h3 {
  color: var(--navy-blue);
  font-size: 2rem;
  margin-bottom: 15px;
}

.refiere-cta p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ========== TESTIMONIOS ========== */
.testimonials-section {
  background: var(--white);
  width: 100%;
}

.testimonials-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px var(--shadow);
  text-align: center;
  transition: all 0.4s;
  min-width: 350px;
  scroll-snap-align: center;
  border: 2px solid transparent;
  animation: cardSlideIn 0.8s ease;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-yellow);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--primary-yellow);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  animation: avatarZoom 3s ease-in-out infinite;
}

@keyframes avatarZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.testimonial-stars {
  color: var(--primary-yellow);
  font-size: 1.3rem;
  margin-bottom: 20px;
  animation: starsShine 2s ease-in-out infinite;
}

@keyframes starsShine {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy-blue);
  font-size: 1.1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary-yellow);
  color: var(--navy-blue);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--primary-yellow);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* ========== CONTACTO ========== */
.contact-section {
  background: var(--light-gray);
  width: 100%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
  animation: cardFadeIn 0.6s ease;
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-yellow);
  min-width: 50px;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.contact-details h3 {
  color: var(--navy-blue);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  animation: cardFadeIn 0.8s ease;
}

.contact-form-title {
  color: var(--navy-blue);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ocean-blue);
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.1);
  transform: scale(1.01);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-button {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--navy-blue);
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ========== MAPA DE UBICACIÓN ========== */
.map-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  z-index: 1;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.map-header {
  text-align: center;
  margin-bottom: 50px;
}

.map-badge {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
  color: var(--navy-blue);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.map-title {
  font-size: 2.5rem;
  color: var(--navy-blue);
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.map-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  border: 3px solid rgba(0, 107, 166, 0.1);
  position: relative;
  z-index: 1;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.map-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 107, 166, 0.15);
}

.map-info-item i {
  font-size: 2rem;
  color: var(--primary-yellow);
  min-width: 40px;
}

.map-info-item h4 {
  font-size: 1.1rem;
  color: var(--navy-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.map-info-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive para el mapa */
@media (max-width: 1024px) {
  .map-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .map-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 60px 20px;
  }
  
  .map-wrapper {
    height: 400px;
  }
  
  .map-title {
    font-size: 1.8rem;
  }
  
  .map-subtitle {
    font-size: 1rem;
  }
  
  .map-info-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .map-wrapper {
    height: 300px;
    border-radius: 15px;
  }
  
  .map-title {
    font-size: 1.5rem;
  }
  
  .map-badge {
    font-size: 0.85rem;
    padding: 10px 25px;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--gradient-ocean);
  color: var(--white);
  padding: 15px 0;
  width: 100%;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-text {
  opacity: 0.9;
}

.footer-text p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}

.social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  transform: translateY(-3px) scale(1.1) rotate(360deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== MODAL MASTERPLAN ========== */
.masterplan-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.masterplan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.masterplan-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 90%;
  max-width: 1200px;
  height: 85vh;
  border-radius: 20px;
  z-index: 10051;
  animation: modalZoomIn 0.4s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

@keyframes modalZoomIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.masterplan-modal-content h2 {
  color: var(--navy-blue);
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  text-align: center;
  font-weight: 700;
}

.masterplan-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 107, 107, 0.1);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #FF6B6B;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10052;
}

.masterplan-modal-close:hover {
  background: #FF6B6B;
  color: white;
  transform: rotate(90deg) scale(1.1);
}

.masterplan-iframe {
  width: 100%;
  flex: 1;
  border: none;
  border-radius: 12px;
  background: #f5f5f5;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.masterplan-external-link {
  margin-top: 15px;
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: var(--navy-blue);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  align-self: center;
}

.masterplan-external-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

@media (max-width: 968px) {
  .masterplan-modal-content {
    width: 95%;
    height: 90vh;
    padding: 15px;
  }
  
  .masterplan-modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 640px) {
  .masterplan-modal-content {
    width: 95%;
    height: 90vh;
    border-radius: 15px;
    padding: 15px;
  }
  
  .masterplan-modal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .masterplan-modal-close {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
    font-size: 1.8rem;
  }
  
  .masterplan-iframe {
    border-radius: 8px;
  }
  
  .masterplan-external-link {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .nav-contact .contact-item {
    display: none !important;
  }
}

/* ========== CHAT BUTTON ========== */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 
    0 5px 25px rgba(37, 211, 102, 0.4),
    0 0 0 10px rgba(37, 211, 102, 0.1);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulseWhatsApp 2s infinite;
}

.chat-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  opacity: 0.5;
  transform: scale(0);
  transition: transform 0.3s ease;
}

@keyframes pulseWhatsApp {
  0%, 100% {
    box-shadow: 
      0 5px 25px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 35px rgba(37, 211, 102, 0.6),
      0 0 0 15px rgba(37, 211, 102, 0.15);
  }
}

.chat-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 8px 35px rgba(37, 211, 102, 0.5),
    0 0 0 15px rgba(37, 211, 102, 0.15);
}

.chat-button:hover::before {
  transform: scale(1.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .navbar {
    padding: 10px 0;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding: 90px 30px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(2, 136, 209, 0.4);
    overflow-y: auto;
  }
  
  .nav-wrapper.active {
    left: 0;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu li {
    width: 100%;
    height: auto;
  }
  
  .nav-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin: 2px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }

  .nav-menu a:hover {
    background: var(--primary-yellow);
    color: var(--navy-blue);
    transform: translateX(5px);
    text-shadow: none;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover {
    color: var(--primary-yellow);
    padding-left: 10px;
    border-bottom: 1px solid var(--primary-yellow);
  }
  
  .nav-contact {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .contact-item {
    font-size: 0.9rem;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s;
  }

  .contact-item:hover {
    background: var(--primary-yellow);
    color: var(--navy-blue);
    transform: translateY(-2px);
  }
  
  .hero-section {
    margin-top: 60px;
    height: 500px;
  }
  
  .hero-content {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
  
  .afp-hero-image {
    right: 15px;
    bottom: 100px;
  }

  .afp-hero-image img {
    width: 160px;
  }
  
  .refiere-steps {
    grid-template-columns: 1fr;
  }
  
  .discount-actions {
    flex-direction: column;
  }
  
  .timer-display {
    gap: 10px;
  }
  
  .timer-unit {
    min-width: 60px;
    padding: 10px;
  }
  
  .timer-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .hero-section {
    margin-top: 55px;
    height: 400px;
  }
  
  .afp-hero-image {
    display: none;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    border-radius: 15px;
  }
  
  .pricing-content {
    padding: 20px 15px;
  }
  
  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .pricing-total {
    text-align: left;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-logo {
    height: 40px;
  }
  
  .chat-button {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
  
  .offer-modal-content {
    width: 95%;
    border-radius: 20px;
  }
  
  .offer-modal-header {
    padding: 30px 20px;
  }
  
  .offer-modal-header h2 {
    font-size: 1.6rem;
  }
  
  .offer-modal-body {
    padding: 30px 20px;
  }
  
  .discount-amount {
    font-size: 2.2rem;
  }
  
  .discounted-price {
    font-size: 2rem;
  }
  
  .discount-actions {
    flex-direction: column;
  }
  
  .testimonials-carousel-container {
    padding: 0 10px;
  }
  
  .testimonial-card {
    min-width: 85vw;
    padding: 25px 20px;
  }

  /* Asegurar que los botones del carrusel estén por encima en móvil */
  .hero-nav-btn,
  .carousel-btn {
    z-index: 1005 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    background: rgba(255,255,255,0.95);
    color: var(--navy-blue);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    border: none;
  }

  .hero-nav-btn.prev { left: 12px; }
  .hero-nav-btn.next { right: 12px; }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }
  

/* ========== MODAL MASTERPLAN ========== */
.masterplan-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.masterplan-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.masterplan-modal-content {
  position: relative;
  background: #fff;
  width: 95%;
  max-width: 1100px;
  height: 88vh;
  border-radius: 14px;
  z-index: 10051;
  animation: slideUp 0.3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
}

.masterplan-modal-content h2 {
  color: var(--navy-blue);
  font-size: 1.4rem;
  margin: 8px 0 12px 0;
  text-align: center;
}

.masterplan-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.06);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy-blue);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.masterplan-iframe {
  width: 100%;
  height: calc(100% - 64px);
  border: none;
  border-radius: 8px;
  background: #f5f5f5;
}

.masterplan-external-link {
  margin-top: 10px;
  display: inline-block;
  align-self: center;
}

@media (max-width: 640px) {
  .masterplan-modal-content { height: 92vh; border-radius: 10px; padding: 10px; }
  .masterplan-iframe { height: calc(100% - 60px); }
}
  .timer-unit {
    min-width: 50px;
    padding: 8px;
  }
  
  .timer-value {
    font-size: 1.2rem;
  }
  
  .reservation-amount {
    font-size: 2rem;
  }
}

@media (max-width: 375px) {
  .hero-section {
    height: 380px;
  }
  
  .hero-video {
    object-fit: cover;
  }
  
  .hero-title {
    font-size: 1.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    height: 35px;
  }
}

/* ========== HERO SURF SECTION - FULLWIDTH CON BLUR ========== */
.hero-surf-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-surf-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-surf-bg {
  /* Aplica tanto a <img> como a <video> usados aquí. Centrar y cubrir el contenedor.
     Usamos positioning absoluto para asegurar que el centro del video quede en el centro del área. */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center center;
  filter: blur(0px);
}

.hero-surf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 107, 166, 0.95) 50%,
        rgba(2, 136, 209, 0.98) 100%);
    backdrop-filter: blur(2px);
}

.hero-surf-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 60px 40px;
}

.hero-surf-badge {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-surf-title {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: titleFadeIn 1s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-surf-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: textFadeIn 1s ease-out 0.2s backwards;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para el video de surf */
.hero-surf-video-container {
    max-width: 600px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.3);
    animation: videoFadeIn 1s ease-out 0.4s backwards;
    position: relative;
}

.hero-surf-video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
}

/* Ocultar controles del video */
.hero-surf-video::-webkit-media-controls {
    display: none !important;
}

.hero-surf-video::-webkit-media-controls-enclosure {
    display: none !important;
}

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-wave-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hero-wave-stat {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: statsFadeIn 0.8s ease-out backwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-wave-stat:nth-child(1) { animation-delay: 0.3s; }
.hero-wave-stat:nth-child(2) { animation-delay: 0.4s; }
.hero-wave-stat:nth-child(3) { animation-delay: 0.5s; }
.hero-wave-stat:nth-child(4) { animation-delay: 0.6s; }

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave-stat:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-wave-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-wave-label {
    display: block;
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive Design para Hero Surf */
@media (max-width: 1024px) {
    .hero-surf-title {
        font-size: 2.8rem;
    }
    
    .hero-wave-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-surf-video-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-surf-section {
        min-height: 600px;
    }
    
    .hero-surf-content {
        padding: 40px 20px;
    }
    
    .hero-surf-title {
        font-size: 2rem;
    }
    
    .hero-surf-text {
        font-size: 1rem;
    }
    
    .hero-surf-video-container {
        max-width: 400px;
        margin: 30px auto;
        border: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    .hero-wave-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-wave-stat {
        padding: 25px 20px;
    }
    
    .hero-wave-number {
        font-size: 2.8rem;
    }
    
    .hero-wave-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-surf-title {
        font-size: 1.6rem;
    }
    
    .hero-surf-badge {
        font-size: 0.8rem;
        padding: 10px 25px;
    }
    
    .hero-surf-video-container {
        max-width: 320px;
        margin: 25px auto;
    }
    
    .hero-wave-number {
        font-size: 2.5rem;
    }
}

/* ========== SCROLL INDICATOR - FLECHA ANIMADA ========== */
.scroll-indicator {
    text-align: center;
    padding: 40px 20px 60px;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    animation: fadeIn 1s ease-in 0.5s forwards;
    opacity: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    margin: 0 auto 15px;
    position: relative;
}

.scroll-arrow span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
    transform: rotate(-45deg);
    animation: scrollDown 2s infinite;
    opacity: 0;
}

.scroll-arrow span:nth-of-type(1) {
    animation-delay: 0s;
}

.scroll-arrow span:nth-of-type(2) {
    top: 10px;
    animation-delay: 0.15s;
}

.scroll-arrow span:nth-of-type(3) {
    top: 20px;
    animation-delay: 0.3s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--deep-ocean);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ========== SURF GALLERY SECTION ========== */
.surf-gallery-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.surf-gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.gallery-badge {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
    color: var(--navy-blue);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.gallery-title {
    font-size: 2.8rem;
    color: var(--deep-ocean);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

/* Surf Gallery Grid */
.surf-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 107, 166, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 107, 166, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 107, 166, 0.95) 50%,
        rgba(2, 136, 209, 0.98) 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

/* Surf Stats Bar */
.surf-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 107, 166, 0.3);
}

.stat-item-inline {
    text-align: center;
    padding: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-item-inline:last-child {
    border-right: none;
}

.stat-number-inline {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label-inline {
    display: block;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animaciones de entrada */
@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-card {
    animation: galleryFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .surf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .surf-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .surf-gallery-section {
        padding: 60px 20px;
    }
    
    .surf-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0) 0%, 
            rgba(0, 107, 166, 0.90) 40%,
            rgba(2, 136, 209, 0.95) 100%);
    }
    
    /* Soporte táctil para móviles en gallery */
    .gallery-card.touch-active .gallery-overlay {
        transform: translateY(0);
    }
    
    .gallery-card.touch-active .gallery-image {
        transform: scale(1.15);
    }
    
    .surf-stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 30px 20px;
    }
    
    .stat-item-inline {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding: 15px;
    }
    
    .stat-item-inline:last-child {
        border-bottom: none;
    }
    
    .stat-number-inline {
        font-size: 2.5rem;
    }
    
    .scroll-indicator {
        padding: 30px 20px 40px;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.5rem;
    }
    
    .gallery-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.2rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .stat-number-inline {
        font-size: 2rem;
    }
}

/* ========== BENEFITS SHOWCASE - DISEÑO REVOLUCIONARIO ========== */
.benefits-showcase {
    background: #f8f9fa;
    overflow: hidden;
}

/* Benefit Block - Layout Base */
.benefit-block {
    display: grid;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.benefit-left,
.benefit-right {
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.benefit-left .benefit-image-wrapper {
    order: 1;
}

.benefit-left .benefit-content {
    order: 2;
}

.benefit-right .benefit-image-wrapper {
    order: 2;
}

.benefit-right .benefit-content {
    order: 1;
}

/* Benefit Image */
.benefit-image-wrapper {
    position: relative;
    overflow: hidden;
}

.benefit-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-block:hover .benefit-bg-image {
    transform: scale(1.08);
}

.benefit-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 107, 166, 0.3) 0%, 
        rgba(2, 136, 209, 0.5) 100%);
}

.benefit-gradient-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 107, 166, 0.7) 100%);
}

/* Benefit Content */
.benefit-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
}

.benefit-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, var(--ocean-blue) 100%);
}

.benefit-right .benefit-content::before {
    left: auto;
    right: 0;
}

.benefit-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
    color: var(--navy-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 25px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.benefit-title {
    font-size: 2.2rem;
    color: var(--deep-ocean);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* Stats Grid */
.benefit-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-yellow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-ocean);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* Features List */
.benefit-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 107, 166, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 107, 166, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--deep-ocean);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 12px;
    font-weight: 600;
    color: var(--deep-ocean);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 107, 166, 0.15);
}

.security-icon {
    font-size: 2rem;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 107, 166, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.amenity-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 107, 166, 0.15);
}

.amenity-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.amenity-card h4 {
    font-size: 1.1rem;
    color: var(--deep-ocean);
    margin-bottom: 8px;
    font-weight: 700;
}

.amenity-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Full Width Highlight Benefit */
.benefit-full {
    grid-template-columns: 1fr;
    min-height: 700px;
    position: relative;
}

.benefit-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.benefit-badge-large {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB800 100%);
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.benefit-title-large {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-text-large {
    font-size: 1.15rem;
    line-height: 1.9;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Wave Stats */
.wave-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.wave-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wave-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.wave-label {
    display: block;
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location Info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-yellow);
}

.location-icon {
    font-size: 2.5rem;
}

.location-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--deep-ocean);
    margin-bottom: 5px;
}

.location-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-block {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.benefit-block:nth-child(1) { animation-delay: 0.1s; }
.benefit-block:nth-child(2) { animation-delay: 0.2s; }
.benefit-block:nth-child(3) { animation-delay: 0.3s; }
.benefit-block:nth-child(4) { animation-delay: 0.4s; }
.benefit-block:nth-child(5) { animation-delay: 0.5s; }
.benefit-block:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .benefit-content {
        padding: 60px 40px;
    }
    
    .benefit-title {
        font-size: 1.8rem;
    }
    
    .benefit-title-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .benefit-left,
    .benefit-right {
        grid-template-columns: 1fr;
    }
    
    .benefit-left .benefit-image-wrapper,
    .benefit-right .benefit-image-wrapper {
        order: 1;
        min-height: 400px;
    }
    
    .benefit-left .benefit-content,
    .benefit-right .benefit-content {
        order: 2;
    }
    
    .benefit-content {
        padding: 50px 30px;
    }
    
    .benefit-content::before {
        width: 100%;
        height: 5px;
        top: 0;
        left: 0;
    }
    
    .benefit-right .benefit-content::before {
        right: 0;
    }
    
    .wave-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid,
    .security-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefit-title {
        font-size: 1.6rem;
    }
    
    .benefit-title-large {
        font-size: 2rem;
    }
    
    .benefit-text-large {
        font-size: 1rem;
    }
    
    .benefit-stats {
        grid-template-columns: 1fr;
    }
    
    .wave-stat {
        padding: 20px 15px;
    }
    
    .wave-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .benefit-content {
        padding: 40px 20px;
    }
    
    .benefit-title {
        font-size: 1.4rem;
    }
    
    .benefit-title-large {
        font-size: 1.7rem;
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .wave-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}