/* ========================================================================== */
/*  IMPORTS & VARIABLES                                                        */
/* ========================================================================== */
:root {
  /* Tipografía */
  --font-sans: "Poppins", sans-serif;

  /* Colores Principales */
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #eff6ff;
  --color-secondary: #0ea5e9;
  --color-accent: #3b82f6;

  /* Colores de Estado */
  --color-success: #28a745;
  --color-success-secondary: #20c997;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;

  /* Colores de Fondo */
  --color-bg-body: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-bg-light: #f0f0f0;
  --color-bg-gray: #e9ecef;
  --color-bg-dark: #333333;

  /* Colores de Texto */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-white: #ffffff;
  --color-text-muted: #6c757d;

  /* Sombras */
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  --shadow-primary: rgba(37, 99, 235, 0.3);
  --shadow-primary-hover: rgba(37, 99, 235, 0.4);

  /* Bordes */
  --border-light: #e9ecef;

  /* Opacidades */
  --opacity-light: 0.7;
  --opacity-medium: 0.9;

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Escalas tipográficas */
  --hero-title-size: clamp(2rem, 5vw + 0.5rem, 3.5em);
  --page-title-size: clamp(1.8rem, 3.5vw + 0.5rem, 3em);
  --hero-subtitle-size: clamp(1rem, 1.8vw + 0.4rem, 1.4em);
  --page-subtitle-size: clamp(0.95rem, 1.4vw + 0.35rem, 1.2em);
}

[data-theme="dark"] {
  --color-bg-body: #0d1117;
  --color-bg-white: #21262d;
  --color-bg-light: #30363d;
  --color-bg-gray: #21262d;
  --color-bg-dark: #010409;
  --color-text-primary: #f0f6fc;
  --color-text-secondary: #8b949e;
  --color-text-muted: #7d8590;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.4);
  --shadow-dark: rgba(0, 0, 0, 0.6);
  --border-light: #30363d;
  --color-primary-light: rgba(37, 99, 235, 0.15);
}

/* ========================================================================== */
/*  RESET & BASE                                                               */
/* ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-body);
  color: var(--color-text-primary);
  line-height: 1.6;
  transition:
    background-color var(--transition-normal),
    color var(--transition-normal);
}

/* ========================================================================== */
/*  HEADER & NAVIGATION                                                        */
/* ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 10px var(--shadow-light);
  z-index: 1000;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    box-shadow var(--transition-normal),
    background-color var(--transition-normal);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color var(--transition-normal);
}

.logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 5px;
  margin-left: 20px;
}

.nav {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all var(--transition-normal);
}

.nav a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.nav a.active {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links p {
  margin: 0;
  font-size: 14px;
}

.social-links .social-handle a {
  display: inline;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 500;
}

.social-links .social-handle a:hover {
  transform: none;
  background: none;
  color: var(--color-primary);
  text-decoration: underline;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-gray);
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  color: var(--color-primary);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  transform: scale(1.2);
  background-color: var(--color-primary);
  color: var(--color-text-white);
}

.theme-toggle {
  background: var(--color-bg-light);
  border: 2px solid var(--border-light);
  color: var(--color-text-primary);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 18px;
  transition: all var(--transition-normal);
  margin-left: 15px;
}

.theme-toggle:hover {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

/* ========================================================================== */
/*  MAIN & BREADCRUMBS                                                         */
/* ========================================================================== */
.main {
  flex: 1;
  margin-top: 70px;
  padding: 40px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.breadcrumbs {
  background-color: var(--color-bg-gray);
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: background-color var(--transition-normal);
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.breadcrumbs li {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumb-logo {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

/* ========================================================================== */
/*  HERO WITH BACKGROUND IMAGE                                                */
/* ========================================================================== */
.hero-with-bg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(37, 99, 235, 0.4)),
    url("../assets/img/partyIA.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.3) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(14, 165, 233, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content > * {
  animation: heroFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.hero-content h1 {
  animation-delay: 0.2s;
}
.hero-content .hero-subtitle {
  animation-delay: 0.4s;
}
.hero-content .hero-ctas {
  animation-delay: 0.6s;
}
.hero-content .hero-phone {
  animation-delay: 0.8s;
}

.hero-with-bg h1 {
  font-size: var(--hero-title-size);
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  letter-spacing: -1px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: var(--hero-subtitle-size) !important;
  margin-bottom: 35px !important;
  opacity: 1 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  color: #ffffff;
}

.hero-subtitle strong {
  font-size: 1.4em;
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hero-cta {
  padding: 18px 35px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.hero-cta::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.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5) !important;
}

.hero-cta.primary {
  background: linear-gradient(45deg, #ef4444, #dc2626) !important;
  border: none !important;
  color: #ffffff !important;
  animation: heroButtonPulse 2s infinite;
}

.hero-cta.primary:hover {
  background: linear-gradient(45deg, #dc2626, #b91c1c) !important;
  animation: none;
}

.hero-cta.secondary {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  color: #ffffff !important;
}

.hero-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}

.hero-phone {
  font-size: 1.3em !important;
  margin: 0 !important;
  font-weight: 700;
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.hero-phone strong {
  color: #fbbf24;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ========================================================================== */
/*  PAGE HEADERS (FALLBACK)                                                    */
/* ========================================================================== */
.hero,
.page-header {
  color: var(--color-text-white);
  background-color: var(--color-primary);
  padding: 60px 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-primary);
}

.page-header.services,
.page-header.contact {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
}

.hero::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero h1,
.page-header h1 {
  font-size: var(--page-title-size);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hero p,
.page-header p {
  font-size: var(--page-subtitle-size);
  margin-bottom: 30px;
  opacity: var(--opacity-medium);
  position: relative;
  z-index: 1;
}

.article-icon {
  width: 40px;
  height: 40px;
  vertical-align: sub;
}

/* ========================================================================== */
/*  CARDS & FEATURES                                                           */
/* ========================================================================== */
.card {
  background: var(--color-bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px var(--shadow-light);
  margin-bottom: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.card h2 {
  color: var(--color-text-primary);
  margin-bottom: 15px;
  font-size: 1.8em;
  text-align: center;
}

.card p {
  color: var(--color-text-secondary);
  margin-bottom: 15px;
}

.feature-section {
  margin: 40px 0;
}

.feature-section h2 {
  text-align: center;
  color: var(--color-text-primary);
  font-size: 2.2em;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.feature-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.feature-card {
  background: var(--color-bg-white);
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow-light);
  text-align: left;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  border-radius: 0 0 0 80px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
  border-left-color: var(--color-secondary);
}

.feature-row:nth-child(1) .feature-card {
  border-left-color: #ff6b6b;
}
.feature-row:nth-child(1) .feature-card:hover {
  border-left-color: #e83e36;
}
.feature-row:nth-child(2) .feature-card {
  border-left-color: #4ecdc4;
}
.feature-row:nth-child(2) .feature-card:hover {
  border-left-color: #2fb9bc;
}
.feature-row:nth-child(3) .feature-card {
  border-left-color: #feca57;
}
.feature-row:nth-child(3) .feature-card:hover {
  border-left-color: #feba28;
}

.feature-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  margin-right: 18px;
  display: block;
}

.feature-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 15px;
  font-size: 1.5em;
  font-weight: 600;
}

.feature-card p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: 1.05em;
  position: relative;
  z-index: 1;
}

.card-cta {
  display: inline-block;
  margin-top: 15px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.card-cta:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

/* ========================================================================== */
/*  IMAGE CONTAINERS                                                          */
/* ========================================================================== */
.feature-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-medium);
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-bg-gray)
  );
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.feature-image:hover {
  transform: scale(1.05);
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-text-secondary);
  font-size: 1em;
  text-align: center;
  padding: 30px;
}

.image-placeholder-icon {
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.feature-row:nth-child(1) .feature-image-container {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), #ff4757);
}

.feature-row:nth-child(2) .feature-image-container {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), #0abde3);
}

.feature-row:nth-child(3) .feature-image-container {
  background: linear-gradient(135deg, rgba(254, 202, 87, 0.2), #ffa502);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--color-text-white);
  padding: 20px;
  text-align: center;
}

.image-overlay p {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.dot.active {
  background: var(--color-primary);
  border-color: var(--color-text-white);
}

/* ========================================================================== */
/*  SERVICES & OFFERS                                                          */
/* ========================================================================== */
.main-offer {
  text-align: center;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.offer-item {
  text-align: center;
  padding: 20px;
}

.offer-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
}

.offer-item h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.2em;
}

.offer-item p {
  margin: 0;
  color: var(--color-text-secondary);
}

.main-cta {
  margin-top: 40px;
  text-align: center;
}

.cta-subtitle {
  margin-top: 15px;
  color: var(--color-text-secondary);
  font-size: 0.95em;
  font-weight: 500;
}

.urgency-text {
  margin-top: 20px;
  color: var(--color-text-white);
  font-size: 1.1em;
  font-weight: 600;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-bg-white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all var(--transition-normal);
  border-left: 5px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  border-radius: 0 0 0 100px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-primary);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 40px;
  margin-right: 20px;
}

.service-card h2 {
  color: var(--color-text-primary);
  font-size: 1.8em;
  margin: 0;
}

.service-card p {
  text-align: left;
  padding-right: 42%;
}

.service-price {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-left: auto;
  font-size: 1.1em;
  width: 150px;
}

.service-price-wrap {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-price-note {
  margin-top: 4px;
  width: 150px;
  text-align: center;
  font-size: 0.78em;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.pack-card {
  padding-bottom: 95px;
}

.pack-reserva-btn {
  position: absolute;
  left: 40px;
  bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: var(--color-text-white);
  width: 150px;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98em;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow-primary);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.pack-reserva-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--shadow-primary-hover);
}

.pack-corner-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  height: 200px;
  opacity: 0.85;
}

.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.service-features li::before {
  content: "🔹";
  position: absolute;
  left: 0;
  font-size: 16px;
}

.service-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
  /*border-radius: 25% 15px 15px 25%;*/
}

.service-content {
  position: relative;
  z-index: 1;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    var(--color-success),
    var(--color-success-secondary)
  );
  color: var(--color-text-white);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.9em;
  font-weight: bold;
  z-index: 2;
}

/* ========================================================================== */
/*  CONTACT & FORMS                                                            */
/* ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.contact-info,
.contact-form,
.schedule-section {
  background: linear-gradient(
    135deg,
    rgba(37, 100, 235, 0.71),
    rgba(14, 164, 233, 0.752)
  );
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.contact-info::before,
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  border-radius: 0 0 0 100px;
}

.contact-info h2,
.contact-form h2,
.schedule-section h2 {
  color: var(--color-text-primary);
  font-size: 1.8em;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-info h2::before {
  content: "📱";
  font-size: 1.2em;
}
.contact-form h2::before {
  content: "🎉";
  font-size: 1.2em;
}

.schedule-section {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-section h2::before {
  content: "🕑";
  font-size: 1.2em;
}

.contact-item {
  margin-bottom: 25px;
  padding: 20px;
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-bg-body);
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.contact-item h3 {
  color: var(--color-text-primary);
  font-size: 1.2em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item p {
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 500;
}

.contact-item small {
  color: var(--color-text-muted);
  font-size: 0.85em;
  display: block;
  margin-top: 5px;
}

.contact-item a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.schedule-item {
  padding: 20px;
  background-color: var(--color-bg-body);
  border-radius: 10px;
  border-left: 4px solid var(--color-primary);
}

.schedule-item h3 {
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.schedule-item p {
  color: var(--color-text-secondary);
  margin: 0;
  font-weight: 500;
}

.urgency-section {
  background: linear-gradient(
    135deg,
    var(--color-danger),
    var(--color-primary)
  );
  color: var(--color-text-white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  text-align: center;
}

.urgency-section h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.urgency-section p {
  margin: 0;
  font-size: 1.1em;
}

.urgency-section a {
  color: var(--color-text-white);
  text-decoration: none;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.urgency-section a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================================================== */
/*  CONTACT PAGE (WHATSAPP)                                                    */
/* ========================================================================== */
.contact-hero {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 80px 30px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: contactPulse 3s ease-in-out infinite;
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.contact-hero h1 {
  font-size: var(--page-title-size);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-hero p {
  font-size: var(--page-subtitle-size);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  color: #25d366;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.whatsapp-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: #f0f0f0;
}

.whatsapp-icon {
  font-size: 1.5em;
  animation: contactShake 2s ease-in-out infinite;
}

@keyframes contactShake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  color: #333333;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.contact-card p {
  color: #666666;
  margin-bottom: 20px;
}

.contact-card a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
}

.contact-card a:hover {
  text-decoration: underline;
}

.whatsapp-card {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  grid-column: 1 / -1;
}

.whatsapp-card h3,
.whatsapp-card p {
  color: #ffffff;
  font-size: 1em;
}

.whatsapp-card a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.whatsapp-card a:hover {
  background: rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.benefits-section {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.benefits-section h2 {
  text-align: center;
  color: #333333;
  font-size: 2em;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  display: block;
}

.benefit-item h3 {
  color: #333333;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.benefit-item p {
  color: #666666;
  font-size: 0.95em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--color-text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  transition: color var(--transition-normal);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 16px;
  transition: all var(--transition-normal);
  font-family: inherit;
  background-color: var(--color-bg-white);
  color: var(--color-text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
  border-color: var(--color-success);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ========================================================================== */
/*  BUTTONS & CTAs                                                             */
/* ========================================================================== */
.cta-button,
.submit-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-text-white);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.cta-button::before,
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}

.cta-button:hover::before,
.submit-btn:hover::before {
  left: 100%;
}

.cta-button:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-primary-hover);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-text-white);
}

.cta-button.secondary:hover {
  background: var(--color-text-white);
  color: var(--color-primary);
}

.submit-btn {
  width: 100%;
}

.submit-btn:disabled {
  opacity: var(--opacity-light);
  cursor: not-allowed;
  transform: none !important;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta,
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
  color: var(--color-text-white);
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.final-cta h2,
.cta-section h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.final-cta p,
.cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: var(--opacity-medium);
}

.cta-section .cta-button.primary {
  background-color: var(--color-text-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .cta-button.primary:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ========================================================================== */
/*  ADDITIONAL SECTIONS                                                        */
/* ========================================================================== */
.destinations-section,
.additional-services {
  background: var(--color-bg-white);
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  margin-bottom: 40px;
}

.destinations-section h2,
.additional-services h2 {
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 30px;
  font-size: 2em;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.destination-card {
  background: linear-gradient(
    135deg,
    var(--color-bg-body) 0%,
    var(--color-bg-gray) 100%
  );
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-normal);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
  border-left-color: var(--color-secondary);
}

.destination-card h3 {
  color: var(--color-primary);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.destination-card p {
  color: var(--color-text-secondary);
  margin: 0;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.extra-item {
  background: var(--color-bg-white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow-light);
  transition: all var(--transition-normal);
}

.extra-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.extra-item h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.2em;
}

.extra-options {
  margin: 10px 0 10px 0;
  font-weight: 500;
}

.service-features li.extra-options {
  padding-left: 0;
  margin: 10px 0;
  font-weight: 500;
}

.service-features li.extra-options::before {
  content: none;
}

/* ========================================================================== */
/*  FOOTER                                                                     */
/* ========================================================================== */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  text-align: center;
  padding: 30px 20px;
  margin-top: auto;
  transition: background-color var(--transition-normal);
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer a {
  color: var(--color-text-white);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.footer a:hover {
  opacity: var(--opacity-light);
  text-decoration: none;
}

/* ========================================================================== */
/*  ANIMATIONS                                                                 */
/* ========================================================================== */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonPulse {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.loading {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    to right,
    var(--color-bg-light) 8%,
    var(--color-bg-gray) 18%,
    var(--color-bg-light) 33%
  );
  background-size: 1000px 100%;
}

.pulse {
  animation: pulse 2s infinite;
}

/* ========================================================================== */
/*  RESPONSIVE DESIGN                                                          */
/* ========================================================================== */
@media (max-width: 1100px) {
  .feature-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .feature-row .feature-card {
    order: 2;
  }

  .feature-row .feature-image-container,
  .feature-row .image-carousel {
    order: 1;
    width: 100%;
  }
}

@media (max-width: 968px) {
  .hero-with-bg {
    background-attachment: scroll;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-row .feature-card {
    order: 2;
  }

  .feature-row .feature-image-container {
    order: 1;
    min-height: 250px;
  }

  .feature-content {
    gap: 40px;
  }

  .service-card p {
    padding-right: 0;
  }

  .service-bg-image {
    display: none;
  }
}
@media (max-width: 900px) {
  .header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: auto;
    padding: 10px 15px;
  }

  .logo,
  nav,
  .social-links {
    width: 100%;
    justify-content: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-links p {
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: 100%;
  }

  .whatsapp-card {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 15px;
    flex-wrap: wrap;
    height: auto;
    min-height: 70px;
  }

  .nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-links {
    gap: 10px;
    justify-content: center;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .social-links .social-handle {
    width: auto;
  }

  .social-links .social-handle a {
    display: inline;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--color-text-primary);
    font-size: 14px;
  }

  .theme-toggle {
    padding: 6px 10px;
    font-size: 16px;
    margin-left: 10px;
  }

  .main {
    padding: 20px 15px;
  }

  .hero,
  .page-header {
    padding: 40px 20px;
  }

  .hero h1,
  .page-header h1 {
    font-size: 2.2em;
  }

  .hero-with-bg {
    min-height: 400px;
    padding: 40px 20px;
  }

  .hero-with-bg h1 {
    font-size: 2.5em;
  }

  .hero-subtitle {
    font-size: 1.2em !important;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-cta {
    width: 100%;
    max-width: 280px;
    padding: 16px 30px !important;
    font-size: 16px !important;
  }

  .contact-hero {
    padding: 50px 20px;
  }

  .contact-hero h1 {
    font-size: 2em;
  }

  .whatsapp-cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    grid-column: 1;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 2em;
  }

  .feature-section h2 {
    font-size: 1.8em;
  }

  .feature-card,
  .card {
    padding: 25px;
  }

  .service-card {
    padding: 25px;
  }

  .pack-card {
    padding-bottom: 25px;
  }

  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-icon {
    margin-right: 0;
  }

  .service-price {
    margin-left: 0;
    margin-top: 10px;
    width: auto;
  }

  .service-price-wrap {
    margin-left: 0;
    align-items: flex-start;
  }

  .service-price-note {
    width: auto;
    text-align: left;
  }

  .pack-reserva-btn {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .pack-corner-icon {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info,
  .contact-form,
  .schedule-section {
    padding: 25px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .destinations-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .image-overlay {
    padding: 15px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 0 0 12px 12px;
  }

  .image-overlay p {
    font-size: 1em;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .image-carousel {
    height: 280px;
  }

  .feature-image-container {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
  }

  .logo-img {
    margin-left: 0;
    margin-bottom: 0;
    height: 42px;
  }

  .nav {
    gap: 10px;
  }

  .breadcrumbs ul {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .breadcrumbs li {
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .page-header h1 {
    font-size: 1.8em;
  }

  .hero,
  .page-header {
    padding: 30px 15px;
  }

  .hero-with-bg {
    min-height: 350px;
  }

  .hero-with-bg h1 {
    font-size: 2em;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1em !important;
  }

  .hero-cta {
    padding: 14px 25px !important;
    font-size: 15px !important;
  }

  .hero-phone {
    font-size: 1.1em !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .social-links p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .social-links .social-handle {
    width: auto;
    display: inline;
  }

  .social-links .social-handle a {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: var(--color-text-primary);
  }

  .destinations-section,
  .additional-services,
  .final-cta,
  .cta-section {
    padding: 30px 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-icon {
    margin-right: 0;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .image-overlay {
    padding: 10px;
  }

  .image-overlay p {
    font-size: 0.9em;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    padding: 14px 25px;
    font-size: 15px;
  }

  .image-carousel {
    height: 220px;
  }

  .feature-image-container {
    height: 240px;
  }
}

/* ========================================================================== */
/*  ACCESSIBILITY                                                              */
/* ========================================================================== */
.nav a:focus,
.social-links a:focus,
.cta-button:focus,
.submit-btn:focus,
.theme-toggle:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cta-button::before,
  .submit-btn::before {
    display: none;
  }
}

@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-text-primary);
  }

  .nav a {
    border: 1px solid transparent;
  }

  .nav a:hover,
  .nav a:focus {
    border-color: var(--color-primary);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    border-width: 3px;
  }
}

@media print {
  .header,
  .footer,
  .social-links,
  .cta-button,
  .submit-btn,
  .theme-toggle {
    display: none !important;
  }

  .main {
    margin-top: 0;
    padding: 0;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .hero,
  .hero-with-bg,
  .page-header {
    background: var(--color-bg-dark) !important;
    color: white !important;
    box-shadow: none;
  }
}

/* ========================================================================== */
/*  CAROUSEL                                                                  */
/* ========================================================================== */
.image-carousel {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  background: #f0f0f0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BOTONES - IMPORTANTE */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

/* INDICADORES */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.9);
}

.carousel-indicator.active {
  background: #2563eb;
  transform: scale(1.3);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.politicy-h3 {
  margin-top: 20px;
  font-weight: bold;
  text-decoration: underline;
}
