/* ==================== PANTALLAS GRANDES ==================== */
/* Aquí todo queda como ya lo tienes por defecto (sin media query) */


/* ==================== TABLETAS ==================== */
@media (max-width: 992px) {
  h1 {
    font-size: 4rem;
  }

  .split-layout {
    flex-direction: column;
    align-items: center;
  }

  .carousel img,
  .slider img {
    max-width: 90%;
    height: auto;
  }

  .video-wrapper {
    max-width: 90%;
  }

  .resena {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* ==================== CELULARES HASTA 600px ==================== */
@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }

  .seccion-botones .btn,
  .btn,
  .btn-whatsapp,
  .volver-inicio a {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 1rem;
    padding: 12px 0;
  }

  #carousel-munecas img,
  .carousel img,
  .slider img,
  .video-wrapper video,
  .video-wrapper iframe {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
  }

  .carousel {
    flex-direction: column;
    align-items: center;
  }

  .video-wrapper {
    max-width: 100%;
    padding: 10px;
    border-radius: 12px;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    height: 350px;
  }
}

/* ==================== CELULARES ESPECIAL HASTA 480px ==================== */
@media (max-width: 480px) {
  .contacto {
    padding: 30px 10px;
  }

  .contacto h2 {
    font-size: 2rem;
  }

  .contacto p {
    font-size: 0.9rem;
  }

  .whatsapp a {
    font-size: 1rem;
  }

  .contacto button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
}
