

/* AJUSTES GENERALES */

:root {
    --rojo-shyy: #6d1514;
    --rosa-suave: #fef5f2;
    --rosa-medio: #f3d7e9;
    --lavanda: #89a0d3;
    --negro: #1a1a1a;
    --blanco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    font-family: 'Manrope', sans-serif;
}

/* HEADER */
.shyy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
}


.logo {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.menu a {
    margin-left: 30px;
    font-size: 15px;
    color: var(--negro);
    text-decoration: none;
}

.menu a:hover {
    color: var(--rojo-shyy);
}


/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--lavanda);
    transition: .3s ease;
    border-radius: 2px;
}

/*Shyy Banner*/
*{margin:0;padding:0;box-sizing:border-box;}
html, body{height:100%;}

.shyyb {
    width: 100vw;      /* ocupa todo el ancho de la pantalla */
    position: relative; /* para que la onda quede absoluta dentro */
    padding-top: 50px;
}

.shyyb img {
    width: 100vw;      /* ocupa todo el ancho de la pantalla */
    height: auto;      /* mantiene proporción */
    display: block;
}

.custom-shape-divider-bottom-1763783107 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;      /* ocupa todo el ancho de la pantalla */
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom-1763783107 svg {
    width: 100vw;      /* ocupa todo el ancho de la pantalla */
    height: 95px;      /* altura de la onda en PC */
}

.custom-shape-divider-bottom-1763783107 .shape-fill {
    fill: #fef5f2;
}

html, body {
  background-color: #fef5f2;
  margin: 0;
  padding: 0;
}

#spotify {
  background: #fef5f2; /* mismo color que tu reproductor */
  display: flex;
  justify-content: center;
  margin-top: 30px; /* sube 50px */
  padding: 20px 0 100px;   /* mantiene espacio interno */
}

#spotify iframe {
  display: block;       /* elimina espacio inferior que generan iframes inline */
  margin: 0 auto;       /* centrado horizontal */
  border-radius: 12px;
  width: 90%;
  max-width: 1220px;
  height: 380px;
}

/*POR QUÉ*/
.porque-shyy{
width: 100%;
padding: 5px 0 0px 0;
background: #FEF5F2;
margin-top: -80px;
}

.porque-container{
width: 90%;
max-width: 1200px;
margin: auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
}

.porque-texto{
flex: 1;
font-size: 18px;
line-height: 1.7;
font-weight: 400;
text-align: justify;
}

.porque-texto h2{
font-size: 38px;
margin-bottom: 20px;
font-weight: 700;
color:#6d1514;
}

.porque-texto p{
    text-align: justify;
}


.porque-redes{
    margin-top: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.red-icon{
    display: flex;
    align-items: center;   /* 💖 centra icono + texto verticalmente */
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;        /* ✔ evita que el texto quede más abajo */
}

.red-icon:hover{
    color: #6d1514;        /* ❤️ rojo al pasar el mouse */
}

.red-icon img{
    width: 32px;           /* bájalo un poco para que coincida con la altura del texto */
    height: 32px;
    display: block;        /* ✔ evita espacio fantasma abajo del icono */
    transition: transform .2s ease;
}

.red-icon:hover img{
    transform: scale(1.1);
}

.red-icon:hover span{
    opacity: 0.8;
}

.porque-texto p{
    color: #1a1a1a;
}
.porque-foto{
flex: 1;
display: flex;
justify-content: center;
}

.porque-foto img{
width: 100%;
max-width: 450px;
border-radius: 20px;
object-fit: cover;
}

/* Sección */
.exp {
    background: #1a1a1a;
    padding: 80px 60px;
}

.exp-container {
    display: grid;
    grid-template-columns: 1fr 350px; /* izquierda | derecha */
    gap: 70px;
    align-items: start;
}

.exp-col.texto h2{
font-size: 47px;
margin-bottom: 20px;
font-weight: 1200;
color:#f3d7e9;
text-align: center
}

.exp-col.texto h3,p,li{
    color: #FEF5F2;
    text-align: center
}

.exp-container  ul {
    list-style: none;
  }

.exp-col.derecha {
  flex: 1;        /* ocupa todo el espacio disponible de la fila */
}

/* COLUMNA DERECHA */
.exp-col.derecha {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* GALERÍA */
.galeria-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    width: 120%;
    transform: translateX(-15%);
}

.galeria-9 .item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;

}

.galeria-9 .item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform .25s ease;
}

.galeria-9 .item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.galeria-9 .item:hover img,
.galeria-9 .item:hover video {
    transform: scale(1.05);
}

.galeria-9 .item video:hover {
    filter: brightness(1.05);
}

.galeria-9 .item::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0));
    z-index: 1;
    pointer-events: none;
    transition: opacity .25s ease;
}

.galeria-9 .item:hover::after {
    opacity: 0.6;
}

.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 9999;
    transition: .2s;
}

.close-lightbox:hover {
    color: #f3d7e9;
}

/* ⭐⭐ AÑADE ESTO — VIDEOS OPTIMIZADOS ⭐⭐ */
.galeria-9 .item video {
    object-fit: cover;
    transition: .25s ease;
}

.lightbox-content video {
    display: block;
    outline: none;
}

/* BOTÓN */
.cv-btn {
    background: #fef5f2;
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;

    /* transiciones */
    transition: background .2s, transform .25s ease;
    transform: translateX(-53%);
}

.cv-btn:hover {
    background: #f3d7e9;
    transform: translateX(-53%) scale(1.06); /* efecto de agrandarse */
}

/* Galería YouTube */
.yt-galer1a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px; /* espacio entre los videos */
  margin-top: 0; /* quita espacio extra arriba */
  
}

#otra-faceta-shyy,
#otra-faceta-charlas {
  padding-top: 20px;
  margin: 0;
  text-align: center;
  
}

#otra-faceta-charlas{
    margin-bottom: 30px;
}

.yt-galer1a iframe {
  width: 100%;
  max-width: 300px;
  height: 200px;
  border: none;
  border-radius: 10px;
}

/* ============================
            FOOTER
============================= */
.footer {
    background: #1a1a1a;    
    width: 100vw;             /* ocupa TODO el ancho */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    
    padding: 40px 0;
    color: #fef5f2;         
}

.footer-grid {
    width: 90%;
    max-width: 1300px;    /* columnas centradas */
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* importante */
}


.footer-col h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #fef5f2;
}

.footer-col a {
    color: #fef5f2;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input {
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    color: #000;
}

.footer-btn {
    padding: 12px;
    background: var(--rojo-shyy);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #ff8a8a; /* color bonito al pasar */
    transform: scale(1.05);
}

/* ===== BOTONES FLOTANTES ===== */
.floating-btn {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s, opacity 0.3s;
  opacity: 0.9;
  overflow: hidden;
}

.floating-btn img {
  width: 60%;
  height: 60%;
}

/* Hover efecto */
.floating-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Posiciones */
#btn-up {
  bottom: 90px;
  right: 20px;
  background: #6d1514;
}

#btn-whatsapp {
  bottom: 20px;
  right: 20px;
  background: #25d366;
}

/* Responsive móvil */
@media (max-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  #btn-up {
    bottom: 70px;
  }
  #btn-whatsapp {
    bottom: 15px;
  }
}
/*------------------------------------------------------------------------------------------------*/

/* ===== RESPONSIVE MÓVIL 768px ===== */
@media (max-width: 768px) {

    /* oculto el menú grande */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;        /* inicia fuera */
        width: 70%;
        height: 100vh;       /* ♥ ocupa todo el alto */
        background: var(--rosa-suave);
        flex-direction: column;
        padding: 70px 30px;
        gap: 25px;
        transition: .3s ease;
        z-index: 2000;
        display: flex;       /* SIEMPRE flex, nunca display:none */
    }

    /* cuando está activo */
    .menu.active {
        right: 0;            /* entra */
    }

    /* hamburguesa aparece */
    .hamburger {
        display: flex;
    }

    /* animación hamburguesa → X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* BANNER */
     .shyyb {
      width: 100%;
      height: auto;         /* altura según la imagen */
      position: relative;
      padding-top: 48px;           /* elimina padding que empuja la imagen */
      overflow: visible;
  }

  .shyyb img {
      width: 100%;           /* ocupa todo el ancho de la pantalla */
      height: auto;          /* mantiene proporción real */
      display: block;
      object-fit: contain;   /* mantiene toda la imagen visible sin recortes */
  }

  .custom-shape-divider-bottom-1763783107 {
      position: relative;    /* que esté justo debajo de la imagen */
      width: 100%;
      margin-top: -29px;     /* ajusta cuánto baja la onda */
      overflow: visible;
  }

  .custom-shape-divider-bottom-1763783107 svg {
      width: 100%;
      height: 30px;          /* tamaño onda en móvil */
  }

  #spotify {
    display: flex;
    justify-content: center; /* centra horizontalmente */
    padding: 20px 15px 100px; /* mantiene espacio interno, con margen lateral igual */
  }

  #spotify iframe {
    margin: 0 auto; /* centra iframe */
    width: 90%;     /* ancho responsivo */
    max-width: 400px; /* ajusta según móvil */
    height: 30px;   /* si quieres menos alto */
  }

  .porque-container {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centra todo horizontalmente */
    padding: 0;            /* elimina padding lateral desigual */
    gap: 15px;             /* espacio entre texto y foto */
}

.porque-shyy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px; 
    gap: 15px;
  }
  .porque-texto {
    text-align: center;
    max-width: 600px;
  }
  .porque-foto {
    justify-content: center;
  }

   .porque-texto h2 {
    font-size: 24px;   /* más pequeño que en desktop */
    margin-bottom: 10px;
  }

  .porque-texto p {
    font-size: 14px;   /* más pequeño que en desktop */
    line-height: 1.4;  /* ajusta un poco el interlineado */
  }

  .porque-texto a {
    font-size: 13px;   /* más pequeño que en desktop */
    line-height: 1.4;  /* ajusta un poco el interlineado */
  }

  .porque-redes {
    justify-content: center;      /* centrado horizontal */
    margin-top: 5px;              /* menos espacio con el texto */
    margin-bottom: 20px;          /* espacio debajo de redes */
    gap: 15px;
  }

  

  .porque-foto img {
    width: 90%;            /* ajusta tamaño de la imagen */
    max-width: 300px;
    display: block;
    margin: 0 auto;        /* centra la imagen perfectamente */
}

  /* Sección Experiencia */
    .exp {
        padding: 50px 20px;
    }

    .exp-container {
        display: flex;
        flex-direction: column; /* texto primero, luego galería */
        gap: 30px;
        align-items: flex-start; /* no centrado vertical, empieza desde arriba */
    }

    /* Texto */
    .exp-col.texto {
        width: 100%;
        text-align: center; /* centrado horizontal */
    }

    .exp-col.texto h2 {
    font-size: 28px;  /* antes 32px */
    margin-bottom: 12px;
}

    .exp-col.texto h3 {
    font-size: 14px;  /* antes 16px */
    margin-bottom: 8px;
}

    .exp-col.texto p,
    .exp-col.texto li {
    font-size: 12px;  /* antes 16px */
    line-height: 1.5; /* mejora lectura */
    padding: 0 35px;
}

    /* Galería */
    .exp-col.derecha {
        width: 100%;
        align-items: center;
        gap: 15px;
    }

    .galeria-9 {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 2 columnas */
        gap: 6px;
        width: 90%; /* más pequeña que 100% */
        max-width: 400px; /* limita tamaño máximo */
        transform: none;
        margin: 0 auto; /* centrado horizontal */
    }

    .galeria-9 .item {
        padding-top: 100%;
    }

    /* Botón CV */
    .cv-btn {
        transform: translateX(0);
        margin: 20px auto 0 auto; /* centrado debajo de galería */
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


