@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ============================= */
/* GLOBAL THEME 2026 - DROMUX   */
/* ============================= */

:root {

  /* ===== COLORS ===== */
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --glass-bg: rgba(20, 20, 30, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);

  --accent-primary: #00d4ff;
  --accent-secondary: #009acd;

  --text-primary: #ffffff;
  --text-secondary: #b8c1cc;
  --text-muted: #8a8f98;

  --success: #34d399;

  /* ===== SHADOWS ===== */
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);

  /* ===== RADIUS ===== */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

/* ============================= */
/* RESET PRO LEVEL              */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selección de texto */
::selection {
  background: var(--accent-primary);
  color: #000;
}

/* Scrollbar premium */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    var(--accent-primary),
    var(--accent-secondary)
  );
  border-radius: 20px;
}


.hero {
  min-height: 100vh;
  height: auto;
  width: 100%;                    /* ← Cambia de 100vw a 100% */
  max-width: 100vw;               /* seguridad extra */
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../img/dromux10.png'); /* Cambiá por tu imagen o una de las sugeridas */
  background-size: cover;
  background-position: center;
  overflow: hidden;               /* corta cualquier desborde */
  box-sizing: border-box;
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #ffffff, #c6f6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 120px;
}

.hero-content p {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-cta-primary {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #000;
  padding: 1rem 2.8rem;
  border-radius: 60px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}


.hero-cta-secondary {
  border: 2px solid #00bfff;
  color: #00bfff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-cta-secondary:hover {
  background: rgba(0, 191, 255, 0.1);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hero-feature-item {
  background: rgba(255,255,255,0.05);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  p { font-size: 1.3rem; }
}

@media (max-width: 480px) {     /* cubre 320-480px típicos */
  .hero-content {
    padding: 1rem;                /* reduce padding agresivo */
    max-width: 100%;              /* ignora el 900px en pantallas chicas */
    width: 100%;
  }

  h1 {
    font-size: 2.4rem;            /* mucho más pequeño en 320px */
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;       /* apila botones verticalmente */
    gap: 1rem;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;                  /* botones full-width en mobile chico */
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
  }

  .hero-features {
    flex-direction: column;       /* apila chips verticalmente */
    gap: 0.8rem;
  }

  .hero-feature-item {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
}

/*FEATURES HOME*/
/* ============================= */
/* FEATURES HOME - DROMUX 2026  */
/* ============================= */

.features-home {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #0f1116 100%
  );
  overflow: hidden;
}

/* Glow decorativo fondo */
.features-home::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.12),
    transparent 70%
  );
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
}

.features-home-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* TITLE */
/* ============================= */

.features-home h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -1px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #bdefff
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* GRID */
/* ============================= */

.features-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* ============================= */
/* CARD */
/* ============================= */

.features-home-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 28px;

  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;
  color: white;

  transition: all 0.4s ease;
  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Glow animado interno */
.features-home-card::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15),
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Hover premium */
.features-home-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 212, 255, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.5);
}

.features-home-card:hover::before {
  opacity: 1;
}

/* ============================= */
/* ICON */
/* ============================= */

.features-home-icon {
  margin-bottom: 1.8rem;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15),
    rgba(0, 154, 205, 0.15)
  );

  border: 1px solid rgba(0, 212, 255, 0.3);

  color: #00d4ff;
  transition: all 0.4s ease;
}

.features-home-card:hover .features-home-icon {
  transform: rotate(6deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.features-home-icon svg {
  width: 40px;
  height: 40px;
}

/* ============================= */
/* TEXT */
/* ============================= */

.features-home-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.features-home-card p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: #b8c1cc;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.features-home-cta {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.features-home-button {
  display: inline-block;
  padding: 1.1rem 3rem;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;

  background: linear-gradient(
    135deg,
    #00d4ff,
    #009acd
  );

  color: #000;

  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);

  transition: all 0.35s ease;
}

.features-home-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.5);
}

/* ============================= */
/* RESPONSIVE TWEAKS */
/* ============================= */

@media (max-width: 768px) {

  .features-home-card {
    padding: 2rem 1.5rem;
  }

  .features-home-icon {
    width: 60px;
    height: 60px;
  }

}

/* ============================= */
/* BEFORE / AFTER - DROMUX 2026 */
/* ============================= */

.before-after-section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(
    180deg,
    #0f1116 0%,
    #0a0a0a 100%
  );
  overflow: hidden;
}

/* Glow decorativo */
.before-after-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -250px;
  right: -250px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15),
    transparent 70%
  );
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
}

.before-after-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* TITLE */
/* ============================= */

.before-after-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -1px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #bdefff
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* GRID */
/* ============================= */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ============================= */
/* CARDS BASE */
/* ============================= */

.comparison-card {
  padding: 2.5rem 2rem;
  border-radius: 28px;

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ============================= */
/* BEFORE STYLE */
/* ============================= */

.comparison-card.before {
  background: rgba(30, 30, 35, 0.6);
  color: #c5c8ce;
  border-color: rgba(255, 255, 255, 0.06);
}

.comparison-card.before:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ============================= */
/* AFTER STYLE */
/* ============================= */

.comparison-card.after {
  background: rgba(20, 20, 30, 0.7);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.comparison-card.after::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.2),
    transparent 70%
  );
  filter: blur(100px);
  opacity: 0.6;
}

.comparison-card.after:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(0, 212, 255, 0.25);
}

/* ============================= */
/* TITLES */
/* ============================= */

.comparison-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* ============================= */
/* LIST */
/* ============================= */

.comparison-card ul {
  list-style: none;
}

.comparison-card li {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  position: relative;
  padding-left: 1.4rem;
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
  opacity: 0.7;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.comparison-cta {
  text-align: center;
}

.comparison-cta p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  color: #b8c1cc;
}

/* Primary Button */

.comparison-button {
  display: inline-block;
  padding: 1.1rem 3rem;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;

  background: linear-gradient(
    135deg,
    #00d4ff,
    #009acd
  );

  color: #000;

  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);

  transition: all 0.35s ease;
}

.comparison-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.5);
}

/* Secondary Link */

.comparison-secondary-link {
  display: block;
  margin-top: 1.5rem;
  font-weight: 500;
  color: #8ab4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.comparison-secondary-link:hover {
  color: #ffffff;
}


/* ===================================== */
/* CONCESIONARIOS PREVIEW - DROMUX 2026 */
/* ===================================== */

.concesionarios-preview {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #0f1116 100%
  );
  overflow: hidden;
}

/* Glow ambiental */
.concesionarios-preview::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  top: -300px;
  left: -300px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.12),
    transparent 70%
  );
  filter: blur(140px);
  opacity: 0.6;
  pointer-events: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* HEADER */
/* ============================= */

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #bdefff
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #b8c1cc;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================= */
/* GRID */
/* ============================= */

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

/* ============================= */
/* CARD */
/* ============================= */

.preview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;

  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.5s ease;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Hover premium */
.preview-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow:
    0 30px 80px rgba(0, 212, 255, 0.2),
    0 25px 60px rgba(0, 0, 0, 0.5);
}

/* ============================= */
/* IMAGE */
/* ============================= */

.preview-image-container {
  position: relative;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

/* Zoom sutil */
.preview-card:hover .preview-image {
  transform: scale(1.05);
}

/* Overlay efecto cristal */
.preview-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 40%,
    rgba(10,10,10,0.7) 100%
  );
}

/* ============================= */
/* CONTENT */
/* ============================= */

.preview-content {
  padding: 2rem;
}

.preview-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 1rem;
  color: white;
}

.preview-content p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #b8c1cc;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.preview-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  font-weight: 600;
  font-size: 0.95rem;

  color: #00d4ff;
  transition: all 0.3s ease;
}

.preview-card:hover .preview-button {
  color: #ffffff;
  transform: translateX(4px);
}

/* ============================= */
/* FOOTER LINK */
/* ============================= */

.preview-footer-link {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.preview-footer-link a {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: #8ab4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.preview-footer-link a:hover {
  color: #ffffff;
}


/* ================================= */
/* PLANES HOME - DROMUX 2026        */
/* ================================= */

.planes-home-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: linear-gradient(
    180deg,
    #0f1116 0%,
    #0a0a0a 100%
  );
  overflow: hidden;
}

/* Glow ambiental */
.planes-home-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  bottom: -300px;
  left: -300px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.12),
    transparent 70%
  );
  filter: blur(140px);
  opacity: 0.6;
  pointer-events: none;
}

.planes-home-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================= */
/* HEADER */
/* ============================= */

.planes-home-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.planes-home-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #bdefff
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.planes-home-header p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #b8c1cc;
  max-width: 650px;
  margin: 0 auto;
}

/* ============================= */
/* GRID */
/* ============================= */

.planes-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

/* ============================= */
/* CARD */
/* ============================= */

.planes-home-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 28px;

  background: rgba(20, 20, 30, 0.65);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.4s ease;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.planes-home-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow:
    0 25px 70px rgba(0, 212, 255, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.5);
}

/* ============================= */
/* POPULAR */
/* ============================= */

.planes-home-card.popular {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow:
    0 30px 80px rgba(0, 212, 255, 0.2);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    #00d4ff,
    #009acd
  );
  color: #000;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================= */
/* TEXT */
/* ============================= */

.planes-home-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 0.6rem;
}

.planes-home-card .ideal {
  font-size: 0.95rem;
  color: #8ab4ff;
  margin-bottom: 1.8rem;
}

/* ============================= */
/* FEATURES */
/* ============================= */

.planes-home-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.planes-home-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #c5c8ce;
}

.planes-home-card li svg {
  color: #00d4ff;
  flex-shrink: 0;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.primary-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 60px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;

  background: linear-gradient(
    135deg,
    #00d4ff,
    #009acd
  );

  color: #000;

  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3);

  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.5);
}

/* ============================= */
/* SEO TEXT */
/* ============================= */

.planes-seo-text {
  text-align: center;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: #8a8f98;
  max-width: 850px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

/* ============================= */
/* FOOTER LINK */
/* ============================= */

.planes-home-footer {
  text-align: center;
}

.secondary-link {
  font-weight: 600;
  color: #8ab4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.secondary-link:hover {
  color: #ffffff;
}

/* ================================= */
/* FINAL CTA - DROMUX 2026 REFINED  */
/* ================================= */

.final-cta-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 2rem;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #050505 20%,
    #000000 100%
  );

  overflow: hidden;
}

/* Línea separadora suave arriba */
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  opacity: 0.4;
}

/* Halo central elegante */
.final-cta-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.08),
    transparent 70%
  );
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.final-cta-container {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;

  padding: clamp(3rem, 6vw, 4.5rem);

  border-radius: 28px;

  background: linear-gradient(
    145deg,
    rgba(20, 20, 28, 0.85),
    rgba(10, 10, 15, 0.75)
  );

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(0, 212, 255, 0.05);
}

/* ============================= */
/* TITULO */
/* ============================= */

.final-cta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;

  background: linear-gradient(90deg, #ffffff, #d6f6ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ============================= */
/* DESCRIPCIÓN */
/* ============================= */

.final-cta-container p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #aab2bd;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/* BOTÓN */
/* ============================= */

.final-cta-button {
  display: inline-block;
  padding: 1.15rem 2.6rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.5px;

  background: linear-gradient(
    135deg,
    #00d4ff,
    #009acd
  );

  color: #000;

  box-shadow:
    0 15px 40px rgba(0, 212, 255, 0.35);

  transition: all 0.35s ease;
}

.final-cta-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 65px rgba(0, 212, 255, 0.6);
}

/* ============================= */
/* NOTA */
/* ============================= */

.final-cta-note {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: #6f7680;
  letter-spacing: 0.5px;
}


/*NAVBAR*/
:root {
  --navbar-height: 80px;
}

/* =========================
   SPACER
========================= */

.navbar-spacer {
  height: var(--navbar-height);
}

/* =========================
   NAVBAR BASE
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 9999;

  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.06);

  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar.menu-open {
  background: rgba(11, 15, 25, 0.95);
}

/* =========================
   CONTAINER
========================= */

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.logo-desktop img,
.logo-mobile img {
  height: 44px;
  transition: 0.3s ease;
}

.logo-desktop img:hover,
.logo-mobile img:hover {
  transform: scale(1.04);
}

/* =========================
   DESKTOP MENU
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6d9e6;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 5px;
  transition: 0.3s ease;
}

/* Hover elegante */
.nav-link:hover {
  color: #ffffff;
}

/* Underline animado premium */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff, #a78bfa);
  transition: 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Active link */
.active-link {
  color: #ffffff !important;
}

.active-link::after {
  width: 100%;
}

/* =========================
   HAMBURGER
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .line {
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.4s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   MOBILE
========================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9998;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Glass lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 360px);
  height: 100vh;

  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(28px);

  border-left: 1px solid rgba(255,255,255,0.06);

  box-shadow: -10px 0 40px rgba(0,0,0,0.4);

  transition: 0.4s ease;
  z-index: 10000;

  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(108, 92, 231, 0.15);
}

.mobile-logo-img {
  height: 34px;
}


.close-btn {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: white;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(108, 92, 231, 0.2);
  transform: rotate(90deg);
}


/* Links mobile */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 500;
  color: #d6d9e6;
  text-decoration: none;
  transition: 0.3s ease;
}

.mobile-link:hover {
  background: rgba(0,212,255,0.08);
  color: #ffffff;
}

.mobile-link.active-link {
  background: rgba(0,212,255,0.15);
  color: #ffffff;
}

.mobile-left {
  display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 968px) {
  .logo-desktop,
  .nav-menu {
    display: none;
  }

  .mobile-left {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 CLAVE */
    width: 100%;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1.2rem;
  }

  .logo-mobile img {
    height: 38px;
  }
}


/*FOOTER*/
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 4rem 2rem 2rem;
  color: #d0d0d0;
  font-family: 'Quicksand', sans-serif;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-social{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b0b0b0;
}

.footer-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact-list a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: #00d4ff;
}

.footer-icon {
  color: #00d4ff;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: #d0d0d0;
  transition: all 0.3s;
}

.social-icon:hover {
  color: #00d4ff;
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.95rem;
  color: #888;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #00d4ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
  }
}


/*planes*/
.planes-section {
  padding: 4rem 2rem;
  background: #0a0a0a;
}

.planes-container {
  max-width: 1400px;
  margin: 0 auto;
}

.planes-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.planes-section-header h1,
.planes-section-header h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}


.planes-section-header p {
  font-size: 1.4rem;
  color: #b0b0b0;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.planes-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.planes-card.planes-popular {
  border-color: var(--accent-primary);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}


.planes-popular-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #00d4ff;
  color: #0a0a0a;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.planes-name {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  text-align: center;
  margin-bottom: 1rem;
}


.planes-subtitle {
  text-align: center;
  color: #00d4ff;
  font-weight: 500;
  margin-bottom: 2rem;
}

.planes-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.planes-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 1.05rem;
}

.planes-included .planes-check-icon {
  color: #34d399; /* verde check */
}

.planes-features svg{
  height: 18px;
  width: 18px;
}

.planes-excluded .planes-cross-icon {
  color: #666;
}

.planes-feat-label {
  color: #d0d0d0;
  flex: 1;
}

.planes-feat-value {
  font-weight: 600;
  color: white;
}

.planes-highlight {
  color: #00d4ff !important;
  font-weight: 700;
}

.planes-cta {
  display: block;
  text-align: center;
  padding: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}


.planes-cta.primary {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: #000;
}

.planes-cta.popular {
  background: linear-gradient(135deg, #00d4ff, #009acd);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.planes-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 212, 255, 0.4);
}

.planes-note {
  text-align: center;
  margin-top: 4rem;
  color: #b0b0b0;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .planes-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .planes-section-header h1,
  .planes-section-header h2 {
    font-size: 2.5rem;
  }

  .planes-card.planes-popular {
    transform: scale(1.03);
  }
}

/* ============================= */
/* SEO CONTENT SECTION - PREMIUM */
/* ============================= */

.planes-seo-content {
  margin-top: 100px;
  padding: 60px;
  border-radius: 28px;

  /* Glass 2026 */
  background: linear-gradient(
    135deg,
    rgba(18, 18, 28, 0.75),
    rgba(30, 30, 50, 0.65)
  );
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 0 80px rgba(0, 102, 255, 0.08),
    inset 0 0 40px rgba(255, 255, 255, 0.03);

  position: relative;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* Glow sutil animado */
.planes-seo-content::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.25),
    transparent 70%
  );
  filter: blur(80px);
  opacity: 0.7;
  animation: floatingGlow 8s ease-in-out infinite alternate;
}

@keyframes floatingGlow {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(40px);
  }
}

/* ============================= */
/* TITLES */
/* ============================= */

.planes-seo-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;

  background: linear-gradient(
    90deg,
    #ffffff,
    #8ab4ff
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: -0.5px;
}

.planes-seo-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;

  color: #ffffff;
}

/* ============================= */
/* PARAGRAPHS */
/* ============================= */

.planes-seo-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 900px;
}

/* ============================= */
/* LINKS INTERNOS */
/* ============================= */

.planes-seo-content a {
  position: relative;
  font-weight: 500;
  color: #8ab4ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.planes-seo-content a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -3px;
  background: linear-gradient(
    90deg,
    #0066ff,
    #8ab4ff
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.planes-seo-content a:hover {
  color: #ffffff;
}

.planes-seo-content a:hover::after {
  transform: scaleX(1);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .planes-seo-content {
    padding: 40px;
    margin-top: 70px;
  }

  .planes-seo-content h2 {
    font-size: 1.8rem;
  }

  .planes-seo-content h3 {
    font-size: 1.4rem;
  }

  .planes-seo-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .planes-seo-content {
    padding: 30px 20px;
    border-radius: 20px;
  }
}


/*software para concesionarios*/
/* ================================= */
/* DROMUX SOFTWARE PAGE 2026        */
/* ================================= */

.ds-wrapper {
  background: #000;
  color: #ffffff;
  overflow: hidden;
}

/* ================================= */
/* CONTAINER BASE                   */
/* ================================= */

.ds-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================= */
/* HERO                              */
/* ================================= */

.ds-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0;
  text-align: center;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(0, 212, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.ds-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 950px;
  margin: 0 auto 1.5rem;

  background: linear-gradient(90deg, #ffffff, #ccefff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ds-hero p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #aab2bd;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

/* ================================= */
/* BUTTONS                           */
/* ================================= */

.ds-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.ds-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.ds-btn-primary {
  background: linear-gradient(135deg, #00d4ff, #009acd);
  color: #000;
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.35);
}

.ds-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.6);
}

.ds-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.ds-btn-outline:hover {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.08);
}

.ds-btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.05rem;
}

/* ================================= */
/* SECTIONS                          */
/* ================================= */

.ds-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ds-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.ds-section p {
  color: #9da6b1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

/* ================================= */
/* GRID FUNCIONALIDADES              */
/* ================================= */

.ds-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.ds-card {
  padding: 2rem;
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(20, 20, 25, 0.9),
    rgba(10, 10, 15, 0.8)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: all 0.35s ease;
}

.ds-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.08);
}

.ds-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ds-card p {
  font-size: 0.95rem;
  color: #aab2bd;
  line-height: 1.6;
}

/* ================================= */
/* CTA FINAL                         */
/* ================================= */

.ds-cta {
  padding: clamp(5rem, 8vw, 7rem) 0;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #050505 30%,
    #000 100%
  );
}

.ds-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;

  background: linear-gradient(90deg, #ffffff, #d6f6ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ds-cta p {
  color: #aab2bd;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}



/* ================================= */
/* WEB PARA CONCESIONARIOS 2026     */
/* ================================= */

.dw-wrapper {
  background: #000;
  color: #ffffff;
  overflow: hidden;
}

/* ================================= */
/* CONTAINER                         */
/* ================================= */

.dw-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================= */
/* HERO                              */
/* ================================= */

.dw-hero {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 2rem;
  text-align: center;

  background:
    radial-gradient(circle at 50% 20%, rgba(0,212,255,0.12), transparent 60%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.dw-hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.dw-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;

  background: linear-gradient(90deg, #ffffff, #ccefff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.dw-hero p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #aab2bd;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

/* ================================= */
/* BUTTONS                           */
/* ================================= */

.dw-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.dw-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.dw-btn-primary {
  background: linear-gradient(135deg, #00d4ff, #009acd);
  color: #000;
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.35);
}

.dw-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.6);
}

.dw-btn-outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.dw-btn-outline:hover {
  border-color: rgba(0,212,255,0.6);
  background: rgba(0,212,255,0.08);
}

.dw-btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.05rem;
}

/* ================================= */
/* SECTIONS                          */
/* ================================= */

.dw-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.dw-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.dw-section p {
  color: #9da6b1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

/* Variante oscura sutil */
.dw-dark {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    #050505 30%,
    #000 100%
  );
}

/* ================================= */
/* GRID BENEFICIOS                   */
/* ================================= */

.dw-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.dw-card {
  padding: 2rem;
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(20, 20, 25, 0.9),
    rgba(10, 10, 15, 0.8)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.05);

  transition: all 0.35s ease;
}

.dw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 50px rgba(0,212,255,0.08);
}

.dw-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.dw-card p {
  font-size: 0.95rem;
  color: #aab2bd;
  line-height: 1.6;
}

/* ================================= */
/* CTA FINAL                         */
/* ================================= */

.dw-cta {
  padding: clamp(5rem, 8vw, 7rem) 2rem;
  text-align: center;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    #050505 40%,
    #000 100%
  );
}

.dw-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.5rem;

  background: linear-gradient(90deg, #ffffff, #d6f6ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.dw-cta p {
  color: #aab2bd;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}


/*FUNCIONALIDADES*/
/* ===============================
   BASE
================================= */

.df-wrapper {
  background: #0b0f19;
  color: #ffffff;
  overflow-x: hidden;
}

.df-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   HERO
================================= */

.df-hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.df-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.df-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  margin-bottom: 25px;
  color: #00d4ff;
}

.df-hero h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.df-hero p {
  font-size: 18px;
  color: #aab0c0;
  line-height: 1.7;
}

.df-hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

/* ===============================
   SECTION TITLES
================================= */

.df-section {
  padding: 100px 0;
}

.df-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

/* ===============================
   GRID CARDS
================================= */

.df-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.df-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.df-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,212,255,0.08),
    rgba(167,139,250,0.08)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.df-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
}

.df-card:hover::before {
  opacity: 1;
}

.df-icon {
  margin-bottom: 20px;
  color: #00d4ff;
}

.df-icon svg{
  height: 40px;
  width: 40px;
}

.df-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.df-card p {
  font-size: 15px;
  color: #aab0c0;
  margin-bottom: 18px;
  line-height: 1.6;
}

.df-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.df-card li {
  font-size: 14px;
  color: #cbd3e1;
  margin-bottom: 8px;
}

/* ===============================
   CTA
================================= */

.df-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.df-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.df-cta p {
  color: #aab0c0;
  font-size: 18px;
  margin-bottom: 40px;
}

.df-btn {
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #a78bfa);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.df-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 1024px) {
  .df-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .df-hero {
    padding: 110px 0 70px;
  }

  .df-hero h1 {
    font-size: 30px;
  }

  .df-hero p {
    font-size: 16px;
  }

  .df-grid {
    grid-template-columns: 1fr;
  }

  .df-section h2 {
    font-size: 26px;
  }

  .df-cta h2 {
    font-size: 26px;
  }

  .df-btn {
    width: 100%;
    display: inline-block;
  }
}

.featureh-highlights {
  padding: 4rem 2rem;
  background: #0a0a0a;
}

.featureh-highlight {
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.featureh-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.featureh-highlight.reverse .feature-content {
  grid-template-columns: 1fr 1fr;
  /* Invierte el orden visual en desktop */
}

.featureh-text {
  padding: 2rem;
}

.featureh-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.featureh-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.featureh-description {
  font-size: 1.3rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.featureh-benefits {
  list-style: none;
  padding: 0;
}

.featureh-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  color: #e0e0e0;
}

.featureh-check {
  color: #00d4ff;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
}

.featureh-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.featureh-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

/* Hover en toda la tarjeta */
.featureh-highlight:hover .feature-image-container {
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.25);
  border-color: #00d4ff60;
}

.featureh-icon-wrapper-1{
  color: #00d4ff;
}

.featureh-icon-wrapper-1 svg{
  height: 64px;
  width: 64px;
}

.featureh-icon-wrapper-2{
  color: #a78bfa;
}

.featureh-icon-wrapper-2 svg{
  height: 64px;
  width: 64px;
}

/* Responsive */
@media (max-width: 992px) {
  .featureh-content,
  .featureh-highlight.reverse .feature-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .featureh-highlight.reverse .feature-text {
    order: 2;
  }

  .featureh-highlight.reverse .feature-image-container {
    order: 1;
  }

  .featureh-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .featureh-title {
    font-size: 2rem;
  }

  .featureh-description {
    font-size: 1.15rem;
  }
}



/* Reemplaza tu .feature-content y agrega esto */

.featureh-highlight .featureh-content {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: center;
}

.featureh-highlight.reverse .featureh-content {
  flex-direction: row-reverse;
}

/* Mobile: siempre texto arriba, imagen abajo */
@media (max-width: 992px) {
  .featureh-highlight .featureh-content,
  .featureh-highlight.reverse .featureh-content {
    flex-direction: column !important;
    gap: 3rem;
  }
  .featureh-image-container{
    margin: 20px;
  }
  /* Forzar texto arriba en mobile */
  .featureh-text {
    order: -1;
  }
}
.featureh-image {
  transition: transform 0.4s ease;
}

.featureh-image:hover {
  transform: scale(1.04);
}



/*PREGUNTAS FRECUENTES*/
/* ===============================
   BASE
================================= */

.pf-wrapper {
  background: #0b0f19;
  color: #ffffff;
  overflow-x: hidden;
}

.pf-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* ===============================
   HERO
================================= */

.pf-hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.pf-hero-content {
  position: relative;
  z-index: 2;
}

.pf-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  margin-bottom: 25px;
}

.pf-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pf-hero p {
  font-size: 18px;
  color: #aab0c0;
  line-height: 1.6;
}

.pf-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

/* ===============================
   FAQ SECTION
================================= */

.pf-section {
  padding: 80px 0 120px;
}

.pf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===============================
   FAQ ITEM
================================= */

.pf-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pf-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}

.pf-item.active {
  border-color: rgba(0, 212, 255, 0.6);
}

/* ===============================
   QUESTION
================================= */

.pf-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.pf-question span {
  max-width: 85%;
}

.pf-question:hover {
  color: #00d4ff;
}

/* ===============================
   ANSWER
================================= */

.pf-answer {
  overflow: hidden;
}

.pf-answer-inner {
  padding: 0 26px 22px 26px;
}

.pf-answer p {
  font-size: 15px;
  color: #cbd3e1;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===============================
   CTA
================================= */

.pf-cta {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pf-cta h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.pf-btn {
  padding: 14px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #a78bfa);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.pf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
  .pf-hero {
    padding: 110px 0 70px;
  }

  .pf-hero h1 {
    font-size: 28px;
  }

  .pf-hero p {
    font-size: 16px;
  }

  .pf-question {
    font-size: 15px;
    padding: 18px 20px;
  }

  .pf-answer-inner {
    padding: 0 20px 18px 20px;
  }

  .pf-cta h2 {
    font-size: 24px;
  }

  .pf-btn {
    width: 100%;
    display: inline-block;
  }
}
.pf-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.pf-item.active .pf-answer {
  opacity: 1;
}


/*CONTACTO*/
/* =========================
   BASE
========================= */

.contact-wrapper {
  background: #0b0f19;
  color: #ffffff;
  overflow-x: hidden;
}

.contact-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   HERO
========================= */

.contact-hero {
  position: relative;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  margin-bottom: 25px;
}

.contact-hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero p {
  font-size: 18px;
  color: #aab0c0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.contact-glow {
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%);
  filter: blur(120px);
  z-index: 0;
}

/* =========================
   GRID
========================= */

.contact-section {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
   CARD (Glass Real)
========================= */

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 40px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-4px);
}

.contact-card h2 {
  margin-bottom: 30px;
  font-size: 22px;
}

/* =========================
   FORM
========================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 14px;
  color: #aab0c0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.05);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 12px;
  background: #0b0f19;
  padding: 0 6px;
  color: #00d4ff;
}

/* =========================
   BUTTON
========================= */

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #a78bfa);
  border: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* =========================
   INFO LATERAL
========================= */

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #cbd3e1;
}

.contact-info-item svg {
  height: 22px;
  width: 22px;
}

.contact-info-item a {
  color: #00d4ff;
  text-decoration: none;
  transition: 0.2s;
}

.contact-info-item a:hover {
  opacity: 0.7;
}

.contact-note {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  color: #aab0c0;
}

/* =========================
   CTA FINAL
========================= */

.contact-cta {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-cta h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.contact-btn {
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00d4ff, #a78bfa);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 110px 0 70px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-cta h2 {
    font-size: 24px;
  }

  .contact-btn {
    width: 100%;
    display: inline-block;
  }
}



/*LOADER*/
.premium-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483647;

  display: flex;
  justify-content: center;
  align-items: center;

  background: radial-gradient(
      circle at center,
      #0f172a 0%,
      #0b1220 40%,
      #050a14 100%
  );

  color: white;
  overflow: hidden;
}

.loader-content {
  text-align: center;
  max-width: 500px;
  padding: 40px;
  animation: fadeIn 0.8s ease forwards;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.loader-logo {
  width: 220px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,119,255,0.4) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.loader-title {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.loader-subtitle {
  margin-top: 10px;
  font-size: 1rem;
  opacity: 0.7;
}

.progress-bar {
  margin-top: 30px;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
      90deg,
      #0077ff,
      #00d4ff,
      #0077ff
  );
  background-size: 200% 100%;
  animation: progressAnim 2.5s linear forwards,
             gradientMove 2s linear infinite;
  border-radius: 10px;
}

/* Animaciones */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes progressAnim {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes gradientMove {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Fade out suave */
.fade-out {
  animation: loaderExit 0.8s ease forwards;
}

@keyframes loaderExit {
  0% {
    opacity: 1;
    transform: scale(1);
    backdrop-filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
    backdrop-filter: blur(10px);
    pointer-events: none;
  }
}
.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}


/*whatsapp*/
/* ===== WHATSAPP FLOATING BUTTON ===== */

/* Contenedor en esquina inferior derecha */
.whatsapp-fab {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  /* para que el tooltip quede a la izquierda del botón */
  flex-direction: row-reverse;
}

/* Botón redondo */
.whatsapp-fab__button {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab__button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab__button:focus-visible {
  outline: 3px solid #004aad; /* combina con tu paleta */
  outline-offset: 3px;
}

.whatsapp-fab__icon {
  width: 28px;
  height: 28px;
  pointer-events: none;
}

/* Pulso suave alrededor del botón */
.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: fabPulse 2.6s infinite;
}

@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Tooltip / globo de ayuda */
.whatsapp-fab__tooltip {
  position: relative;
  max-width: 100%;
  background: #ffffff;
  color: #222;
  border: 1px solid #ececec;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.3;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.whatsapp-fab__tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;              /* piquito hacia el botón (a la derecha) */
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  filter: drop-shadow(0 0 0 #ececec);
}

/* Mostrar tooltip al cargar (una vez) o al hover */
.whatsapp-fab__tooltip.is-visible,
.whatsapp-fab__button:hover + .whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .whatsapp-fab__button {
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab__tooltip {
    display: none; /* evitar superposición en pantallas muy chicas */
  }
}

/* Accesibilidad: reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__pulse { animation: none; }
  .whatsapp-fab__button { transition: none; }
}
