:root {
  --rosa: #FFC0CB;
  --celeste: #7fc9cd;
  --marron: #EBD9C6;
  --negro-suave: #222;
  --fondo: #85a8d8;
  --blanco: #fff;
}
/* === RESET GENERAL === */
* {
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
/* === Modo oscuro === */
.dark-mode {
  --fondo: #3d5683;
  --negro-suave: #f1f1f1;
  --marron: #333;
  --rosa: #FF92AE;
  --celeste: #8ADFE0;
}
body {
  font-family: Candara;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--fondo);
  color: var(--negro-suave);
  margin: 0;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  padding-top: 60px;
}
header {
  background: var(--rosa);
  padding: 1.5rem;
}
h1, h2, h3, .titulo-seccion {
  font-family: Candara;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--rosa);
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.logo {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  animation: pulse 3s 2;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
section {
  padding: 1rem 0.5rem;
  margin-bottom: 0.8rem;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
ul {
  list-style: none;
  padding-left: 0;
}
li {
  margin-bottom: 0.6rem;
}
.seccion-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-direction: column;
}
.seccion-flex.reverse {
  flex-direction: row-reverse;
}
.seccion-flex .texto {
  flex: 1 1 300px;
  max-width: 500px;
}
.seccion-flex .foto {
  flex: 1 1 250px;
  max-width: 300px;
}
.seccion-flex .foto img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid var(--celeste);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
/* === Carrusel === */
.carrusel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.carrusel .galeria {
  display: flex;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
}
.carrusel .galeria img {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  height: auto;
  border-radius: 12px;
  border: 3px solid var(--celeste);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  background: white;
  transition: transform 0.3s;
}
.carrusel .galeria img:hover {
  transform: rotate(-1deg) scale(1.03);
}
.carrusel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--negro-suave);
  border: none;
  font-size: 1.8rem;
  padding: 0.6rem;
  cursor: pointer;
  color: var(--rosa);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  width: 45px;
  height: 45px;
}
.carrusel button:hover {
  transform: translateY(-50%) scale(1.1);
  background: black;
}
.carrusel .prev { left: 10px; }
.carrusel .next { right: 10px; }
/* === Botones === */
.btn-turno {
  background: var(--celeste);
  color: var(--negro-suave);
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin: 1rem auto 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.3s;
}
.btn-turno:hover {
  background: var(--rosa);
  transform: scale(1.05);
}
.btn-instagram {
  display: block;
  width: fit-content;
  margin: 2rem auto 2rem;
  padding: 0.8rem 1.5rem;
  background: var(--rosa);
  color: var(--negro-suave);
  font-weight: bold;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
}
.btn-instagram:hover {
  background: var(--celeste);
  transform: scale(1.05);
}
/* === Sección Turno con instrucciones === */
#turno .turno-lista {
  max-width: 500px;
  margin: 1rem auto 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--negro-suave);
  list-style: none;
  line-height: 1.4;
  padding: 0;
}
#turno .turno-lista li {
  position: relative;
  padding-left: 2em;
  color: var(--blanco);
  overflow-wrap: break-word;
  word-break: break-word;
}
/* === Turno para tus tintas (similar a Cuidados) === */
#turno {
  position: relative;
  width: 75%;
  margin: 2rem auto;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: var(--fondo);
}
#turno .contenido-turno {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

#turno .turno-texto {
  max-width: 600px;
  margin: 1rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--blanco);
  line-height: 1.5;
}
#turno .turno-lista li::before {
  content: "\f55f";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3ea265;
}
#turno .btn-instagram {
  display: block;
  width: fit-content;
  margin: 2rem auto;
}
.dark-mode #turno {
  background: linear-gradient(270deg, #1a1a1a, #2a2a2a, #1a1a1a);
  background-size: 600% 600%;
  animation: bgShift 20s ease infinite;
  color: var(--blanco);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.05);
}
.dark-mode #turno .turno-lista li::before {
  text-shadow: 0 0 2px #00ff88, 0 0 4px #00ff88;
}
@media (max-width: 600px) {
  #turno {
    width: 90%;
    border-radius: 16px;
  }
  #turno .contenido-turno {
    width: 100%;
    padding: 1rem;
  }
}
#turno .video-fondo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
  border-radius: 20px;
}
.tips-con-hoja {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tips-con-hoja li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}
.tips-con-hoja img {
  width: 24px;
  height: auto;
}
/* === Footer === */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background: var(--negro-suave); /* o el color que uses */
  color: var(--blanco); /* o similar */
}
footer a {
  color: var(--rosa);
  text-decoration: none;
  font-weight: bold;
  margin-left: 0.5rem;
}
footer a:hover {
  color: var(--celeste); /* o el color que prefieras */
}
footer a i {
  margin-right: 0.3rem;
}
/* === Navbar === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--rosa);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  z-index: 9999;
}
.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
  color: var(--negro-suave);
}
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  justify-content: center;   /* centra verticalmente */
  align-items: center;       /* centra horizontalmente */
  text-align: center;      /* 👈 Centra el texto */
  position: fixed;   
  top: 60px;       /* deja visible el header */
  left: 0;
  width: 100%;
  height: calc(100vh - 60px); /* ocupa todo menos el header */
  background: rgba(0, 0, 0, 0.9); /* fondo translúcido */
  z-index: 999;
  padding: 2rem 0;
  gap: 1rem;
  border-top: 2px solid var(--celeste);
  animation: fadeMenu 0.4s ease;
}
@media (min-width: 768px) {
  .dark-mode .nav-links li a {
    color: #222;
  }
  .dark-mode .nav-links li a:hover {
    color: var(--celeste);
  }
}
@keyframes fadeMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-links.show {
  display: flex;
}
.nav-links.show a {
  color: white; /* Texto claro */
  text-decoration: none;
  display: block;
  
}
.nav-links li {
  margin: 1rem 0;
  width: 100%;
}
.nav-links li a {
  color: var(--negro-suave);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: block;
  width: 100%;
  text-align: center; /* 👈 Asegura que el texto esté centrado */
}
.nav-links li a:hover {
  transform: scale(1.05);
  color: var(--celeste);
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    justify-content: center;
    background: none;
    border: none;
    gap: 0.4rem; /* 👈 esto define espacio entre enlaces */
  }
  .nav-links li {
    padding: 0;
    margin: 0; /* quitar márgenes innecesarios */
    width: auto;
  }
  .nav-links li a {
    font-size: 1.4rem; /* opcional: más pequeño */
    padding: 0.4rem 0.8rem; /* más compacto */
    width: auto;
    display: inline-block;
  }
}
/* === Botón Modo Oscuro === */
.toggle-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--negro-suave);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2000;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  transition: background 0.3s, color 0.3s;
}
.dark-mode .toggle-btn {
  background: white;
  color: var(--negro-suave);
}
/* === Responsive ajustes generales === */
@media (min-width: 768px) {
  .seccion-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 600px) {
  .carrusel .galeria img {
    width: 70vw;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
  }
  .carrusel button {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
  .logo {
    max-width: 200px;
  }
  section {
    padding: 0.5rem 0.5rem;
    margin-bottom: 0.3rem !important; /* antes estaba en 0.8rem */
  }
  .separador-personalizado {
    height: 20px;
    margin: 0.2rem auto 0.1rem;
  }
  .separador-personalizado img {
    height: 20px;
    width: 20px;
  }
  .seccion-flex {
    margin-bottom: 0.3rem !important; /* más compacto */
    gap: 0.6rem;
  }
    h1, h2, h3 {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.dark-mode .nav-links.show {
  background: #222;
}
.dark-mode .nav-links.show li a {
  color: var(--rosa);
}
.dark-mode .nav-links.show li a:hover {
  color: var(--celeste);
}
/* === Cuidados para tus tintas === */
#cuidados {
  position: relative;
  width: 75%;
  margin: 2rem auto; /* 👈 margen arriba y abajo */
  overflow: hidden;
  z-index: 1;
  border-radius: 20px; /* 👈 bordes redondeados */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* 👈 sombra suave */
}
#cuidados .video-fondo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
  border-radius: 20px; /* 👈 que el video también siga el borde redondeado */
}
#cuidados .contenido-cuidados {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}
#cuidados h2 {
  color: var(--rosa);
  text-align: center;
  margin-bottom: 1rem;
}
#cuidados ul {
  list-style: none;
  padding-left: 0;
}
#cuidados li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2em;
  color: var(--blanco);
  overflow-wrap: break-word; /* 👈 evita corte feo de palabras */
  word-break: break-word;    /* 👈 extra seguridad */
}
#cuidados li::before {
  content: "\f55f";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3ea265;
}
.dark-mode #cuidados {
  background: linear-gradient(270deg, #1a1a1a, #2a2a2a, #1a1a1a);
  background-size: 600% 600%;
  animation: bgShift 20s ease infinite;
  color: var(--blanco);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.05); /* 👈 sombra con glow sutil */
}
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.dark-mode #cuidados li::before {
  text-shadow: 0 0 2px #00ff88, 0 0 4px #00ff88;
}
@media (max-width: 600px) {
  #cuidados {
    width: 90%;
    border-radius: 16px;
  }
  #cuidados .contenido-cuidados {
    width: 100%;
    padding: 1rem;
  }
  #cuidados .imagen-cuidados {
    width: 150px;
    height: 150px;
  }
}
#cuidados .imagen-cuidados {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem auto;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: none;
  transition: transform 0.3s ease;
}
#cuidados .imagen-cuidados:hover {
  transform: scale(1.05);
}
.dark-mode #cuidados .imagen-cuidados {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 4px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(255, 255, 255, 0.08),
    0 0 12px rgba(255, 255, 255, 0.1);
}
/* === Separador personalizado con imagen y líneas === */
.separador-personalizado {
  align-items: center;
  display: flex;
  height: 20px;
  justify-content: center;
  margin: 0.2rem auto 0.1rem;
}
/* Líneas a los lados */
.separador-personalizado::before,
.separador-personalizado::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.separador-personalizado::before {
  margin-right: 1rem;
}
.separador-personalizado::after {
  margin-left: 1rem;
}
/* Modo oscuro */
.dark-mode .separador-personalizado::before,
.dark-mode .separador-personalizado::after {
  background-color: rgba(255, 255, 255, 0.2);
}
/* Imagen centrada (HTML) */
.separador-personalizado img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  vertical-align: middle;
}
/* Animación */
@keyframes aparecer {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 0.6;
  }
}
#quien-soy .foto img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem auto;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: none;
  transition: transform 0.3s ease;
}
#quien-soy .foto img:hover {
  transform: scale(1.05);
}
/* === Media Queries Responsive === */
@media (max-width: 768px) {
  .seccion-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .seccion-flex .texto,
  .seccion-flex .foto {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .seccion-flex .foto img {
    max-width: 90%;
    height: auto;
  }
  p, li, .btn-turno, .btn-instagram {
    font-size: 1rem;
    line-height: 1.4;
  }
  h1, h2, h3 {
    font-size: 1.4rem;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .logo {
    max-width: 180px;
  }
  section {
    padding: 0.5rem 0.5rem;
    margin-bottom: 0.3rem !important;
  }
  #turno,
  #cuidados {
    width: 90%;
    border-radius: 16px;
  }
  #turno .contenido-turno,
  #cuidados .contenido-cuidados {
    width: 100%;
    padding: 1rem;
  }
  #turno .turno-texto,
  #cuidados .contenido-cuidados p,
  #turno .turno-lista,
  #cuidados ul {
    font-size: 1rem;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.4;
  }
  .carrusel .galeria img {
    width: 80vw;
  }
  .carrusel button {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
}
.contenido-quien-soy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.botones-instagram {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .botones-instagram {
    flex-direction: row;
    gap: 1rem;
  }
}
.boton-latido {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--rosa);
  color: var(--negro-suave);
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  font-size: 1rem;
  animation: latido 1.5s infinite;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.boton-latido:hover {
  background-color: var(--celeste);
  transform: scale(1.05);
}
@keyframes latido {
  0% { transform: scale(1); }
  25% { transform: scale(1.08); }
  50% { transform: scale(0.96); }
  75% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
/* ===== Estilo móvil para la sección "¿Quién soy?" ===== */
@media (max-width: 768px) {
  /* Forzar columna y orden */
  #quien-soy .seccion-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  /* Foto primero solo si querés mantenerla */
  #quien-soy .foto {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Contenido (párrafo + videos + botones) */
  #quien-soy .contenido-quien-soy {
    order: 2;
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  #quien-soy .contenido-quien-soy p {
    order: 1;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
  }
}
/* === Videos sección ¿Quién Soy? === */
#quien-soy .videos-quien-soy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}
/* Contenedor del video o imagen previa */
.video-wrapper {
  position: relative;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
/* Imagen previa: se ve completa, sin recortes */
.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Muestra la imagen entera */
  display: block;
  border-radius: 12px;
  background-color: transparent;
  z-index: 1;
  position: relative;
  border: 3px solid var(--celeste);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

/* Efecto hover como en el carrusel */
.video-wrapper img:hover {
  transform: rotate(-1deg) scale(1.03);
}
/* Video oculto por defecto, con mismos estilos visuales */
.video-wrapper video.video-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 3px solid var(--celeste);
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
/* Video visible cuando se activa */
.video-wrapper video.video-real.mostrar {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  object-fit: cover; /* Si preferís que se vea completo como la imagen, podés cambiar a 'contain' */
}
/* Hover en video */
.video-wrapper video.video-real:hover {
  transform: rotate(-1deg) scale(1.03);
}
/* RESPONSIVE: Mobile */
@media (max-width: 768px) {
  #quien-soy .videos-quien-soy {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .video-wrapper {
    width: 85vw;
  }
}
/* Video de fondo (humo) */
.video-wrapper video.video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 12px;
  opacity: 0.8; /* Podés ajustar esto para que el humo sea más o menos visible */
}
.contenido-quien-soy .boton-latido {
  background: var(--rosa);
  color: var(--negro-suave);
  font-weight: bold;
  padding: 0.5rem 0.5rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: block;
  margin: 0.5rem auto 2rem; /* <-- este valor aumentó */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.3s;
}

.contenido-quien-soy .boton-latido:hover,
.contenido-quien-soy .boton-latido:focus {
  background-color: var(--celeste);
  transform: scale(1.05);
  outline: none;
}



@media (max-width: 768px) {
  /* que se ordene en columna */
  .seccion-flex {
    display: flex;
    flex-direction: column;
  }

  /* Ordenar hijos de seccion-flex */
  .foto {
    order: 2; /* queremos que la imagen esté segundo */
  }
  .contenido-quien-soy {
    display: flex;
    flex-direction: column;
    order: 3;
  }
  /* Dentro de contenido-quien-soy: separar el texto, videos y botones */
  .contenido-quien-soy > p {
    order: 1;
  }
  .contenido-quien-soy > .videos-quien-soy {
    order: 3;
  }
  .contenido-quien-soy > .botones-instagram {
    order: 4;
  }
  /* Primero, quitamos el botón de .foto en el flujo */
  .foto .boton-latido {
    order: 0; /* Lo sacamos para moverlo con position */
    position: relative;
    display: block;
    margin: 1rem 0;
  }
  /* Ahora movemos el botón canje justo después del texto dentro contenido-quien-soy */
  .contenido-quien-soy {
    position: relative;
  }
  .contenido-quien-soy .boton-latido {
    order: 2;
  }
}
@media (max-width: 600px) {
  .contenido-quien-soy .video {
    width: 85vw;
    max-width: 400px;
    display: block;
    margin: 1rem auto;
    border-radius: 10px;
  }

}
@media (max-width: 768px) {
  .separador-personalizado {
    margin: 2rem auto 1rem; /* Más separación arriba en mobile */
    height: auto;           /* Dejá que se ajuste al contenido */
    padding: 0.5rem 0;      /* Opcional: da más respiro al separador */
  }
}