@charset "UTF-8";

/* ============================================================================
   VARIABLES GLOBALES
============================================================================ */
:root {
  --fuente-base: "Open Sans", sans-serif;
  --fuente-secundaria: "Noto Sans", sans-serif;

  /* Paleta de colores - Bloques */
  --blanco: #ffffff;
  --platino-claro: #f3f3f1;
  --platino: #ecece7;

  /* Paleta de colores - Logo */
  --azul-columbia: #cadee8;
  --azul-grisaceo: #6591d4;
  --azul-logo: #46678f;

  /* Paleta de colores - Texto */
  --azul-prussia: #103960;
  --grafito: #605f69;

  /* Paleta de colores - Acento y CTA */
  --rosa-brillante: #ff5b73;
  --rojo-madera: #ad5654;
  --rojo-oscuro: #c33647;
   --verde-pris: #10a997;
   --verde-pris-oscuro: #027d39;

  /* Colores de redes sociales */
  --azul-linkedin: #0c90e7;
  --leon: #b58d52;

  /* Espaciado */
  --padding-global: 1.5rem;
  --section-gap: 3rem;
  --block-gap: 2rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Contenedores */
  --container-max-width: 90%;
  --container-max-width-max: 1400px;
  --logo-width: 350px;

  /* Bordes y radios */
  --border: 1px solid var(--rosa-brillante);
  --border-light: 1px solid var(--azul-columbia);
  --radius-default: 12px;

  /* Efectos y transiciones */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-default: 0 5px 20px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
}

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

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

body {
  min-height: 100vh;
  font-family: var(--fuente-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--grafito);
  background: var(--platino-claro);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================================================
   TIPOGRAFÍA
============================================================================ */

/* ============================= */
/* FUENTE SECUNDARIA – ENCABEZADOS Y PRECIOS */
/* ============================= */
h1,
h2,
h3,
h4,
h5,
h6,
.precio {
  font-family: var(--fuente-secundaria);
  color: var(--azul-logo);
  font-weight: 700; /* predeterminado */
  line-height: 1.2;
  margin: 0 0 1rem 0;
  color: #111;
}

/* Pesos recomendados para encabezados */
h1 {
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
}
h2 {
  font-weight: 600;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}
h3 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
h4 {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
}
h5 {
  font-weight: 500;
  font-size: clamp(1.125rem, 1.25vw, 1.25rem);
}
h6 {
  font-weight: 500;
  font-size: clamp(1rem, 1vw, 1rem);
}

/* ============================= */
/* FUENTE BASE – TEXTO GENERAL */
/* ============================= */
body,
p,
ul,
ol,
li,
blockquote,
nav,
.menu {
  font-family: var(--fuente-base);
  font-weight: 400; /* normal */
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.6;
  color: var(--grafito);
  margin: 0 0 1rem 0;
}

/* Variantes de peso para fuente base si se requiere */
p.ligero {
  font-weight: 300;
}
p.medio {
  font-weight: 500;
}
p.bold {
  font-weight: 700;
}

ul {
  list-style: none; /* quitamos los bullets por defecto */
  padding-left: 1.5rem;
}

ul li {
  position: relative;
  padding-left: 2rem; /* espacio para el "bullet" */
  margin-bottom: 0.5rem;
}
.icono-beneficio {
  color: var(--rosa-brillante);
  margin-right: 0.5rem; /* opcional, para separar del texto */
}

u.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 27%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-color: #007bff; /* azul */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* círculo */
  font-size: 0.8rem;
}

.check-list li::before {
  content: "✔"; /* check */
  position: absolute;
  left: 0;
  top: 26%;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--rojo-oscuro);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px; /* cuadrado ligeramente redondeado */
  font-size: 0.8rem;
}
/* Enlaces */
a {
  color: var(--azul-prussia);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--azul-logo);
}

/* Negrita y cursiva */
strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* ============================================================================
   UTILIDADES
============================================================================ */
.acento,
.acento-titulo {
  color: var(--rosa-brillante);
  font-weight: 700;
}

.highlight-number {
  color: var(--rosa-brillante);
  font-weight: 700;
  font-size: 1.2em;
  display: inline-block;
  margin-right: 0.2em;
}

.separador-elegante {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rosa-brillante),
    transparent
  );
  margin: var(--spacing-xl) 0;
}
/*PRECIOS*/






/* ============================================================================
   CONTENEDORES PRINCIPALES
============================================================================ */
.container {
  width: var(--container-max-width);
  max-width: var(--container-max-width-max);
  margin: 0 auto;
  padding: clamp(1rem, 2.5vw, 3rem) clamp(0.75rem, 3vw, 4rem);
  background: var(--platino);
  border-radius: 0 0 8px 8px;
}

/* ============================================================================
   HERO PRINCIPAL
============================================================================ */
.hero-principal {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--padding-global);
}

.hero-principal .video-fondo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-principal .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-principal .contenido-hero {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: clamp(1rem, 5vw, 4rem);
  color: var(--blanco);
}

/* Slogan */
.slogan {
  font-family: var(--fuente-secundaria);
  font-weight: 700;
  font-size: clamp(2rem, 5vw + 1rem, 4rem);
  line-height: 1.2;
  color: var(--blanco);
  text-align: center;
  margin: clamp(1rem, 5vw, 2rem) 0;
  filter: drop-shadow(1px 1px 2px rgba(106, 122, 140, 0.4));
}

h2.intro-nordisk { /* CLASE ACTUALIZADA  .hero-principal .intro-nordisk h2 {*/
  font-family: var(--fuente-secundaria);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.3;
  color: var(--blanco);
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* Hero text adicional */
.hero-text {
  position: relative;
  z-index: 2;
  padding: var(--spacing-sm);
  margin-bottom: 0;
}

.hero-text h2,
.hero-text p {
  color: var(--azul-logo);
}

.hero-text h3 {
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--azul-logo);
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: left;
}

/* ============================================================================
   NOMBRE DE PÁGINA
============================================================================ */
#nombre-pagina-container {
  margin: 1.7rem 0 3.5rem 0;
}

.nombre-pag {
  text-align: left;
}

.nombre-pag span#nombre-pagina {
  background-color: var(--rosa-brillante);
  color: var(--blanco);
  font: 400 1rem var(--fuente-secundaria);
  letter-spacing: 0.04em;
  padding: 1rem 1.5rem;
  display: inline-block;
  margin-left: 1rem;
  vertical-align: middle;
  border-radius: var(--radius-default);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.nombre-pag span#nombre-pagina:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.35);
}

/* ============================================================================
   SECCIONES DE CONTENIDO
============================================================================ */
.intro {
  margin-bottom: var(--spacing-xl);
  display: flow-root;
}

.intro .intro-img {
  width: 100%;
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-hover);
}

.text-content {
  width: 100%;
  padding: var(--padding-global);
  background: var(--blanco);
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-strong);
  margin-bottom: var(--spacing-lg);
}

.benefits-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.benefits-list ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

.benefits-list li span.acento {
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: 5px;
}

.benefits-list li .texto-beneficio {
  flex: 1;
}

blockquote {
  border-left: 4px solid var(--rosa-brillante);
  padding-left: 2rem;
  margin: 2rem 0; /* limpio, sin conflictos */
  color: var(--grafito);
}

blockquote p {
  font-family: var(--fuente-base);
  font-weight: 400; /* normal */
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.8; /* solo un valor válido */
  margin: 0; /* eliminar márgenes internos del p si los hubiera */
}
/* ============================================================================
   NOTA DESTACADA
============================================================================ */
.highlight-note {
  background: linear-gradient(90deg, #11850d, #0f7b0b);
  color: var(--blanco);
  padding: 1.5rem 2rem;
  margin: 2rem auto 0;
  border-radius: var(--radius-default);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  text-align: justify;
}

.highlight-note a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #66e697, #21c850);
  color: #2563eb;
  font-weight: 400;
  border-radius: var(--radius-default);
  transition: all var(--transition-base);
}

.highlight-note a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
  background: linear-gradient(135deg, #ccb9b4, #b89f98);
  color: var(--rojo-madera);
}

/* ============================================================================
   VALORES Y PROCESO
============================================================================ */
.values-section,
.process-section {
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.values-section h2,
.process-section h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: var(--spacing-md);
  color: var(--azul-logo);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.value-card {
  background: rgba(26, 31, 58, 0.04);
  border: 1px solid rgba(10, 14, 39, 0.04);
  border-radius: var(--radius-default);
  padding: 1.6rem;
  text-align: left;
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  border-color: rgba(0, 212, 255, 0.12);
}

.value-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--rosa-brillante);
}

.mission h2,
.vision h2,
.soluciones h2,
.servicios h2,
.porque h2,
.historia h2,
.transforma h2 {
  font-family: var(--fuente-secundaria);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  color: var(--azul-logo);
  letter-spacing: -0.05em;
  margin-bottom: clamp(0.5rem, 2vw, 0.5rem); /* mínimo, relativo, máximo */
  margin-top: clamp(
    0.5rem,
    2vw,
    0.5rem
  ) !important ; /* mínimo, relativo, máximo */
  position: relative;
  text-align: left;
}
.historia p {
  text-align: left;
}

/* H2 unificados dentro de Mission-Vision */
.mission-vision-wrapper section h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700; /* o el que quieras uniforme */
  font-size: 2rem; /* tamaño uniforme */
  line-height: 1.3;
}

/* Acento dentro del H2 */
.mission-vision-wrapper h2 .acento {
  color: #f05a28; /* color destacado */
  font-weight: 700; /* ligeramente más grueso para resaltar el número */
}

/* ============================================================================
   CARDS HOME
============================================================================ */
.home-oferta {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.home-oferta h2 {
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: var(--azul-logo);
}

.home-cards-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}

.home-card {
  background: var(--blanco);
  border-radius: var(--radius-default);
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  perspective: 1000px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: bottom; /* pivote desde la parte inferior */
}

.home-card:hover {
  transform: rotateX(-5deg); /* ligera inclinación hacia atrás */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); /* sombra más pronunciada */
}

.home-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul-logo);
}

.home-card ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}
.home-card li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.home-card ul li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.home-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rosa-brillante);
  font-weight: bold;
}

/* CTA dentro de home-card */
.home-card .cta-home-card {
  margin-top: auto;
  text-align: center;
  color: var(--blanco);
  background-color: var(--azul-grisaceo);
  border-radius: var(--radius-default);
  transition: all var(--transition-base);
  display: inline-block;
  font-size: 1.2rem;
  padding: 2rem;
  font-weight: 400;
  max-width: 250px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 auto;
}

.home-card .cta-home-card:hover {
  background-color: var(--azul-logo);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px); /* solo CTA se levanta */
}
/* ==============================
   SECCIÓN DE PLANES
============================== */

/* Contenido principal: imagen + texto - SIEMPRE EN COLUMNA HASTA 1024px */
.plan-content {
  display: flex;
  flex-direction: column; /* imagen arriba, texto abajo */
  margin: 2rem auto;
}

/* Imagen */
.plan-image-container {
  width: 100%;
  height: 260px;
  overflow: hidden;
  
}

.plan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto e info */
.plan-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
  background-color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-origin: bottom;
}

.plan-info:hover {
  transform: rotateX(-4deg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.plan-info h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--azul-logo, #2a6ebd);
  margin-bottom: 0.5rem;
}

.plan-info ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}
.plan-info li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.plan-info ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.3em;
  position: relative;
}

.plan-info ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rosa-brillante, #e6397d);
  font-weight: bold;
}

.plan-info .price-tag {
  font-family: var(--fuente-base);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--azul-logo);
  margin: 0.5rem 0;
  letter-spacing: 0.5px;
}

.plan-info .cta-button {
  margin-top: auto;
  text-align: center;
  font-size: 1.2rem;
  color: var(--blanco);
  font-weight: 400;
  background-color: var(--verde-pris);
  border-radius: var(--radius-default);
  transition: all var(--transition-base);
  display: inline-block;
  padding: 2rem;
  min-width: 200px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 auto;
}

.plan-info .cta-button:hover {
  background-color: var(--verde-pris-oscuro);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ==============================
   TABLET (768px a 1023px) - SIGUE EN COLUMNA
============================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .plan-content {
    flex-direction: column; /* mantener imagen arriba */
  }

  .plan-image-container {
    width: 100%;
    height: 300px; /* un poco más alta en tablet */
  }

  .plan-info {
    width: 100%;
    padding: 2rem;
  }
}

/* ==============================
   VISTA ESCRITORIO (desde 1024px) - IMAGEN A LA IZQUIERDA
============================== */
@media screen and (min-width: 1024px) {
  .plan-content {
    flex-direction: row; /* ahora sí, lado a lado */
    align-items: stretch;
  }

  .plan-image-container {
    width: 50%;
    height: auto; /* que crezca junto con el texto */
  }

  .plan-info {
    width: 50%;
    padding: 2.5rem;
  }
}
/*============================================================
TIME LINE
=============================================================*/
 .timeline-container {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--blanco);
      border-radius: var(--radius-default);
      padding: 3rem 2rem;
      box-shadow: var(--shadow-default);
    }

    .timeline-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .timeline-header h1 {
      font-family: var(--fuente-secundaria);
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--azul-logo);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .timeline-header .acento {
      color: var(--rosa-brillante);
    }

    .timeline-header p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--grafito);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Timeline principal */
    .timeline {
      position: relative;
      padding: 2rem 0;
    }

    /* Línea vertical central */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--azul-columbia), var(--rosa-brillante));
      border-radius: 2px;
    }

    /* Item individual del timeline */
    .timeline-item {
      position: relative;
      margin-bottom: 4rem;
      display: flex;
      align-items: center;
    }

    .timeline-item:last-child {
      margin-bottom: 0;
    }

    /* Contenedor del contenido */
    .timeline-content {
      background: var(--platino);
      border-radius: var(--radius-default);
      padding: 2rem;
      width: calc(50% - 3rem);
      box-shadow: var(--shadow-default);
      transition: all var(--transition-base);
      border: 2px solid transparent;
    }

    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: var(--rosa-brillante);
    }

    /* Items a la izquierda */
    .timeline-item.left {
      justify-content: flex-start;
    }

    .timeline-item.left .timeline-content {
      margin-right: auto;
    }

    /* Items a la derecha */
    .timeline-item.right {
      justify-content: flex-end;
    }

    .timeline-item.right .timeline-content {
      margin-left: auto;
    }

    /* Punto circular en el centro */
    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      background: var(--blanco);
      border: 4px solid var(--rosa-brillante);
      border-radius: 50%;
      z-index: 2;
      box-shadow: 0 0 0 4px rgba(255, 91, 115, 0.2);
      transition: all var(--transition-base);
    }

    .timeline-item:hover .timeline-dot {
      transform: translateX(-50%) scale(1.3);
      box-shadow: 0 0 0 8px rgba(255, 91, 115, 0.3);
    }

    /* Número del servicio */
    .service-number {
      font-family: var(--fuente-secundaria);
      font-size: 3rem;
      font-weight: 700;
      color: var(--rosa-brillante);
      opacity: 0.15;
      position: absolute;
      top: 0.5rem;
      right: 1rem;
      line-height: 1;
      z-index: 0;
      pointer-events: none;
    }
    
    .timeline-content {
      position: relative;
      overflow: hidden;
    }
    
    .timeline-content > *:not(.service-number) {
      position: relative;
      z-index: 1;
    }

    /* Título del servicio */
    .timeline-content h3 {
      font-family: var(--fuente-secundaria);
      font-size: clamp(1.5rem, 2vw, 2rem);
      color: var(--azul-logo);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    /* Descripción */
    .timeline-content p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--grafito);
      margin-bottom: 1rem;
    }

    /* Lista de características */
    .timeline-content ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }

    .timeline-content li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .timeline-content li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--rosa-brillante);
      font-weight: bold;
    }

    /* Botón CTA */
    .timeline-cta {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      background: var(--rosa-brillante);
      color: var(--blanco);
      text-decoration: none;
      border-radius: var(--radius-default);
      font-weight: 600;
      font-size: 0.95rem;
      transition: all var(--transition-base);
      box-shadow: 0 4px 10px rgba(255, 91, 115, 0.3);
    }

    .timeline-cta:hover {
      background: var(--rojo-oscuro);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(255, 91, 115, 0.4);
    }

    /* RESPONSIVE - TABLET */
    @media (max-width: 1024px) {
      .timeline::before {
        left: 30px;
      }

      .timeline-item {
        justify-content: flex-start !important;
        padding-left: 70px;
      }

      .timeline-item.left .timeline-content,
      .timeline-item.right .timeline-content {
        width: 100%;
        margin: 0;
      }

      .timeline-dot {
        left: 30px;
      }
    }

    /* RESPONSIVE - MÓVIL */
    @media (max-width: 768px) {
      .timeline-container {
        padding: 2rem 1rem;
      }

      .timeline-header {
        margin-bottom: 2rem;
      }

      .timeline::before {
        left: 20px;
      }

      .timeline-item {
        padding-left: 50px;
        margin-bottom: 2.5rem;
      }

      .timeline-dot {
        left: 20px;
        width: 16px;
        height: 16px;
        border-width: 3px;
      }

      .timeline-content {
        padding: 1.5rem;
      }

      .service-number {
        font-size: 2rem;
        top: -0.5rem;
        right: 0.5rem;
      }

      .timeline-content h3 {
        font-size: 1.25rem;
      }

      .timeline-content p {
        font-size: 0.95rem;
      }
    }

    /* Animación de entrada */
    .timeline-item {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards;
    }

    .timeline-item:nth-child(1) { animation-delay: 0.1s; }
    .timeline-item:nth-child(2) { animation-delay: 0.2s; }
    .timeline-item:nth-child(3) { animation-delay: 0.3s; }
    .timeline-item:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
/* ==============================
   TABLET (768px a 1023px) - SIGUE EN COLUMNA
============================== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .plan-content {
    flex-direction: column; /* mantener imagen arriba */
  }

  .plan-image-container {
    width: 100%;
    height: 300px; /* un poco más alta en tablet */
  }

  .plan-info {
    width: 100%;
    padding: 2rem;
  }
}

/* ==============================
   VISTA ESCRITORIO (desde 1024px) - IMAGEN A LA IZQUIERDA
============================== */
@media screen and (min-width: 1024px) {
  .plan-content {
    flex-direction: row; /* ahora sí, lado a lado */
    align-items: stretch;
  }

  .plan-image-container {
    width: 50%;
    height: auto; /* que crezca junto con el texto */
  }

  .plan-info {
    width: 50%;
    padding: 2.5rem;
  }
}
/* ============================================================================
   CARDS GENÉRICAS
============================================================================ */
.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cards a.card {
  display: block;
  max-width: 400px;
  text-align: center;
  background: var(--blanco);
  border-radius: var(--radius-default);
  overflow: hidden;
  padding: 1rem;
  transition: box-shadow var(--transition-base),
    transform var(--transition-base);
}

.cards a.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.cards a.card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-default) var(--radius-default) 0 0;
}

/* Imagen centrada con efecto */
.forvandla img.centrado {
  display: block;
  width: 300px;
  margin: 1.5rem auto;
  border-radius: var(--radius-default);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.forvandla img.centrado:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================================================
   MODAL
============================================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: var(--blanco);
  width: 70%;
  max-width: 900px;
  padding: 2rem;
  border-radius: var(--radius-default);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s;
}

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

/* ============================================================================
   PORTAFOLIO
============================================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.portafolio-item {
  display: flex;
  flex-direction: column; /* organizar los hijos verticalmente */
  justify-content: space-between; /* empuja el botón hacia el bottom */
  height: 100%; /* asegúrate que el contenedor tenga altura definida */
}

.portafolio-item h4 {
  font-family: var(--fuente-secundaria);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: var(--azul-logo);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.portfolio-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-default);
}

.portafolio-item .cta-button {
  margin-top: auto;
  text-align: center;
  font-size: 1.2rem;
  color: var(--blanco);
  font-weight: 400;
  background-color: var(--rosa-brillante);
  border-radius: var(--radius-default);
  transition: all var(--transition-base);
  display: inline-block;
  padding: 2rem;
  max-width: 250px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 auto;
}
.portafolio-item .cta-button:hover {
  background-color: var(--rojo-oscuro);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
/* ============================================================================
   CTA (Call to Action)
============================================================================ */
.pre-cta-text {
  color: var(--azul-logo);
  text-align: center;
  margin: var(--padding-global);
  line-height: 1.5;
}

.cta-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.5rem 0;
  text-align: center;
}

.cta-button {
  margin-top: auto;
  text-align: center;
  font-size: 1.2rem;
  color: var(--blanco);
  font-weight: 400;
  background-color: var(--rosa-brillante);
  border-radius: var(--radius-default);
  transition: all var(--transition-base);
  display: inline-block;
  padding: 2rem;
  max-width: 300px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin: 0 auto;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--rojo-oscuro);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.35);
}

.cta-button:focus-visible {
  outline: 2px solid var(--rosa-brillante);
  outline-offset: 4px;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.cta-sutil {
  text-align: center;
  font-size: 1.2rem;
  color: var(--grafito);
  margin-top: var(--spacing-md);
}

/* ============================================================================
   BLOQUES DE SERVICIOS
============================================================================ */
.bloque-servicio {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-default);
  cursor: pointer;
  transition: all var(--transition-base);
}

.bloque-servicio img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-default);
}

.bloque-servicio::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.servicio-content,
.titulo-servicio {
  position: relative;
  z-index: 2;
  color: var(--blanco);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 24%;
}

.titulo-servicio {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  margin: 0;
}

.numero-servicio {
  font-size: clamp(1.2rem, 2vw, 3rem);
  font-weight: 500;
  color: var(--rosa-brillante);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 1px;
}

.flecha-derecha {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1rem;
  background-image: url("../images/flecha.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) desaturate(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bloque-servicio:hover {
  background-color: var(--rosa-brillante);
}

.bloque-servicio:hover .numero-servicio,
.bloque-servicio:hover .titulo-servicio {
  color: var(--blanco);
}

.bloque-servicio:hover .flecha-derecha {
  filter: brightness(0) saturate(100%) invert(100%);
  transform: translateX(8px);
}

.bloque-servicio-link {
  display: block;
  cursor: pointer;
  color: inherit;
}

/* ============================================================================
   CONTENEDORES DE SECCIONES
============================================================================ */
.mission-vision-wrapper,
.soluciones-servicios-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem auto;
  max-width: var(--container-max-width-max);
}

.servicios,
.porque,
.historia,
.transforma,
.mission,
.vision,
.soluciones,
.servicios {
  background-color: var(--blanco);
  border: var(--border-light);
  border-radius: var(--radius-default);
  padding: var(--padding-global);
  width: 100%;
}

.services-overview,
.why-nordisk {
  margin-bottom: 1rem;
}

.services-overview::before,
.why-nordisk::before,
.cards-wrapper::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--rojo-madera),
    transparent
  );
  margin-bottom: 2rem;
}

/* Homogeneización de headings en secciones */
.historia h2,
.transforma h2,
#nuestros-principios h2,
#nuestro-proceso h2,
.services-overview h2,
.why-nordisk h2,
.cards-wrapper h2 {
  font-family: var(--fuente-secundaria);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  line-height: 1.2;
  color: var(--azul-logo);
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.historia h2 span.acento,
.transforma h2 span.acento,
.services-overview h2 span.acento,
.why-nordisk h2 span.acento,
.cards-wrapper h2 span.acento {
  color: var(--rosa-brillante);
  font-weight: 700;
}

.home-card ul,
.soluciones ul,
.servicios ul {
  padding-left: 1.5rem;
}
/* ============================================================================
   TARJETAS DE SERVICIOS (CAROUSEL)
============================================================================ */
.servicios-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background-color: #f9f9f9;
}

.servicio-card {
  background-color: var(--blanco);
  border-radius: var(--radius-default);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 350px;
  text-align: center;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.servicio-link {
  display: block;
  color: inherit;
  height: 100%;
  padding: 1rem;
}

.servicio-imagen img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-default);
  margin-bottom: 1rem;
}

.servicio-titulo {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: var(--blanco);
  display: block;
  background: linear-gradient(
    360deg,
    #1a3a5a,
    #3b7ac4
  ); /* degradado de izquierda a derecha */
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

.servicio-descripcion {
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  line-height: 1.5;
  color: var(--grafito);
  text-align: left;
}

/* ============================================================================
   SECCIONES DE CONTENIDO CON IMAGEN
============================================================================ */
.content-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
  margin-bottom: 3rem;
  scroll-margin-top: 4rem;
}

.content-section .content-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-default);
}

.content-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
}

.content-section .content-image img:hover {
  transform: scale(1.05);
  filter: grayscale(0);
}

.content-section .content-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-section h2 {
  color: var(--azul-logo);
  font-weight: 600;
  margin: 0.5rem 0;
}

.content-text h3 {
  font-family: var(--fuente-secundaria);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--azul-logo);
  margin-top: 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.content-text h4{
  font-family: var(--fuente-secundaria);
  font-weight: 400;
  color: var(--rojo-oscuro);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin: 0.25rem 0 1rem 0;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.content-section p {
  margin: 0.25rem 0 0.75rem 0;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  line-height: clamp(1.4, 1.6, 1.8);
}

/* ============================================================================
   IMAGEN Y BLOQUES COMUNES
============================================================================ */
.img-block,
.slogan-image,
.image-area img,
.image-area video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-default);
  display: block;
  border: var(--border-light);
  box-shadow: var(--shadow-default);
  transition: box-shadow var(--transition-base);
  margin-bottom: var(--padding-global);
}

.image-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ============================================================================
   ANIMACIONES
============================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   DECORADORES DE H2
============================================================================ */
h2:not(.slogan):not(.titulo-servicio):not(.hero-text):not(
    .portafolio-item
  )::after {
  content: ">";
  color: var(--rosa-brillante);
  margin-left: 0.5rem;
  font-weight: 500;
  font-size: clamp(1.2rem, 3.2vw + 0.5rem, 2rem);
  line-height: clamp(1.5, 1.25rem, 1.3);
  vertical-align: middle;
  transition: color var(--transition-base);
  position: relative;
  top: -2px;
}

/* ============================================================================
   MEDIA QUERIES - TABLET (768px)
============================================================================ */
@media (min-width: 768px) {
  /* Intro con imagen flotante */
  .intro .intro-img {
    width: 65%;
    float: left;
    margin-right: var(--padding-global);
  }

  /* Cards home */
  .home-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contenedores de sección */
  .mission-vision-wrapper,
  .soluciones-servicios-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mission-vision-wrapper > section,
  .soluciones-servicios-wrapper > section {
    flex: 1 1 45%;
    min-width: 0;
  }

  /* Content sections con imagen */
  .content-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
  }

  .content-section:nth-child(even) {
    flex-direction: row-reverse;
  }

  .content-section .content-image,
  .content-section .content-text {
    width: 50%;
  }
 
  /* Modal */
  .modal-content {
    width: 90%;
    padding: 1.5rem;
  }

  /* Timeline responsive */
  .timeline::after {
    left: 12px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 48px;
    padding-right: 10px;
  }

  .timeline-item.right,
  .timeline-item.left {
    left: 0;
  }
}

/* ============================================================================
   MEDIA QUERIES - DESKTOP PEQUEÑO (1024px)
============================================================================ */
@media (min-width: 1024px) {
  /* Cards home */
  .home-cards-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .home-card {
    padding: 35px 25px;
  }

  /* Video flotante */
  .video-float {
    float: left;
    width: 50%;
    margin: 0 1.5rem 1.5rem 0;
  }

  /* Servicios carousel */
  .servicio-card {
    width: 280px;
  }
}

/* ============================================================================
   MEDIA QUERIES - DESKTOP GRANDE (1280px)
============================================================================ */
@media (min-width: 1280px) {
  .menu-toggle {
    display: none !important; /* ahora a partir de 1280px */
  }
  .home-cards-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .mission h2,
  .vision h2,
  .soluciones h2,
  .servicios h2,
  .porque h2,
  .historia h2,
  .transforma h2 {
    font-family: var(--fuente-secundaria);
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem) !important ;
    margin-bottom: clamp(0.5rem, 2vw, 0.5rem); /* mínimo, relativo, máximo */
    margin-top: clamp(
      0.5rem,
      2vw,
      0.5rem
    ) !important ; /* mínimo, relativo, máximo */
  }
}

/* ============================================================================
   MEDIA QUERIES - DESKTOP EXTRA GRANDE (1440px)
============================================================================ */
@media (min-width: 1440px) {
  p,
  ul,
  ol,
  li {
    max-width: 120ch;
  }

  .content-section {
    gap: 3rem;
    padding: 3rem 0;
  }
  .hero-text h3 {
    max-width: 1000px;
    margin: 0 auto;
  }
  .titulo-servicio {
    bottom: 1.8rem;
    left: 2rem;
    font-size: clamp(1.8rem, 1.5vw + 1rem, 2.6rem);
  }
}

/* ============================================================================
   MEDIA QUERIES - MÓVIL (MAX-WIDTH)
============================================================================ */
@media (max-width: 768px) {
  .servicios-carousel {
    flex-direction: column;
    align-items: center;
  }

  .servicio-card {
    width: 90%;
  }

  .flecha-derecha {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (max-width: 900px) {
  .founder-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================================================
   ACCESIBILIDAD - REDUCE MOTION
============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .value-card:hover {
    transform: none;
  }

  .home-card:hover {
    transform: none;
  }
}

/* ============================================================================
   FIN DEL ARCHIVO
============================================================================ */
.kontakta-oss {
  font-family: var(--fuente-secundaria);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--grafito);
  margin: 2rem 0 1rem 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: left;
}


/* ============================================
   CONVERSOR DE MONEDA
============================================ */

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
  font-family: var(--fuente-base);
}

.price-tag .from {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grafito);
}

.price-tag .amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--azul-logo);
  line-height: 1;
}

.price-tag .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-logo);
}

.price-tag .conversion {
  font-size: 0.85rem;
  color: var(--grafito);
  opacity: 0.8;
  font-weight: 400;
  margin-left: 0.5rem;
  white-space: nowrap;
}

#currency-selector-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 1rem;
}

.currency-selector {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: var(--fuente-base);
  color: var(--azul-logo);
  background-color: var(--blanco);
  border: 2px solid var(--azul-columbia);
  border-radius: var(--radius-default, 12px);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2346678f' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.currency-selector:hover {
  border-color: var(--azul-logo);
  box-shadow: 0 4px 12px rgba(70, 103, 143, 0.2);
}

.currency-selector:focus {
  outline: none;
  border-color: var(--rosa-brillante);
  box-shadow: 0 0 0 3px rgba(255, 91, 115, 0.2);
}

.currency-selector option {
  padding: 0.5rem;
  font-size: 1rem;
}