/* -------------------- FUENTE PERSONALIZADA -------------------- */
@font-face {
  font-family: 'FounderGrotesk-Light';
  src: url('/fonts/FoundersGrotesk-Light.otf') format('opentype');
}

/* -------------------- ESTILOS GENERALES -------------------- */
body {
  margin: 0;
  font-family: 'FounderGrotesk-Light', sans-serif;
  background-color: #f5f4f0;
  overflow-x: hidden;
  width: 100%;
}

/* -------------------- NAVBAR -------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 25px; /* más delgado */
  background-color: #f5f4f0;
  border-bottom: 0.5px solid #bfbec0;
  flex-wrap: wrap;
  transition: top 0.4s ease-in-out;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 71px;
 
}






.navbar.hidden {
  top: -100px; 
}





.nav-left{
  height: 100%;
  border-right: 1px solid; 
  border-color: #bfbec0;
  margin-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  padding-top: 25px;
}

.nav-left .logo {
  font-size: 22px;
  font-weight: bold;
  color: #414042;
  text-align: center;
  margin-top: 40px;
}

.nav-center,
.nav-right {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-center a,
.nav-right a {
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.icon-round {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* -------------------- BANNER -------------------- */
.banner {
  position: relative; 
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 50px;
  margin-top: 50px;
}


.titulo-banner {
  position: absolute;
  bottom: 15px; 
  left: 26%;
  transform: translateX(-50%);
  
  
  mix-blend-mode: difference;
  padding: 10px 25px 0px 43px;
  font-size: 110px;
  color: white;
  line-height: 80%;
  
  text-align: left;
}


/* -------------------- PRODUCTOS -------------------- */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f5f4f0;
  
}

.product {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  width: 100%;
  height: 460px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.product-image img {
  width: 250px;
  height: auto;
  z-index: 2;
}

.product-info {
  width: 100%;
  background-color:#f5f4f0;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}

.product-description,
.product-price {
  font-size: 16px;
  margin: 5px 0;
  color: #333;
}

.quick-add {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  font-size: 13px;
  font-family: 'FounderGrotesk-Light', sans-serif;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.quick-add:hover {
  background-color: #000;
  color: #fff;
}

/* -------------------- RESPONSIVE SOLO PARA CELULAR -------------------- */
@media screen and (max-width: 768px) {
  
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0px 15px;
    width: 100%;
    box-sizing: border-box;
    height: 74px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
  }
  .nav-left{

  }

  .nav-left .logo {
    font-size: 19px;
    
  }

  .nav-center a,
  .nav-right a {
    font-size: 12px;
  }



  .thin-title {
  font-weight: 400; 
  font-size: 10px;
  padding: 10px;
}

  /* BANNER ajustado */
  .banner {
    height: 500px;
    margin-top: 55px;
  }

  .banner img {
    height: 700px;
    object-fit: cover;
    margin-top: -15px;
  }
  .titulo-banner{
    font-size: 55px;
    margin-bottom: 165px;
    left: 45%;
  }

 
  .product-section {
    flex-direction: column;
    padding: 0;
  }

  .product {
    width: 100%;
  }

  .product-image {
    height: 330px;
    padding: 40px 0;
  }

  .product-image img {
    width: 180px;
  }

  .product-info {
    padding: 20px;
    border-left: none;
    border-right: none;
  }

  .product-description,
  .product-price {
    font-size: 15px;
  }

  .quick-add {
    width: 90%;
    max-width: 300px;
    margin: 15px auto 0;
  }


  .carousel-container {
    width: 100%;
    overflow: hidden;
  }

  .carousel-inner {
    flex-direction: column;
    align-items: center;
  }

  .carousel-item {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .carousel-caption {
    position: static;
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* ------------ Estilos base ------------ */
.main-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: #414042;
  cursor: pointer;
  display: none;
  margin-left: 50px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #f5f4f0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  z-index: 999;
  padding: 0;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  padding: 18px 20px;
  border-bottom: 1px solid #d4d4d4;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
  color: #414042;
  font-family: 'FounderGrotesk-Light', sans-serif;
}

.mobile-menu a:hover {
  background-color: #eaeaea;
}


/* ------------ Responsive Navbar ------------ */
@media screen and (max-width: 768px) {
  .nav-center,
  .nav-right,
  .nav-left {
    flex: 1;
    justify-content: center;
    align-items: center;
    
  }

  .nav-center {
    justify-content: center;
  }

  .nav-right {
    
  }

  .nav-left {
    justify-content: flex-start;
    margin-right: 10px;
    margin-top: 2px;
    
    align-items: center;
  }

  .nav-center a,
  .nav-right a,
  .nav-center,
  .nav-right nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
  .thin-title {
    font-size: 10px;
  }

  .mobile-menu.show {
    display: flex;
  }
}


/* Menú de escritorio (solo PC) */
.desktop-menu {
  display: flex;
  gap: 15px;
  margin-left: 120px;
}

.desktop-menu a {
  text-decoration: none;
  color: #414042;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Ocultar en móviles */
@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
}


.promo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f4f0;
  
  border-top: 1px solid #ddd;
}

.promo-carousel {
  
  height: 700px;
  overflow: hidden;
  position: relative;
  width: 750px;
}

.promo-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.promo-carousel img.active {
  opacity: 1;
  z-index: 1;
}

.promo-text {
  flex: 1;
  padding: 0 60px;
  color: #414042;
}

.promo-text .mini-title {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #666;
}

.promo-text .main-title {
  font-size: 60px;
  margin: 0 0 20px;
  font-weight: normal;
}

.promo-text blockquote {
  font-style: italic;
  color: #777;
  margin: 0 0 10px;
  font-size: 20px;
}

.promo-text .author {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.discover-btn {
  padding: 12px 30px;
  border: 1px solid #414042;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.discover-btn:hover {
  background-color: #414042;
  color: #fff;
}

.thin-title {
  font-weight: 400; 
  color: #414042;
   padding: 20px; 
   font-size: 32px; 
   
}


@media (max-width: 768px) {
  .promo-section {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .promo-carousel {
    width: 100%;
    height: 300px;
  }

  .promo-text {
    width: 100%;
    text-align: center;
  }

  .promo-text .main-title {
    font-size: 28px;
  }

  .promo-text blockquote,
  .promo-text .mini-title,
  .promo-text .author {
    font-size: 14px;
  }

  .discover-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
}


@media (max-width: 768px) {
  .promo-carousel {
    position: relative;
    height: 400px;
  }

  .promo-carousel img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.container {
  max-width: 100%;
  overflow-x: hidden;
}








.banner-info {
  position: absolute;
  bottom: 30px; 
  
  display: flex;
  flex-direction: column;
  width: 100%;
}




.banner-line {
  width: 100%;
  height: 1px;
  background-color: white;
  border: none;
  margin: 10px 0;
  opacity: 0.8;
  mix-blend-mode: difference;
}

.banner-description-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  
}

.banner-description {
  color: rgb(255, 255, 255);
  font-size: 14px;
  flex: 1;
  margin: 0;
  margin-left: 50px;
  
  
  
}


.banner-btn {
  padding: 12px 25px;
  font-size: 13px;
  font-family: 'FounderGrotesk-Light', sans-serif;
  background-color: white;
  border: 1px solid #fff;
  color: #000000;
  cursor: pointer;
  transition: 0.3s ease;
  margin-right: 10px;
  text-align: center;
  width: 204px;
}

.banner-btn:hover {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  .banner-info {
    
    
    right: 20px;
    
  }

  .banner-description-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .banner-description {
    font-size: 13px;
    max-width: 90%;
  }

  .banner-btn {
    
  }
}



.main-footer {
  background-color: white;
  color: #414042;
  font-family: 'Courier New', monospace;
  padding: 50px 40px 20px;
  font-size: 13px;
  line-height: 1.8;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.footer-social a {
  color: #414042;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #414042;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  font-size: 12px;
}

.footer-right {
  font-weight: normal;
  letter-spacing: 1px;
}



@media screen and (max-width: 768px) {
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(65, 64, 66, 0.5);
    color: white;
    border: none;
    padding: 8px 10px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
  }

  .carousel-btn.left {
    left: 10px;
  }
  .carousel-btn.right {
    right: 10px;
  }

  .carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  
  .perf-product-section {
    position: relative;
  }
}




@media screen and (max-width: 768px) {
  
  .perf-product-section {
    position: relative;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Columnas */
  .perf-left,
  .perf-left2,
  .perf-left3,
  .perf-center,
  .perf-right {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
  }

  /* Orden móvil */
  .perf-center { order: 1; }
  .perf-left, .perf-left2, .perf-left3 { order: 2; }
  .perf-right { order: 3; }

  /* Botones */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(65, 64, 66, 0.4);
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    backdrop-filter: blur(4px);
  }

  .carousel-btn.left { left: 10px; }
  .carousel-btn.right { right: 10px; }

  .carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
}





















.seccion-joyas{
  margin-top: 100px;
  padding-left: 40px;
  display: flex;
  margin-bottom: 80px;
}
.seccion-joyas h1{
  font-size: 30px;
  font-weight: 400;
  color: #414042;
  
}
.titulo-joyas{
  width: 400px;
}
.descripcion-joyas{
  width: 500px;
  margin-left: 190px;
  height: 100px;
  
}
.descripcion-joyas p{
  font-size: 22px;
  color: #414042;
  font-weight: 300;
  
}








.perf-product-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f3ef;
  font-family: sans-serif;
  min-height: calc(100vh - 120px); 
  
}



.perf-left,
.perf-center,
.perf-right {
  flex: 1; 
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  
}

.perf-center {
  border: 0.5px solid #ccc;
}

.perf-right {
  border: 0.5px solid #ccc;
}

/* Columna izquierda */
.perf-left {
  background: url('/images/cadena-fondo1.jpg') center/cover no-repeat;
  color: white;
  align-items: center;
  text-align: center;
}

.perf-left h2 {
  font-size: 28px;
  letter-spacing: 2px;
  background-color: transparent;
  padding: 10px 20px;
  mix-blend-mode: difference;
}

/* Columna central */
.perf-center {
  text-align: center;
}

.perf-badge {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.perf-image {
  width: 750px; 
  max-height: 80%;
  object-fit: contain; 
}


.perf-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: -10px;
  color: #414042;
}

.perf-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: -10px;
}

.perf-price {
  font-size: 17px;
  color: #414042;
  
}

.perf-button {
  padding: 10px 25px;
  background-color: #414042;
  color: white;
  border: none;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.perf-button:hover{
  background-color: #000;
  color: white;
}

/* Columna derecha */
.perf-notes p {
  font-size: 13px;
  color: #444;
  margin: 5px 0;
  
}
.perf-notes{
  margin-bottom: 290px;
}

.perf-mood-label {
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}

.perf-mood-text {
  font-size: 13px;
  color: #414042;
  margin-bottom: 10px;
}

.perf-more-info {
  font-size: 12px;
  color: #777;
  cursor: pointer;
}



.perf-product-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #f4f3ef;
  font-family: sans-serif;
  height: calc(100vh - 120px); 
  
}

.perf-left,
.perf-center,
.perf-right {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.perf-center {
  border: 0.5px solid #ccc;
  text-align: center;
  align-items: center;
}

.perf-right {
  border: 0.5px solid #ccc;
}

/* contenedor fijo para la imagen */
.perf-image-container {
  height: 350px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
  width: 350px;
}

.perf-image {
  height: 100%;
  width: auto;
  transform: scale(1.4);
}





.perf-left2 {
  background: url('/images/cadena-hombre2.jpg') center/cover no-repeat;
  color: white;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.perf-left2 h2 {
  font-size: 28px;
  letter-spacing: 2px;
  background-color: transparent;
  padding: 10px 20px;
  mix-blend-mode: difference;
}


.perf-left3 {
  background: url('/images/fondo-cadena3.jfif') center/cover no-repeat;
  color: white;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.perf-left3 h2 {
  font-size: 28px;
  letter-spacing: 2px;
  background-color: transparent;
  padding: 10px 20px;
  mix-blend-mode: difference;
}








