*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --red: #c0203a;
      --nav-bg: #d4d1d6;
    }

    body {
      font-family: 'Raleway', sans-serif;
      background: #f4f4f4;
    }

    /* ── NAVBAR ── */
    nav {
      background: var(--nav-bg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 78px;
      border-bottom: 3px solid var(--red);
      position: relative;
    }

    .nav-logo img {
      height: 52px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a.active {
      color: #111;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .nav-links a:hover { color: var(--red); }

    /* ── BOTÓN HAMBURGUESA ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #333;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      overflow: hidden;
      padding: 0 24px 48px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/hero1.png');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .hero-tagline {
      position: relative;
      z-index: 2;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      max-width: 520px;
      line-height: 1.55;
    }

    /* ── RESPONSIVE ── */
    @media (min-width: 1200px) {
      .hero { min-height: 420px; padding-bottom: 64px; }
      .hero-tagline { font-size: 1.15rem; }
    }

    @media (max-width: 1199px) and (min-width: 992px) {
      .hero { min-height: 360px; padding-bottom: 52px; }
      .hero-tagline { font-size: 1rem; }
    }

    @media (max-width: 991px) and (min-width: 768px) {
      nav { padding: 0 28px; }
      .nav-links { gap: 24px; }
      .hero { min-height: 280px; padding-bottom: 36px; }
      .hero-tagline { font-size: 0.95rem; max-width: 400px; }
    }

    /* ── MOBILE ── */
    @media (max-width: 767px) {
      nav {
        padding: 0 16px;
        height: 64px;
      }

      .nav-toggle { display: flex; }

      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        border-top: 2px solid var(--red);
        padding: 8px 0;
        gap: 0;
        z-index: 999;
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 13px 24px;
        font-size: 0.82rem;
        border-bottom: 1px solid rgba(0,0,0,0.07);
      }
      .nav-links a:hover { background: rgba(192,32,58,0.06); color: var(--red); }

      .hero { min-height: 200px; padding-bottom: 24px; }
      .hero-tagline { font-size: 0.82rem; max-width: 280px; }
    }

    /* ── WHITE SECTION BELOW ── */
    .content-section {
      background: #fff;
      min-height: 220px;
    }

    /* ── FOOTER ── */
    .site-footer {
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 20px;
  }
  .footer-contact { align-items: center; }

  .footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .footer-logo img {
    height: auto;
    max-height: 60px;
    max-width: 70%;
  }
    .footer-contact-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .footer-contact-item:hover .footer-contact-text { color: var(--red); }

    .footer-contact-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      fill: var(--red);
    }

    .footer-contact-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      color: #333;
      transition: color 0.2s;
    }

    /* ========== INFO CARD COMPONENT ========== */
    .card-container-section {
      background:  #f5f5f5;
      padding: 48px 24px 56px;
    }

    .info-card-container {
      display: flex;
      align-items: center;
      gap: 40px;
      background: #ffffff;
      max-width: 1000px;
      margin: 40px auto;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .info-card-image-wrapper {
      flex: 0 0 45%;
      perspective: 1000px;
    }

    .info-card-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .info-card-image:hover {
      transform: translateY(-15px) rotateX(5deg);
      box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .info-card-content {
      flex: 1;
      color: #ffffff;
    }

    .info-card-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      background: #111822;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .info-card-text {
      font-size: 1rem;
      line-height: 1.8;
      color: #a0a0b0;
      margin-bottom: 25px;
    }

    .info-card-button {
      display: inline-block;
      padding: 12px 30px;
      background: #e8024c;
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      border-radius: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .info-card-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    }

    @media (max-width: 768px) {
      .info-card-container {
        flex-direction: column;
        padding: 20px;
      }
      .info-card-image-wrapper {
        flex: none;
        width: 100%;
      }
      .info-card-title {
        font-size: 1.5rem;
        text-align: center;
      }
      .info-card-text { text-align: center; }
      .info-card-button { display: block; text-align: center; }
    }

    /* ========== CARRUSEL ========== */
    .carousel-section {
      background:  #f5f5f5;
      padding: 48px 24px 56px;
    }

    .carousel-section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      text-align: center;
      margin-bottom: 32px;
    }

    .carousel-section-title span {
      display: inline-block;
      border-bottom: 3px solid var(--red);
      padding-bottom: 6px;
    }

    .carousel-wrapper {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 24px;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .carousel-card {
      flex: 0 0 calc((100% - 48px) / 3);
      border-radius: 12px;
      overflow: hidden;
      background: #f9f9f9;
      box-shadow: 0 4px 18px rgba(0,0,0,0.10);
      transition: box-shadow 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .carousel-card:hover {
      box-shadow: 0 10px 32px rgba(192,32,58,0.18);
      transform: translateY(-4px);
    }

    .carousel-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .carousel-card-img-wrapper {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #ddd;
    }

    .carousel-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .carousel-card:hover .carousel-card-img { transform: scale(1.06); }

    .carousel-card-caption {
      padding: 14px 16px 16px;
      background: #fff;
    }

    .carousel-card-caption-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.4;
      transition: color 0.2s;
    }

    .carousel-card:hover .carousel-card-caption-text { color: var(--red); }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--red);
      background: #fff;
      color: var(--red);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s, color 0.2s;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }

    .carousel-btn:hover { background: var(--red); color: #fff; }
    .carousel-btn:disabled { opacity: 0.3; cursor: default; }
    .carousel-btn-prev { left: -20px; }
    .carousel-btn-next { right: -20px; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      padding: 0;
    }

    .carousel-project-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 20px;
  transition: opacity 0.25s ease;
}

    .carousel-dot.active {
      background: var(--red);
      transform: scale(1.3);
    }

    @media (max-width: 991px) and (min-width: 600px) {
      .carousel-card { flex: 0 0 calc((100% - 24px) / 2); }
    }

    @media (max-width: 599px) {
      .carousel-card { flex: 0 0 100%; }
      .carousel-btn-prev { left: -8px; }
      .carousel-btn-next { right: -8px; }
    }

    /*TITULOS DE SECCIONES*/
    .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

       /* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
  padding: 4rem 1.5rem;
  background: #f5f5f5;
  text-align: center;
}

.contact-info-header {
  margin-bottom: 2.5rem;
}

.contact-info-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.5rem;
}

.contact-info-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  border-top: 4px solid #c0203a;
}

.contact-info-icon-wrap {
  width: 64px;
  height: 64px;
  background: #c0203a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  fill: white;   /* ← cambia de #fff a white, mismo efecto pero más explícito */
}
.contact-info-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.contact-info-card-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.contact-info-btn {
  display: inline-block;
  background: #c0203a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-info-btn:hover {
  background: #9b1a2f;
}

@media (max-width: 700px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}


   /* ========== MISIÓN, VISIÓN Y OBJETIVOS ========== */
.mvv-section {
  background:  #f5f5f5;
  padding: 56px 24px 64px;
}

.mvv-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.mvv-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--red);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mvv-card:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(192, 32, 58, 0.15);
}

.mvv-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.mvv-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mvv-card.mvv-visible .mvv-card-title {
  opacity: 1;
  transform: translateY(0);
}

.mvv-title-line {
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  width: 0;
  transition: width 0.45s ease 0.35s;
}

.mvv-card.mvv-visible .mvv-title-line {
  width: 100%;
}

.mvv-card-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.mvv-objectives-list {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #555;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mvv-objectives-list li::marker { color: var(--red); }

@media (max-width: 599px) {
  .mvv-card {
    padding: 24px 20px 28px;
    border-left: none;
    border-top: 4px solid var(--red);
  }
  .mvv-card:hover { transform: translateY(-4px); }
}

    /* Footer responsive */
    @media (max-width: 767px) {
      .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px;
        gap: 20px;
      }
      .footer-contact { align-items: flex-start; }
    }

    @media (max-width: 991px) and (min-width: 768px) {
      .site-footer { padding: 24px 28px; }
    }

    /*lista- lista*/
    .list-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-list li {
        font-size: 1rem;
      line-height: 1.8;
      color: #a0a0b0;
      margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.list-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.section-title-wrap {
  display: inline-block;
  margin-bottom: 12px;
}

.section-title-line {
  height: 3px;
  width: 0;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.6s ease;
  margin-top: 20px; /* ← ajusta este valor al gusto */
}
.section-title-line.visible {
  width: 100%;
}
/* ========== HERO ESTILO "SPOTIFY" — SOLO PÁGINA DE INICIO ========== */
/* Usa la misma paleta del sitio (--red y --nav-bg) para conservar identidad */
.hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
  background: linear-gradient(135deg, #0d131c 0%, #111822 55%, #1c2636 100%);
  isolation: isolate;
}

/* Blobs orgánicos (forma tipo "reloj de arena") detrás del texto */
.hero-modern::before,
.hero-modern::after {
  content: '';
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 32% 32%, rgba(191, 191, 191, 0.35), rgba(191, 191, 191, 0.03) 70%);
  mix-blend-mode: soft-light;
  z-index: 0;
  pointer-events: none;
}

.hero-modern::before {
  width: 480px;
  height: 480px;
  top: -220px;
}

.hero-modern::after {
  width: 560px;
  height: 560px;
  bottom: -260px;
}

.hero-modern-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-modern-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
}

.hero-modern-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-modern-btn {
  display: inline-block;
  background: #e90a4d;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(233, 10, 77, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(233, 10, 77, 0.45);
}

@media (max-width: 767px) {
  .hero-modern { min-height: 460px; padding: 64px 20px; }
  .hero-modern::before { width: 320px; height: 320px; top: -140px; }
  .hero-modern::after { width: 360px; height: 360px; bottom: -170px; }
  .hero-modern-subtitle { font-size: 0.92rem; }
  .hero-modern-btn { padding: 14px 32px; font-size: 0.78rem; }
}
/* ========== FIN HERO ESTILO "SPOTIFY" ========== */