/* ============================================================
   inicio.css — Juguetes por Sonrisas Honduras — página INICIO
   Este archivo es independiente: no depende de ningún otro CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,600&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------------
   TOKENS DE DISEÑO (mismos valores en las 4 páginas del sitio,
   para que se vean como parte de un solo lugar aunque cada
   página tenga su propio archivo CSS)
   ---------------------------------------------------------- */
:root {
  --navy: #16213E;
  --navy-light: #223561;
  --navy-glass: rgba(22, 33, 62, 0.72);
  --cream: #FBF9F5;
  --white: #ffffff;
  --ink: #1C1C2B;
  --muted: #6b7280;

  --gold: #D9A441;
  --gold-dark: #B9832A;
  --gold-light: #F0C976;

  --violet: #6C5CE7;
  --coral: #FF6F59;
  --mint: #2ECC87;
  --teal: #22C9C9;

  --shadow-soft: 0 10px 30px rgba(22, 33, 62, 0.12);
  --shadow-strong: 0 20px 45px rgba(22, 33, 62, 0.22);

  --radius: 22px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

.contenedor { width: 100%; }

@media (min-width: 768px) {
  .contenedor { width: 50%; }
}

.color1 { color: var(--violet); }
.color2 { color: var(--coral); }
.color3 { color: var(--mint); }
.color4 { color: var(--teal); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--gold-light);
  color: var(--navy);
}

/* ----- BODY ----- */
body {
  font-family: 'Nunito Sans', sans-serif;
  min-height: 100vh;
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; }
a { font-family: inherit; }

/* ----- HEADER (igual en las 4 páginas) ----- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 164, 65, 0.25);
  transition: background var(--transition);
}

header .logo {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  color: white;
  letter-spacing: 0.5px;
  transition: transform var(--transition);
}

header .logo:hover { transform: scale(1.04); }
header .logo span { transition: text-shadow var(--transition); }
header .logo:hover .color1 { text-shadow: 0 0 14px var(--violet); }
header .logo:hover .color2 { text-shadow: 0 0 14px var(--coral); }
header .logo:hover .color3 { text-shadow: 0 0 14px var(--mint); }
header .logo:hover .color4 { text-shadow: 0 0 14px var(--teal); }

header .navbar ul { list-style: none; display: flex; gap: 0.25rem; }
header .navbar ul li { position: relative; }

header .navbar ul li a {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

header .navbar ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--transition), left var(--transition);
  border-radius: 2px;
}

header .navbar ul li a:hover { color: var(--gold-light); }
header .navbar ul li a:hover::after { width: 70%; left: 15%; }

header .navbar ul li ul.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(22, 33, 62, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 164, 65, 0.25);
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-strong);
}

header .navbar ul li:hover ul.dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Botón hamburguesa (100% CSS) */
#toggle { display: none; }

header label {
  display: none;
  position: relative;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--transition);
}

header label::before,
header label::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold);
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

header label::before { top: -9px; }
header label::after { top: 9px; }

header .navbar ul li .dropdown-toggle { display: none; }

#toggle:checked + label { background: transparent; }
#toggle:checked + label::before { top: 0; transform: rotate(45deg); }
#toggle:checked + label::after { top: 0; transform: rotate(-45deg); }

.jph { width: 38px; height: auto; margin-right: 10px; }

/* ----- FOOTER (igual en las 4 páginas) ----- */
.footer {
  position: relative;
  background: linear-gradient(160deg, var(--gold-dark), var(--gold) 60%, var(--gold-light));
  color: var(--navy);
  padding: 4.5rem 8% 2rem;
  margin-top: 3rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer .box h3 { margin-bottom: 1rem; font-size: 1.1rem; color: var(--navy); }

.footer .box a {
  display: block;
  margin: 0.4rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition), padding-left var(--transition);
}

.footer .box a:hover { color: var(--white); padding-left: 4px; }

.socials { display: flex; gap: 1rem; font-size: 1.6rem; }
.socials a { color: var(--navy); transition: transform var(--transition), color var(--transition); }
.socials a:hover { color: var(--white); transform: scale(1.25) rotate(-6deg); }

.footer .creditos {
  text-align: center;
  border-top: 1px solid rgba(22,33,62,0.25);
  padding-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(22,33,62,0.85);
}

.footer .creditos span { display: block; font-weight: 700; margin-top: 0.3rem; }

/* ----- MENÚ MÓVIL (base, igual en las 4 páginas) ----- */
@media (max-width: 950px) {
  header label { display: block; }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(22, 33, 62, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    max-height: 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
    transition: max-height 0.45s ease;
  }

  .navbar ul { flex-direction: column; padding: 0.5rem 6%; }
  header .navbar ul li a::after { display: none; }

  header .navbar ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
  }

  header .navbar ul li > a { flex: 1; }

  header .navbar ul li .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
  }

  header .navbar ul li .dropdown-toggle i { transition: transform var(--transition); }
  header .navbar ul li.abierta .dropdown-toggle i { transform: rotate(180deg); }

  header .navbar ul li ul.dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    transition: max-height 0.35s ease;
  }

  header .navbar ul li.abierta > ul.dropdown { max-height: 400px; }
  #toggle:checked ~ .navbar { max-height: 80vh; overflow-y: auto; }
}

/* ----- Vista previa de imagen en el submenú Galería ----- */
header .navbar ul li .dropdown li {
  position: relative;
  padding: 4px;
  transition: background 0.3s ease;
}

header .navbar ul li .dropdown li:hover { background: rgba(217, 164, 65, 0.12); }
header .navbar ul li .dropdown li a::after { display: none; }

header .navbar ul li .dropdown li .preview {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  text-align: center;
  margin-top: 5px;
}

header .navbar ul li .dropdown li:hover .preview { max-height: 300px; opacity: 1; }

header .navbar ul li .dropdown li .preview img {
  width: 200px;
  max-width: 90vw;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  margin: 0 auto 10px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

header .navbar ul li .dropdown li:hover .preview img { transform: scale(1.05); }

/* ============================================================
   CONTENIDO PROPIO DE LA PÁGINA DE INICIO
   ============================================================ */

/* ----- HOME (video + letras) ----- */
.home {
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22,33,62,0.88) 10%, rgba(22,33,62,0.45) 60%, rgba(22,33,62,0.75) 100%),
    url('../img/inicio/fondo6.png') no-repeat center center;
  background-size: cover;
  z-index: -2;
}

.home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px circle at 15% 25%, rgba(108,92,231,0.35), transparent 60%),
    radial-gradient(480px circle at 85% 75%, rgba(217,164,65,0.30), transparent 60%),
    radial-gradient(360px circle at 75% 20%, rgba(34,201,201,0.25), transparent 60%);
  filter: blur(10px);
  z-index: -1;
}

.bienvenida {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
}

.home .intro {
  flex: 1;
  color: white;
  text-align: center;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .intro h1 { font-size: clamp(2rem, 6vw, 5rem); line-height: 1.15; font-weight: 700; }

.home .intro h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 1.2rem;
  color: var(--gold-light);
}

.background {
  max-width: 900px;
  width: 100%;
  border-radius: 28px;
  margin-left: 2rem;
  border: 1px solid rgba(217, 164, 65, 0.4);
  box-shadow: var(--shadow-strong), 0 0 60px rgba(108,92,231,0.15);
}

@media (prefers-reduced-motion: no-preference) {
  .home .intro h1 { animation: heroRise 0.9s ease both; animation-delay: 0.1s; }
  .home .intro h2 { animation: heroRise 0.9s ease both; animation-delay: 0.35s; }
  .background {
    animation: heroRise 1s ease both, videoFloat 6s ease-in-out infinite 1.2s;
    animation-delay: 0.5s;
  }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes videoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ----- SERVICES ----- */
.services {
  margin: 6rem auto;
  max-width: 1200px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.service.reverse { flex-direction: row-reverse; }
.service .text { flex: 1; min-width: 280px; }

.service .text h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service .text h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.service .text p { color: var(--muted); line-height: 1.7; font-size: 1.02rem; }

.service .text ul.lista-apoyo {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service .text ul.lista-apoyo li {
  color: var(--ink);
  font-weight: 600;
  background: var(--white);
  border: 1px solid rgba(22,33,62,0.08);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: var(--shadow-soft);
}

.service img {
  flex: 1;
  max-width: 500px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service img:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-3deg) scale(1.03);
  box-shadow: var(--shadow-strong);
}

/* ----- NUESTRO IMPACTO ----- */
.impacto { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: white; padding: 5rem 8%; }
.impacto-intro { max-width: 620px; margin: 0 auto 2.8rem; text-align: center; }
.impacto-intro h2 { color: white; }
.impacto-intro p { color: rgba(255,255,255,0.75); margin-top: 0.6rem; line-height: 1.6; }

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.dato .numero {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  background: linear-gradient(90deg, var(--gold-light), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dato .mas { font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--gold-light); }
.dato p { margin-top: 0.4rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* ----- CÓMO PUEDES AYUDAR ----- */
.ayudar { max-width: 1200px; margin: 0 auto; padding: 5.5rem 1.5rem; text-align: center; }
.ayudar h2 { color: var(--navy); }
.ayudar-intro { color: var(--muted); max-width: 560px; margin: 0.8rem auto 2.8rem; line-height: 1.6; }
.ayudar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }

.ayudar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(22,33,62,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.ayudar-card i {
  font-size: 1.7rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ayudar-card:nth-child(1) i { color: var(--violet); background: rgba(108,92,231,0.12); }
.ayudar-card:nth-child(2) i { color: var(--coral); background: rgba(255,111,89,0.12); }
.ayudar-card:nth-child(3) i { color: var(--mint); background: rgba(46,204,135,0.12); }
.ayudar-card:nth-child(4) i { color: var(--teal); background: rgba(34,201,201,0.12); }

.ayudar-card h3 { font-size: 1.05rem; color: var(--navy); }
.ayudar-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.ayudar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }

/* ----- ÚLTIMAS ACTUALIZACIONES ----- */
.noticias { background: rgba(22, 33, 62, 0.035); padding: 5.5rem 8%; text-align: center; }
.noticias h2 { color: var(--navy); }
.noticias-intro { color: var(--muted); max-width: 560px; margin: 0.8rem auto 2.8rem; }

.noticias-grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
  padding-left: 1.6rem;
  border-left: 3px solid rgba(217, 164, 65, 0.4);
}

.noticia { position: relative; background: var(--white); border-radius: 16px; padding: 1.3rem 1.6rem; box-shadow: var(--shadow-soft); }

.noticia::before {
  content: "";
  position: absolute;
  left: -2.05rem;
  top: 1.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.25);
}

.noticia-fecha { display: block; font-weight: 700; color: var(--gold-dark); font-size: 0.82rem; }
.noticia h3 { margin: 0.3rem 0 0.4rem; color: var(--navy); font-size: 1.05rem; }
.noticia p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* ----- CTA FINAL ----- */
.cta-final { background: linear-gradient(120deg, var(--navy), var(--violet)); color: white; text-align: center; padding: 5.5rem 8%; }
.cta-final h2 { color: white; max-width: 700px; margin: 0 auto; font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
.cta-final p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 1rem auto 2.2rem; line-height: 1.6; }

.cta-botones { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.boton {
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.boton-primario { background: var(--gold); color: var(--navy); box-shadow: 0 10px 25px rgba(217, 164, 65, 0.35); }
.boton-primario:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(217, 164, 65, 0.5); }
.boton-secundario { border: 2px solid rgba(255,255,255,0.6); color: white; }
.boton-secundario:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }

/* ----- Ajustes móviles propios de Inicio ----- */
@media (max-width: 950px) {
  .bienvenida { flex-direction: column; text-align: center; }
  .background { max-width: 100%; border-radius: 20px; margin: 1.5rem 0 0; }
  .home .intro { text-align: center; padding-right: 0; }
  .service, .service.reverse { flex-direction: column; text-align: center; }
  .service .text h1::after { margin-left: auto; margin-right: auto; }
}

@media (max-width: 700px) {
  .impacto-grid { grid-template-columns: repeat(2, 1fr); }
  .noticias-grid { padding-left: 1.2rem; }
  .noticia::before { left: -1.65rem; }
}

/* Accesibilidad: foco visible para navegación por teclado */
a:focus-visible,
label:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   INICIO — MENSAJE DE BIENVENIDA TEMPORAL
   Solo para el primer mes del sitio en línea.

   >>> PARA QUITARLO <<<
   Borrá completo este bloque de estilos, desde aquí hasta el
   comentario que dice "FIN — MENSAJE DE BIENVENIDA TEMPORAL"
   al final del archivo. No afecta a ninguna otra parte del CSS.
   ============================================================ */

.bienvenida-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(22, 33, 62, 0.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bienvenida-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.bienvenida-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: var(--shadow-strong), 0 0 80px rgba(108, 92, 231, 0.25);
  transform: scale(0.92) translateY(18px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.45s ease;
}

.bienvenida-overlay.visible .bienvenida-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.bienvenida-cerrar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 33, 62, 0.55);
  color: white;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--transition), transform var(--transition);
}

.bienvenida-cerrar:hover {
  background: var(--coral);
  transform: rotate(90deg);
}

.bienvenida-imagen {
  position: relative;
  flex: 1;
  min-width: 260px;
  display: none;
}

.bienvenida-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bienvenida-chip {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(22, 33, 62, 0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.bienvenida-texto {
  flex: 1.15;
  min-width: 280px;
  padding: 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bienvenida-emoji {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

@media (prefers-reduced-motion: no-preference) {
  .bienvenida-emoji {
    display: inline-block;
    animation: bienvenidaBalanceo 2.4s ease-in-out infinite;
  }
}

@keyframes bienvenidaBalanceo {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

.bienvenida-texto h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.bienvenida-texto p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.bienvenida-nota {
  margin-top: 0.7rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.bienvenida-boton {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  background: linear-gradient(90deg, var(--violet), var(--coral));
  color: white;
  border: none;
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bienvenida-boton:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(108, 92, 231, 0.45);
}

.bienvenida-boton i {
  transition: transform var(--transition);
}

.bienvenida-boton:hover i {
  transform: translateX(4px);
}

@media (min-width: 700px) {
  .bienvenida-imagen { display: block; }
}

@media (max-width: 699px) {
  .bienvenida-modal { max-height: 85vh; overflow-y: auto; }
  .bienvenida-texto { padding: 2.4rem 1.6rem; }
}

/* ============================================================
   FIN — MENSAJE DE BIENVENIDA TEMPORAL
   ============================================================ */