:root {
  --primary-color: #ff6b9e;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --rosa-pastel: #ffd6e0;
  --lila-pastel: #e2d1f9;
  --azul-pastel: #d6f3ff;
  --amarillo-pastel: #fff9d6;
  --rosa-fuerte: #ff8fab;
  --azul-oscuro: #0008ff;
  --texto-oscuro: #5a4a42;
  --secondary-color: #888;
  --background-light: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
}

/* Mensaje de Año Nuevo */
.new-year-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ff1744 0%, #ff6b9e 25%, #ffd700 50%, #ff6b9e 75%, #ff1744 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite, pulse 2s ease-in-out infinite;
  border-radius: 50px;
  padding: 1rem 2rem;
  display: inline-block;
  box-shadow:
    0 8px 25px rgba(255, 23, 68, 0.4),
    0 0 40px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(255, 215, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.6);
}

.highlight-year {
  font-size: 1.4em;
  font-weight: 800;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    0 0 10px #ffd700,
    0 0 20px #ffd700,
    0 0 30px #ff1744,
    2px 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
  animation: glow-year 1.5s ease-in-out infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes glow-year {

  0%,
  100% {
    text-shadow:
      0 0 10px #ffd700,
      0 0 20px #ffd700,
      0 0 30px #ff1744,
      2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: scale(1);
  }

  50% {
    text-shadow:
      0 0 20px #ffd700,
      0 0 30px #ffd700,
      0 0 40px #ff1744,
      0 0 50px #ff1744,
      2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
  }
}

/* Responsive para mensaje de Año Nuevo */
@media (max-width: 768px) {
  .new-year-text {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .highlight-year {
    font-size: 1.3em;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .new-year-text {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .highlight-year {
    font-size: 1.2em;
  }
}

/* Loading screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--rosa-pastel);
  border-top: 5px solid var(--rosa-fuerte);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* === Animaciones === */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-50px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* === Animaciones Flechas Mejoradas === */
@keyframes moveUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes moveDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes moveLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-8px);
  }
}

@keyframes moveRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Clases para aplicar las animaciones */
.animate-move-up {
  animation: moveUp 1.5s infinite ease-in-out;
}

.animate-move-down {
  animation: moveDown 1.5s infinite ease-in-out;
}

.animate-move-left {
  animation: moveLeft 1.5s infinite ease-in-out;
}

.animate-move-right {
  animation: moveRight 1.5s infinite ease-in-out;
}

/* Efecto hover para mayor interactividad */
[class^="fa-arrow"],
[class*=" fa-arrow"] {
  transition: all 0.3s ease;
  display: inline-block;
  /* Necesario para transform */
}

[class^="fa-arrow"]:hover,
[class*=" fa-arrow"]:hover {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* === Estilos básicos === */
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto-oscuro);
  background-color: #fff9fb;
  overflow-x: hidden;
}

.hr-primary {
  border-color: var(--rosa-fuerte);
  border-width: 3px;
  opacity: 1;
}

/* === Navbar === */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--rosa-fuerte);
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: all 0.3s ease, filter 0.5s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-brand img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  opacity: 0.9;
}

/* Estilos para el navbar que se esconde */
.navbar {
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  /* Mejora el rendimiento de la animación */
}

.navbar-hidden {
  box-shadow: none !important;
}

/* Asegurar que el navbar esté siempre encima de otros elementos */
.navbar {
  z-index: 1030;
  /* Valor alto para estar por encima de casi todo */
}

/* Pequeño ajuste para el contenido cuando el navbar se esconde */
@media (min-width: 992px) {
  body {
    padding-top: 0;
    /* Ajusta según la altura de tu navbar */
  }
}

/* Efecto suave al hacer hover en el navbar (opcional) */
.navbar:hover {
  transform: translateY(0) !important;
  transition: transform 0.2s ease-in-out;
}

/* === Hero Section === */
.hero-section {
  background: linear-gradient(135deg, var(--rosa-pastel), var(--lila-pastel));
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

/* Contenedor de botones en Hero */
.hero-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

/* Estilos responsive para el eslogan */
.hero-slogan {
  --font-size: 1.4rem;
  /* Móvil */
  --padding: 0.6rem 1.2rem;
  --border-width: 1px;

  font-size: var(--font-size);
  font-weight: 700;
  color: var(--rosa-fuerte);
  position: relative;
  display: inline-block;
  margin: 0.5rem 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--padding);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  border: var(--border-width) solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: floatUp 3s infinite ease-in-out;
  line-height: 1.3;
  text-align: center;
}

/* Desktop (md breakpoint) */
@media (min-width: 768px) {
  .hero-slogan {
    --font-size: 1.8rem;
    --padding: 0.8rem 1.8rem;
    --border-width: 2px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    backdrop-filter: blur(6px);
  }
}

/* Línea decorativa inferior */
.hero-slogan::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rosa-fuerte), transparent);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .hero-slogan::after {
    bottom: -0.5rem;
    height: 3px;
  }
}

/* Efecto hover solo para desktop */
@media (hover: hover) {
  .hero-slogan:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
}

/* === Efecto esmalte de uñas === */
.nail-polish {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(10px);
  animation: float 15s infinite linear;
}

.polish-1 {
  background: var(--rosa-pastel);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.polish-2 {
  background: var(--lila-pastel);
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}

.polish-3 {
  background: var(--amarillo-pastel);
  top: 30%;
  left: 60%;
  animation-delay: 6s;
}

/* === Tarjetas === */
.service-card,
.promo-card,
.testimonial-card,
.contact-card,
.reservation-card,
.care-card,
.comparison-table {
  background-color: white;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.service-card:hover,
.promo-card:hover,
.contact-card:hover,
.reservation-card:hover,
.care-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card.rosa {
  border-left: 5px solid var(--rosa-fuerte);
}

.testimonial-card.azul {
  border-left: 5px solid var(--azul-oscuro);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--rosa-fuerte);
  margin-bottom: 1rem;
}

/* === PROMOCIONES === */
.promo-card {
  position: relative;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(216, 42, 144, 0.2);
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-container {
  background: rgba(216, 42, 144, 0.05);
  padding: 15px;
  border-radius: 10px;
  margin: 1rem 0;
  text-align: center;
}

.original-price {
  color: #888;
  font-size: 1.1rem;
  text-decoration: line-through;
  margin-bottom: 0;
  display: block;
}

.promo-price {
  color: var(--rosa-fuerte);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0.5rem 0;
  display: block;
}

.savings {
  color: #2a9d8f;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(42, 157, 143, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.5rem;
}

.promo-footer {
  margin-top: auto;
  width: 100%;
}

.countdown {
  background-color: rgba(216, 42, 144, 0.1);
  color: var(--rosa-fuerte);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.countdown.ended {
  background-color: rgba(230, 57, 70, 0.1);
  color: #e63946;
  animation: pulse-red 1.5s infinite;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rosa-fuerte), #ff8fab);
  color: white !important;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 107, 158, 0.3);
  margin-top: 10px;
}

.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(216, 42, 144, 0.4);
  background: linear-gradient(135deg, #ff4d88, #ff6b9e);
  color: white !important;
}

.btn-promo i {
  margin-right: 8px;
  font-size: 1.1em;
}

.btn-promo.disabled {
  background: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none !important;
}

@keyframes pulse-red {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Estilo para el estado "Próximamente" */
.promo-card.soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}

.promo-card.soon h4 {
  color: var(--rosa-fuerte);
  font-weight: 700;
  margin-top: 15px;
}

.promo-card.soon .service-icon {
  color: var(--rosa-fuerte);
  font-size: 2.5rem;
}

/* === Botones Ver Más / Ver Menos === */
.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rosa-fuerte), var(--lila-pastel));
  color: white;
  border: 2px solid var(--rosa-fuerte);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 158, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-ver-mas:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 158, 0.5);
  background: linear-gradient(135deg, var(--lila-pastel), var(--rosa-fuerte));
}

.btn-ver-mas i {
  transition: transform 0.3s ease;
}

.btn-ver-mas.expanded i {
  transform: rotate(180deg);
}

/* Clases para ocultar/mostrar contenido */
.servicio-extra,
.galeria-extra {
  display: none !important;
}

.cuidado-extra,
.antes-despues-extra,
.tabla-extra {
  display: none !important;
}

.servicio-extra.show,
.galeria-extra.show {
  display: block !important;
  animation: fadeIn 0.5s ease-in;
}

.cuidado-extra.show,
.antes-despues-extra.show {
  display: block !important;
  animation: fadeIn 0.5s ease-in;
}

/* === Galería moderna === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 251, 0.98));
  box-shadow: 0 12px 30px rgba(255, 143, 171, 0.12);
  cursor: zoom-in;
  aspect-ratio: 5 / 4;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "⛶";
  /* icono universal expandir */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.gallery-item.touch-active::after,
.gallery-item.touch-active::before {
  opacity: 1;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(255, 143, 171, 0.2);
  filter: saturate(1.03);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
}

.gallery-item__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item__badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--texto-oscuro);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.gallery-item__badge i {
  color: var(--rosa-fuerte);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(255, 143, 171, 0.55);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 22, 0.78);
  backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
  position: relative;
  width: min(100%, 1100px);
  max-height: calc(100vh - 2rem);
  z-index: 1;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.gallery-lightbox.is-open .gallery-lightbox__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 0;
}

.gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(255, 143, 171, 0.12);
}

.gallery-lightbox__caption {
  padding: 0.9rem 0.75rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-oscuro);
}

.gallery-lightbox__title {
  margin: 0;
}

.gallery-lightbox__counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 143, 171, 0.12);
  color: var(--rosa-fuerte);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: rgba(52, 58, 64, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  background: var(--rosa-fuerte);
  box-shadow: 0 14px 30px rgba(255, 107, 158, 0.28);
}

.gallery-lightbox__close {
  top: 1rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 2;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.gallery-lightbox__close i,
.gallery-lightbox__nav i {
  font-size: 1.05rem;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .gallery-lightbox {
    padding: 0.6rem;
  }

  .gallery-lightbox__dialog {
    width: 100%;
    max-height: calc(100vh - 1.2rem);
    border-radius: 22px;
  }

  .gallery-lightbox__media {
    padding: 0.75rem 0.75rem 0;
  }

  .gallery-lightbox__image {
    max-height: calc(100vh - 9rem);
  }

  .gallery-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__nav--prev {
    left: 0.75rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.75rem;
  }
}

/* Estilo específico para filas de tabla en pantallas grandes */
.tabla-extra.show {
  display: table-row !important;
  animation: fadeIn 0.5s ease-in;
}

/* Estilo específico para filas de tabla en móviles */
@media (max-width: 768px) {
  .tabla-extra.show {
    display: block !important;
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Botones === */
.btn-agenda {
  background-color: var(--rosa-fuerte);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-whatsapp i {
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Versión optimizada para la sección de contacto */
.btn-whatsapp-contact {
  width: 100%;
  /* Ocupa todo el ancho disponible */
  justify-content: center;
  /* Centra el texto */
  padding: 12px 20px;
  /* Un poco más de padding */
  font-size: 0.95rem;
  /* Tamaño de texto consistente */
  border: 2px solid transparent;
  /* Borde para hover */
  animation: pulse-whatsapp 2s infinite;
  /* Animación sutil */
}

.btn-whatsapp-contact:hover {
  border-color: white;
  /* Efecto moderno al hover */
  animation: none;
  /* Detiene la animación al hover */
}

.btn-whatsapp {
  text-decoration: none !important;
  /* Esto elimina el subrayado */
}

.btn-instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-instagram:hover {
  color: white;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(193, 53, 132, 0.4);
}

.btn-rosa-fuerte {
  background: var(--rosa-fuerte);
  color: white;
  border: none;
}

.btn-rosa-fuerte:hover {
  background: #e55a8d;
  color: white;
}

.btn-reservation {
  background: linear-gradient(to right, #25D366, #128C7E);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-reservation:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-reservation.btn-error {
  background: #dc3545 !important;
  animation: shake 0.5s;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-reservation.btn-error:hover {
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn.btn-success {
  background-color: #28a745 !important;
}

.btn.btn-error {
  background-color: #dc3545 !important;
}

/* === Agenda Flotante  === */
.agenda-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: var(--rosa-fuerte);
  color: white;
  border-radius: 50%;
  text-align: center;
  text-decoration: none !important;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(255, 107, 158, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

.agenda-float:hover {
  background-color: #ff4d88;
  transform: scale(1.1);
}

.agenda-text {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: white;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.agenda-float:hover+.agenda-text {
  opacity: 1;
}

/* === Antes & Después === */
.before-after-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.before-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.before-after-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 3;
  touch-action: none;
  transition: left 0.3s ease, transform 0.2s ease;
}

.before-after-handle i {
  color: var(--rosa-fuerte);
  font-size: 1rem;
}

.dragging .before-after-handle {
  transform: translate(-50%, -50%) scale(1.1);
}

/* === Sección de citas === */
.appointment-section {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255, 214, 224, 0.45), transparent 42%),
    linear-gradient(180deg, #fffefc 0%, #fff7fb 100%);
  border-radius: 30px;
}

.reservation-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 251, 0.96)),
    linear-gradient(135deg, rgba(255, 143, 171, 0.08), rgba(226, 209, 249, 0.08));
  border: 1px solid rgba(255, 143, 171, 0.16);
}

.reservation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 143, 171, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
  pointer-events: none;
}

.reservation-card>* {
  position: relative;
  z-index: 1;
}

.form-floating {
  position: relative;
}

.form-control,
.form-select {
  border-radius: 18px;
  border: 1px solid rgba(255, 143, 171, 0.18);
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(255, 143, 171, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--rosa-fuerte);
  box-shadow:
    0 0 0 0.25rem rgba(255, 143, 171, 0.18),
    0 12px 24px rgba(255, 143, 171, 0.15);
  transform: translateY(-1px);
}

.form-floating label {
  color: #8a7181;
  padding-left: 2.65rem;
  font-weight: 600;
}

.form-floating .form-control,
.form-floating .form-select {
  padding-left: 2.65rem;
  height: calc(3.5rem + 2px);
  border-radius: 18px;
}

.form-floating .form-select,
.servicio-select,
.hora-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.25rem;
  background-repeat: no-repeat;
  background-position:
    0 0,
    right 1rem center;
  background-size:
    auto,
    0.9rem;
}

.form-floating .form-select::-ms-expand,
.servicio-select::-ms-expand,
.hora-select::-ms-expand {
  display: none;
}

.form-floating i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rosa-fuerte);
}

.form-floating .flatpickr-input,
.form-floating .form-select,
.form-floating .hora-select {
  background-image:
    linear-gradient(135deg, rgba(255, 214, 224, 0.2), rgba(226, 209, 249, 0.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23ff8fab' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 251, 0.95));
}

.form-floating .flatpickr-input::placeholder,
.form-floating .form-select:invalid,
.servicio-select.is-placeholder,
.hora-select.is-placeholder {
  color: #9f8e9b;
}

.servicio-select {
  color: var(--texto-oscuro);
  font-weight: 600;
}

.hora-select {
  color: var(--texto-oscuro);
  font-weight: 600;
}

.servicio-select option,
.servicio-select optgroup,
.hora-select option,
.hora-select optgroup {
  color: var(--texto-oscuro);
}

.servicio-select option {
  background-color: #fff;
  font-weight: 600;
}

.hora-select option {
  background-color: #fff;
  font-weight: 600;
}

.servicio-select option:disabled {
  color: #c8b9c2;
}

.hora-select option:disabled {
  color: #c8b9c2;
}

.flatpickr-calendar {
  border-radius: 24px;
  border: 1px solid rgba(255, 143, 171, 0.18);
  box-shadow: 0 20px 40px rgba(255, 143, 171, 0.18);
  overflow: hidden;
  font-family: inherit;
}

.flatpickr-months {
  background: linear-gradient(135deg, #ff8fab, #f5d0fe);
  color: white;
  padding: 0.5rem 0;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: white;
  font-weight: 700;
}

.flatpickr-weekday {
  color: var(--rosa-fuerte);
  font-weight: 700;
}

.flatpickr-day {
  border-radius: 999px;
  transition: all 0.2s ease;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 143, 171, 0.12);
  border-color: rgba(255, 143, 171, 0.2);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: linear-gradient(135deg, var(--rosa-fuerte), var(--lila-pastel));
  border-color: transparent;
  color: white;
}

.flatpickr-day.today {
  border-color: var(--rosa-fuerte);
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #d5c8cf;
  background: transparent;
}

.flatpickr-time {
  border-top: 1px solid rgba(255, 143, 171, 0.12);
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
  font-weight: 700;
}

/* === Footer === */
footer {
  background-color: white;
  color: var(--texto-oscuro);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  color: var(--rosa-fuerte);
  font-size: 1.5rem;
}

.social-icon:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px) scale(1.2);
}

/* === Tarjeta de contacto === */
.contact-item {
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background-color: rgba(255, 107, 158, 0.1);
}

/* === Schedule ===*/
.schedule-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: center;
}

.schedule-day {
  font-weight: 600;
  color: var(--texto-oscuro);
}

.schedule-time {
  color: #555;
}

.schedule-day.closed,
.schedule-time.closed {
  color: #999;
  text-decoration: line-through;
}

/* === Tarjeta de Reserva === */
.reservation-icon {
  background: linear-gradient(135deg, var(--rosa-fuerte), var(--lila-pastel));
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.total-container {
  background-color: rgba(255, 107, 158, 0.1);
  border: 1px solid var(--rosa-fuerte);
  transition: all 0.3s ease;
}

.total-container h5 {
  color: var(--rosa-fuerte);
}

.total-container.changed {
  animation: pulse 0.5s ease;
}

/* === Tarjeta de atención === */
.care-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--rosa-fuerte);
}

.care-card:hover .care-icon {
  transform: rotate(15deg) scale(1.1);
}

.care-icon {
  font-size: 1.5rem;
  color: white;
  width: 50px;
  height: 50px;
  background: var(--rosa-fuerte);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.care-card h3 {
  color: var(--rosa-fuerte);
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.3rem;
}

.care-subtitle {
  color: #777;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 15px;
  font-style: italic;
}

.care-tips {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.care-tips li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.care-tips li:before {
  content: "•";
  color: var(--rosa-fuerte);
  position: absolute;
  left: 10px;
  font-weight: bold;
}

.care-tips strong {
  color: var(--rosa-fuerte);
}

.care-special {
  border-top: 3px solid var(--azul-oscuro);
}

.care-special .care-icon {
  background: var(--azul-oscuro);
}

.care-special h3 {
  color: var(--azul-oscuro);
}

/* === Tabla comparativa === */
.problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 158, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-fuerte);
}

.table-hover tbody tr:hover {
  background: rgba(255, 107, 158, 0.03);
}

.professional-solution {
  background: rgba(220, 53, 69, 0.05);
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid var(--danger);
}

.bg-rosa-pastel {
  background-color: var(--rosa-pastel) !important;
}

.responsive-comparison-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.comparison-table th {
  background-color: #f8f9fa;
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table td {
  padding: 12px 15px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.problem-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.problem-title i {
  color: #6c757d;
  font-size: 1.1em;
}

.home-solution {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.home-solution li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.home-solution i {
  color: #28a745;
  margin-top: 3px;
}

.professional-solution p {
  margin: 0 0 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.professional-solution i {
  color: #dc3545;
}

.recommendation {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.9em;
}

.recommendation span:first-child {
  font-weight: 600;
  margin-right: 5px;
}

/* === Carrusel de testimonios === */
#testimoniosCarousel {
  padding: 0 40px;
  position: relative;
}

.carousel-inner {
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  border-left: 5px solid;
  opacity: 1 !important;
  transform: none !important;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -10px;
}

.carousel-control-next {
  right: -10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 60%;
  background-color: var(--dark-color);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: var(--rosa-fuerte);
}

.carousel-indicators {
  position: static;
  margin: 20px 0 0 0;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background-color: var(--dark-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: var(--rosa-fuerte);
  transform: scale(1.2);
}

/* === Alerta personalizada === */
.custom-alert-pastel {
  background-color: rgba(255, 182, 193, 0.2);
  border: 1px solid rgba(255, 143, 171, 0.3);
  border-radius: 12px;
  color: #5a4a42;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.custom-alert-pastel:hover {
  background-color: rgba(255, 182, 193, 0.3);
  box-shadow: 0 4px 12px rgba(255, 143, 171, 0.15);
}

.custom-alert-pastel i.fa-arrow-up {
  animation: floatUp 2s infinite ease-in-out;
}

.custom-alert-pastel i.fa-arrow-left {
  animation: floatLeft 2s infinite ease-in-out;
}

/* === Mejoras de accesibilidad === */
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 143, 171, 0.5);
}

a:focus {
  outline: 3px solid var(--rosa-fuerte);
  outline-offset: 2px;
}

/* === Estilos móviles ===*/
@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  }

  #testimoniosCarousel {
    padding: 0 20px;
  }

  .carousel-control-prev {
    left: -5px;
  }

  .carousel-control-next {
    right: -5px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .reservation-card {
    margin-top: 1.5rem;
    padding: 2rem;
  }

  .form-floating label,
  .form-floating .form-control,
  .form-floating .form-select {
    padding-left: 2.2rem;
  }

  .comparison-table {
    display: block;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
  }

  .comparison-table td {
    padding: 12px 15px;
    border-top: none;
    border-bottom: 1px solid #dee2e6;
  }

  .comparison-table td:last-child {
    border-bottom: none;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
  }

  .problem-title {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }

  .problem-title i {
    font-size: 1.5em;
  }
}

@media (min-width: 768px) {
  .flecha-abajo {
    display: none;
  }

  .flecha-derecha {
    display: inline;
  }
}

/* === Sección de ubicación === */
.location-card {
  background-color: white;
  border: 2px solid var(--rosa-fuerte);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-icon {
  display: inline-block;
  padding: 20px;
  background-color: rgba(255, 105, 158, 0.1);
  border-radius: 50%;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border: 3px solid var(--rosa-fuerte);
  max-width: 500px;
  margin: 0 auto;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(255, 105, 158, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s;
}

/* === Optimizaciones de rendimiento === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* === Mejoras visuales para móviles === */
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 100px;
  }

  .service-card,
  .promo-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .agenda-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

.cta-galeria {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.cta-galeria:hover {
  transform: translateY(-2px);
  background: #000;
}

.cta-galeria i {
  font-size: 14px;
}

.cta-galeria {
  opacity: 0;
  pointer-events: none;
}

.idea-splash {
  position: fixed;
  bottom: 120px; /* 🔥 más arriba que botón flotante */
  right: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 214, 224, 0.96));
  color: var(--texto-oscuro);
  padding: 14px 18px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(255, 143, 171, 0.18);
  border: 1px solid rgba(255, 143, 171, 0.18);
  z-index: 9999;

  transform: translateX(130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.idea-splash button {
  background: linear-gradient(135deg, var(--rosa-fuerte), #ffb4c7);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 143, 171, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.idea-splash button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 143, 171, 0.34);
  filter: brightness(1.02);
}

.idea-splash.is-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.idea-splash.hide {
  transform: translateX(140%);
  opacity: 0;
  pointer-events: none;
}

.idea-splash span {
  font-weight: 700;
  color: var(--texto-oscuro);
}

/* 🔥 animación de cierre */
@media (max-width: 576px) {
  .idea-splash {
    left: 12px;
    right: 12px;
    bottom: 110px;
    justify-content: space-between;
    gap: 10px;
  }

  .idea-splash span {
    font-size: 0.92rem;
  }

  .idea-splash button {
    padding: 8px 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
}