
/* Loading */

body.loading {
  overflow: hidden;
}


/* Fuentes */
@font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Citrus Gothic Rough Regular';
    src: url('../fonts/CitrusGothic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}






/* Copperplate Light (300) */
@font-face {
  font-family: "Copperplate";
  src: url("../fonts/Copperplate-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Copperplate Normal (400) */
@font-face {
  font-family: "Copperplate";
  src: url("../fonts/Copperplate-Normal.ttf") format("truetype");
  font-weight: 400; /* “Normal” = Regular */
  font-style: normal;
  font-display: swap;
}

/* Copperplate Bold (700) */
@font-face {
  font-family: "Copperplate";
  src: url("../fonts/Copperplate-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}






:root {
  --color-azul-yuvii: rgb(0, 154, 191);
  --font-secondary: 'Citrus Gothic Rough Regular', serif;
  --font-text: 'cooperplate';
  --color-azuloscuro-yuvii: #5b7e96;
}


#title-main{
  font-family: "Copperplate", serif !important;
  font-weight: 200;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 1.5rem !important;
}




#title-about{
  font-size: 10rem; 
}

.nav-link{
  color: white !important;
}

nav.navbar {
  font-family: var(--font-secondary);
}


#catalog-submenu-desktop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  background-color: #ffffff; /* Fondo blanco por defecto */
  border-radius: 0.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 0.5rem 0;
}

/* Mostrar en hover */
@media (min-width: 768px) {
  #catalog-wrapper:hover #catalog-submenu-desktop {
    display: block;
  }
}

/* Estilo base del ítem */
#catalog-submenu-desktop .dropdown-item {
  padding: 0.6rem 1.2rem;
  color: #222;

  font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 10px;

  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* HOVER: invertir colores */
#catalog-submenu-desktop .dropdown-item:hover {
  background-color: #000;
  color: #fff;
}


.title-product{
  font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 1.2rem;
}


.presentation-subtitle{
  font-family: "Copperplate", serif;
  font-weight: 200;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 2rem;

  color: var(--color-azuloscuro-yuvii);
}


#product-catalog p.title-product{
  color: var(--color-azul-yuvii) !important;
  text-align: center;
}

@media (min-width: 768px) {
  #catalog-wrapper {
    position: relative;
  }

  #catalog-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
    background-color: white;
  }

  #catalog-wrapper:hover #catalog-submenu {
    display: block;
  }
}







/* La sección anterior (producto) queda por debajo */
#section-producto-seleccionado{
  position: relative;
  z-index: 0;           /* más bajo que Descubre */
  overflow: visible;    /* no recorta nada que se asome */
  padding-bottom: 80px;
}

/* Descubre va por encima de Producto y permite que se asome el círculo */
#section-descubre{
  position: relative;
  z-index: 2;           /* por encima de Producto */
  overflow: visible;    /* clave para que se vea el sobresalir */
}

/* Asegura que el container no recorte (por si algún reset lo cambia) */
#section-descubre > .container{
  overflow: visible;
}



/* --- Orden de capas entre secciones --- */
#section-producto-seleccionado{
  position: relative;
  z-index: 1;                 /* por debajo de Descubre */
  overflow: visible;
  padding-bottom: 80px;
}

#section-descubre{
  position: relative;
  z-index: 2;                 /* por encima de Producto */
  overflow: visible;          /* permite que el círculo se asome */
}

/* Asegura que el container no recorte */
#section-descubre > .container{
  overflow: visible;
}

/* --- Círculo (pegado a la izquierda, centrado, con sombra y sobresaliendo) --- */
#discover-circle{
  background-color: rgba(255,255,255,.8);
  width: 50vw; 
  height: 50vw; 
  border-radius: 50%;
  margin-left: 0; 
  margin-right: auto;
  display: grid; 
  place-items: center; 
  overflow: hidden;
  position: relative; 
  z-index: 2;

  /* sombra del círculo */
  box-shadow:
    0 24px 80px rgba(0,0,0,.35),
    0 8px 24px rgba(0,0,0,.25);

  /* sobresale un poco hacia la sección previa */
  margin-top: clamp(-140px, -7vw, -60px); /* ajusta a tu gusto */
}

/* Contenido centrado dentro del círculo */
#Content-Circle.row{
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#Content-Circle img{
  max-width: 85%;
  height: auto;
  display: block;
}



/* XS–MD: puedes centrar si quieres; LG+: SIEMPRE pegado a la izquierda */
@media (min-width: 992px){
  /* la fila que envuelve al círculo no debe centrar */
  #section-descubre .row:first-child{
    display: flex;
    justify-content: flex-start !important; /* evita centrado en lg/xl */
  }

  /* el propio círculo, pegado a la izquierda del container */
  #discover-circle{
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: center;      /* opcional: centra vertical en la fila */
    /* por si algún estilo anterior lo había centrado: */
    transform: none !important;
  }
}




/* --- Store y puente de cards (50/50 y por encima del círculo) --- */
#section-tienda{
  position: relative;
  z-index: auto;  /* no crear stacking context */
  /* espacio reservado debajo del puente para que no choque con títulos de Store */
  --bridge-clearance: clamp(120px, 18vw, 50px);
  padding-top: calc(var(--bridge-clearance) + 1rem);
}

/* Cards puente: centradas y a caballo entre secciones */
.cards-bridge{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); /* mitad arriba (Discover) / mitad abajo (Store) */
  width: min(100%, 1140px);
  z-index: 5; /* por encima del círculo (z:2) */
}

/* --- Responsive: en móvil evitamos el solape agresivo --- */
@media (max-width: 767.98px){
  #section-tienda{
    --bridge-clearance: 0px;
    padding-top: 1.5rem;
  }
  .cards-bridge{
    position: static;
    transform: none;
    width: 100%;
    z-index: auto;
  }
}











a{
  text-decoration: none !important;
}

.text-color-yuuvi{
  color: var(--color-azul-yuvii);
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5{
  font-family: var(--font-secondary);
}

#title-singel{
  font-size: 20vw !important;
  text-shadow: 10px 10px 2px rgba(0, 0, 0, 0.8);
}


/* Navegador Fuente */
.nav-link{
  font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 10px;
}




header{
  width: auto;
}

#section-banner {
  position: relative;
  overflow: hidden;
}

/* El video siempre cubre sin deformarse */
#section-banner video {
  object-fit: cover;
}

/* Contenido (texto) centrado sobre el video */
#section-banner > .position-relative {
  z-index: 2;
}





/* Botón Yuuvi: base */
.btn.banner-btn, .bin.banner-btn, .banner-btn{
  padding: 15px;
  border-radius: 30px;
  background-color: #fff;
  color: var(--color-azul-yuvii);
  border: 5px solid var(--color-azul-yuvii);
  font-family: "Copperplate", serif;
  font-weight: 700;
  font-synthesis: none;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;           /* centra el contenido si hay íconos */
  align-items: center;
  justify-content: center;
  gap: .5rem;

  /* transiciones suaves */
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease,
    border-color .18s ease,
    filter .18s ease;
}

/* Hover: inversión de color + elevación */
.btn.banner-btn:hover,
.bin.banner-btn:hover,
.banner-btn:hover{
  background-color: var(--color-azul-yuvii);
  color: #fff;
  border-color: var(--color-azul-yuvii);
  transform: translateY(-2px);

}

/* Active: feedback rápido */
.btn.banner-btn:active,
.bin.banner-btn:active,
.banner-btn:active{
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0,0,0,.18),
    0 3px 7px rgba(0,0,0,.12);
  /* tono un pelín más oscuro si el navegador soporta color-mix */
  background-color: color-mix(in srgb, var(--color-azul-yuvii) 92%, #000 8%);
}

/* Focus accesible (teclado) */
.btn.banner-btn:focus-visible,
.bin.banner-btn:focus-visible,
.banner-btn:focus-visible{
  outline: 3px solid var(--color-azul-yuvii);
  outline-offset: 3px;
}

/* Estado disabled (por si lo usas) */
.btn.banner-btn:disabled,
.bin.banner-btn:disabled,
.banner-btn:disabled,
.btn.banner-btn.disabled,
.bin.banner-btn.disabled,
.banner-btn.disabled{
  opacity: .6;
  pointer-events: none;
}

/* (Opcional) si llevas un ícono dentro, que se deslice un poquito en hover */
.btn.banner-btn:hover .bi,
.bin.banner-btn:hover .bi,
.banner-btn:hover .bi{
  transform: translateY(-1px);
  transition: transform .18s ease;
}




#section-producto-seleccionado{
  padding-top: 100rem;
}

#section-suscripcion form{
  padding: 1rem;
  color: black;
  background-color: white;
}

#section-catalogo-page{
    background: linear-gradient(to bottom, transparent 65%, white 35%), url('../images/catalog_banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#section-catalogo-page a{
  text-decoration: none;
}






    /* Pantalla de carga */
    #loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #f3f3f3;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .loader {
      width: 60px;
      height: 60px;
      border: 6px solid #4e77ff;
      border-top: 6px solid #00aaff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

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

    #main-content {
      display: none;
    }

    .text-shadow{
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }

    .p-text{
      font-family: "Copperplate", serif;
      font-weight: 200 !important;            /* Bold */
      font-synthesis: none;        /* evita “faux bold/italic” */
    }

    .text-color-oscuro{
      color: var(--color-azuloscuro-yuvii);
    }


    @media (max-width: 767.98px) {
      #title-about{
        font-size: 8rem;
      }

      #section-productos {
        background: #009ABF !important;
      }

      #section-catalogo-page{
      background-color: white;
      background-image: none;
      }

      #title-catalog{
        color: var(--color-azul-yuvii);
        margin-top: 3rem;
      }

      #title-singel{
        color: var(--color-azul-yuvii) !important;
        font-size: 20vw !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        margin-top: 2rem;
      }

      #discover-circle{
        background-color: rgba(255, 255, 255, 0.5); 
        border-radius: 0; 
        width: auto; 
        height: auto;
      }
    }

  @media (min-width: 768px) and (max-width: 991.98px){
    #discover-circle{
        background-color: rgba(255, 255, 255, 0.5); 
        border-radius: 10%; 
        width: auto; 
        height: auto;
      }
    #section-catalogo-page{
      background-color: white;
      background-image: none;
    }

    #title-singel{
        color: var(--color-azul-yuvii) !important;
        font-size: 20vw !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        margin-top: 2rem;
      }

    #title-catalog{
        color: var(--color-azul-yuvii);
        margin-top: 3rem;
      }
  }



  footer{
    background-color: var(--color-azul-yuvii);
  }

  footer p{
    font-family: "Copperplate", serif;
    font-weight: 200;            
    font-synthesis: none;
  }

/* Altura: cómoda en desktop, libre en móvil */
.footer-row{ min-height:140px; }
@media (max-width: 767.98px){
  .footer-row{ min-height:auto; }
}

#social-footer a{
  display: inline-flex;             /* clave */
  align-items: center;              /* centro vertical */
  justify-content: center;          /* centro horizontal */

  padding: 0;

  width: 4rem;
  height: 4rem;
  border-radius: 10px;
  color: var(--color-azul-yuvii);
  border: 3px solid #fff;
  text-decoration: none;
  line-height: 1;                   /* evita desalineación por tipografía */
  /* opcional: quita padding si quieres un cuadrado perfecto */
  /* padding: 0; */
}

/* tamaño del icono (opcional) */
#social-footer i { font-size: 1.5rem; }

#footer-nav .nav-link{
  font-family: "Copperplate", serif;
  font-weight: 200 !important;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 1rem;
}



#About-Content div.card{
  color: var(--color-azuloscuro-yuvii);
}

.Title-Card{
  font-size: 4rem;
}

#About-Text div.p-text{
 font-family: Arial, Helvetica, sans-serif;
 color: var(--color-azuloscuro-yuvii);
}

#frase{
  font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  font-size: 1rem;
}


/* === ABOUT: alturas y solape 50/50 sin tapar contenido === */

/* Stacking básico */
#About-Content{
  position: relative;
  z-index: 1;         /* debajo del puente */
  overflow: visible;
}

#About-Text{
  position: relative; /* contenedor del puente */
  z-index: auto;      /* no crear stacking context */
  overflow: visible;

  /* Altura de referencia del puente (ajusta si hace falta) */
  --about-bridge-height: clamp(420px, 48vw, 680px);
}

/* Reserva de espacio = 1/2 altura del puente + aire */
#About-Content{
  padding-bottom: 150px;
}

#About-Text > .container{
  padding-top: 100px;
  position: relative;
  overflow: visible;
}

/* Puente: 50% arriba / 50% abajo y encima de todo */
.about-bridge{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);  /* mitad arriba */
  width: min(100%, 1320px);          /* ensancha el contenedor de cards */
  z-index: 5;                        /* sobre About-Content y fondo */
}

.about-bridge .card{
  border-radius: 30px;
}

/* Móvil: sin solape para legibilidad */
@media (max-width: 767.98px){
  #About-Text{ --about-bridge-height: 0px; }
  #About-Content{ padding-bottom: 24px; }
  #About-Text > .container{ padding-top: 1.5rem; }
  .about-bridge{
    position: static;
    transform: none;
    width: 100%;
    z-index: auto;
  }
}


#About-Text .card{
  color: var(--color-azuloscuro-yuvii);
}









/* Single */

#producto-single .p-text{
    font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */

  color: var(--color-azuloscuro-yuvii);
  font-size: 1.8rem;

  line-height: 1.5;
}

#producto-single .title{
    font-family: "Copperplate", serif;
  font-weight: 700;            /* Bold */
  font-synthesis: none;        /* evita “faux bold/italic” */
}