/* ============================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ============================================ */
:root {
  /* Paleta de colores Voelkeep */
  --magenta-oscuro: #8B1E5A;
  --rosa-fuerte: #C94C7C;
  --rosa-medio: #E88BA0;
  --rosa-claro: #F7C1D0;
  --rosa-pastel: #FCE4EC;
  
  /* Colores auxiliares */
  --blanco: #FFFFFF;
  --gris-claro: #F5F5F5;
  --gris-medio: #E0E0E0;
  --texto-oscuro: #2C2C2C;
  --texto-gris: #666666;
  
  /* Sombras */
  --shadow-sm: 0 2px 10px rgba(139, 30, 90, 0.08);
  --shadow-md: 0 8px 30px rgba(139, 30, 90, 0.12);
  --shadow-lg: 0 12px 40px rgba(139, 30, 90, 0.18);
  
  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto-oscuro);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BOTÓN FLOTANTE DE WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-10px);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--texto-oscuro);
  color: var(--blanco);
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--texto-oscuro);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--magenta-oscuro) 0%, var(--rosa-fuerte) 50%, var(--rosa-medio) 100%);
  overflow: hidden;
  text-align: center;
  color: var(--blanco);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.95;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 50px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Montserrat', sans-serif;
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--blanco);
  color: var(--magenta-oscuro);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  background: var(--rosa-pastel);
}

/* ============================================
   ANIMACIONES
   ============================================ */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--magenta-oscuro);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--rosa-fuerte), var(--rosa-medio));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--gris-claro);
}

.about-content {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--texto-gris);
  margin-bottom: 40px;
}

.about-highlight {
  background: linear-gradient(135deg, var(--rosa-pastel), var(--rosa-claro));
  padding: 35px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.about-highlight h3 {
  color: var(--magenta-oscuro);
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.about-highlight p {
  font-size: 1.15rem;
  color: var(--texto-oscuro);
  line-height: 1.7;
}

.differentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.differential-card {
  background: var(--blanco);
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.differential-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.differential-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 8px rgba(139, 30, 90, 0.2));
}

.differential-card h3 {
  color: var(--magenta-oscuro);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.differential-card p {
  color: var(--texto-gris);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
  background: var(--blanco);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.benefit-card {
  position: relative;
  padding: 40px 30px;
  background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--blanco) 100%);
  border-radius: 20px;
  border-left: 5px solid var(--rosa-fuerte);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: -8px 8px 25px rgba(139, 30, 90, 0.12);
  border-left-width: 8px;
}

.benefit-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rosa-medio);
  opacity: 0.25;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.benefit-card h3 {
  color: var(--magenta-oscuro);
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.benefit-card p {
  color: var(--texto-gris);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   INCLUDES SECTION
   ============================================ */
.includes-section {
  background: var(--gris-claro);
}

.includes-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--blanco);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.includes-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.check-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--rosa-fuerte), var(--rosa-medio));
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
}

.includes-item h3 {
  color: var(--magenta-oscuro);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.includes-item p {
  color: var(--texto-gris);
  font-size: 0.95rem;
  line-height: 1.6;
}

.frequency-box {
  background: linear-gradient(135deg, var(--magenta-oscuro), var(--rosa-fuerte));
  color: var(--blanco);
  padding: 40px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.frequency-box h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--blanco);
}

.frequency-text {
  font-size: 1.15rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.frequency-detail {
  font-size: 1rem;
  opacity: 0.9;
  font-style: italic;
}

/* ============================================
   PRICING SECTION - DISEÑO MEJORADO
   ============================================ */
.pricing-section {
  background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--blanco) 50%, var(--rosa-pastel) 100%);
  padding: 100px 0;
}

.pricing-card {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: var(--blanco);
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(139, 30, 90, 0.2);
  text-align: center;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--magenta-oscuro), var(--rosa-fuerte), var(--rosa-medio));
}

.pricing-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: var(--rosa-fuerte);
  color: var(--blanco);
  padding: 8px 45px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(201, 76, 124, 0.3);
}

.pricing-card h2 {
  font-size: 2.5rem;
  color: var(--magenta-oscuro);
  margin-bottom: 15px;
}

.pricing-description {
  font-size: 1.1rem;
  color: var(--texto-gris);
  margin-bottom: 35px;
  line-height: 1.6;
}

.price-container {
  background: linear-gradient(135deg, var(--rosa-pastel), var(--rosa-claro));
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 35px;
  position: relative;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--texto-gris);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  color: var(--magenta-oscuro);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(139, 30, 90, 0.1);
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--texto-gris);
  font-style: italic;
}

.cta-button-secondary {
  display: inline-block;
  padding: 18px 55px;
  background: linear-gradient(135deg, var(--magenta-oscuro), var(--rosa-fuerte));
  color: var(--blanco);
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 25px rgba(139, 30, 90, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.cta-button-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(139, 30, 90, 0.4);
  background: linear-gradient(135deg, var(--rosa-fuerte), var(--rosa-medio));
}

.pricing-footer {
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--texto-gris);
  font-style: italic;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  background: var(--blanco);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--gris-claro);
  border-radius: 15px;
  transition: all var(--transition-normal);
}

.info-item:hover {
  background: var(--rosa-pastel);
  transform: translateX(5px);
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item h3 {
  color: var(--magenta-oscuro);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-item p {
  color: var(--texto-gris);
  font-size: 1rem;
  line-height: 1.6;
}

.info-item a {
  color: var(--rosa-fuerte);
  font-weight: 500;
  transition: var(--transition-fast);
}

.info-item a:hover {
  color: var(--magenta-oscuro);
  text-decoration: underline;
}

.map-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 450px;
}

.map-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gris-claro);
  color: var(--texto-gris);
  font-size: 1.1rem;
  z-index: 1;
}

#googleMap {
  position: relative;
  z-index: 2;
}

/* ============================================
   FOOTER - DISEÑO MODERNO
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--magenta-oscuro) 0%, #6B1545 100%);
  color: var(--blanco);
  padding: 60px 0 30px;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: var(--blanco);
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--rosa-claro);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

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

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

.footer-column a {
  color: var(--blanco);
  opacity: 0.8;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-column a:hover {
  opacity: 1;
  color: var(--rosa-claro);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--rosa-fuerte);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 30px 0;
}

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

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-credits {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: right;
}

.footer-credits strong {
  color: var(--rosa-claro);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .location-content {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    justify-items: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .differentials,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .pricing-card {
    padding: 40px 30px;
  }
  
  .price {
    font-size: 3rem;
  }
  
  .pricing-badge {
    font-size: 0.75rem;
    padding: 6px 40px;
  }
  
  .footer-main {
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-credits {
    text-align: center;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  
  .cta-button,
  .cta-button-secondary {
    padding: 15px 35px;
    font-size: 1rem;
  }
  
  .pricing-section {
    padding: 60px 0;
  }
  
  .pricing-card {
    padding: 35px 25px;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .includes-item {
    padding: 20px;
  }
  
  .frequency-box {
    padding: 30px 25px;
  }
}