/*MENUUUUUUUU/ OJOOOOOOO/ ÁREA DE MENUUUUUU*-----------------------------------------------------------------------------------*/
.carousel-inner{

    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 70px;
}



.navbar{
    height: 100px;
}


.navbar-brand .logo-navbar {
    height: 72px;
    width: auto;
    display: block;

}


.category-corte {
    background-image: linear-gradient(#00000080, #00000080),
        url('Imagenes/cabello.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.navbar {
    display: flex;
    gap: 20px;
    padding: 15px;
}


.nav-link {
    color: black;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}


.nav-link:hover {
    background-color: #B87333; 
    color: white;
}

body {
    background-color: #fff;
}
.hero-text{
    font-family: 'Playfair Display', serif;
}

.hero-text{
    position: relative;
}

.hero-text{
    position: absolute;
    left: 10%;
    top: 30%;
    transform: translateY(-50px);

    color: whitesmoke;
    font-size: 100px;
    font-weight: bold;
    line-height: 1.1;
}


.hero-text span{
    display: block;
    opacity: 0;
    transform: translateX(-40px);
    animation: slideText 1s forwards;
}


.hero-text span:nth-child(1){
    animation-delay: .3s;
    font-size: 100px;
    font-weight: 400;
}

.hero-text span:nth-child(2){
    animation-delay: .8s;
    margin-left: 40%;
    font-size: 100px;
    font-weight: 400;
}

.hero-text span:nth-child(3){
    animation-delay: 1.3s;
    margin-left: 50%;
    font-size: 100px;
    font-weight: 400;
}

/*Responsivo*/

@keyframes slideText{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px){

    .hero-text{
        font-size: 70px;
        left: 8%;
    }

    .hero-text span{
        font-size: 70px;
    }

    .hero-text span:nth-child(2){
        margin-left: 20%;
    }

    .hero-text span:nth-child(3){
        margin-left: 30%;
    }
}
@media (max-width: 576px){

    .hero-text{
        font-size: 24px !important;
        left: 5%;
        top: 35%;
        transform: none;
        line-height: 1.1;
        max-width: 90%;
    }

    .hero-text span{
        font-size: 24px !important;
        margin-left: 0 !important;
    }
}

/*MENUUUUUUUU/ OJOOOOOOO/ ÁREA DE MENUUUUUU*-----------------------------------------------------------------------------------*/
.card-category p {
	font-size: 2.5rem;
	color: #fff;
	text-transform: capitalize;
	position: relative;
}

.card-category p::after {
	content: '';
	width: 2.5rem;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translate(-50%, 50%);
}

.card-category span {
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}

.card-category span:hover {
	color: var(--primary-color);
}


.card-category {
	height: 200px; 
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1rem;

	background-size: cover;
	background-position: center;

	position: relative;
	overflow: hidden;

	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-category:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.container-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}



.card-category p {
	font-size: 1.6rem; 
}

.card-category span {
	font-size: 1.2rem;
}

/*PRODUCTOS/ OJOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-----------------------------------------------------------------------------------*/
.top-products{
	display:flex;
	flex-direction: column;
	gap: 2 rem;
	margin-bottom: 3rem;
}

.container-options{
	display:flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.container-options span{
	color: black;
	background-color: #fff;
	padding: 0.7rem 3rem;
	font-size: 1.4 rem;
	text-transform: capitalize;
	border-radius: 2rem;
	cursor:pointer;
}
.container-options span:hover{
	background-color: var(--primary-color);
	color: #fff;
}
.container-options span.active{
	background-color: var(--primary-color);
	color:#fff;
}
/* Productos 2 */
.container-img{
    width: 100%;
    height: 300px;      
    overflow: hidden;
}

.container-img img{
    width: 180%;
    height: 180%;
    object-fit: contain;
    transform: scale(1.8);
    margin-top: 40px;
}

.container-products{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
	gap: 3rem;
}
.container-product{
	background-color: #fff;
	padding: 2rem 3rem;
	border-radius: 0.5rem;
	cursor:pointer;
	box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
.container-img{
	position: relative
}
.container-img-img{
	width: 100px;
    
    
}
.container-img .discount{
	position:absolute;
	left: 0;
	background-color: var(--primary-color);
	color:#fff;
	padding: 2px 1.2rem;
	border-radius: 1rem;
	font-size: 1.2rem;
}
.card-product:hover .discount{
	background-color: #000;
}


.content-card-product h3:hover{
	color: var(--primary-color);
    text-align: center;
}

.add-cart{
	justify-self: start;
	border: 2px solid var(--primary-color);
	padding: 1rem;
	border-radius: 50%;
	cursor:pointer;
	transition: all 0.4s ease;
	
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-cart i{
	font-size: 1.5rem;
	color: var(--primary-color);
}
.add-cart-product .pirce{
	justify-self: end;
	align-self: center;
}
.add-cart:hover i{
	color: #fff;
}

.product-title-v{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color:#000;
    font-size: 22px;
    margin-top: 20px;
    
}

.stars{
    margin-top: -60px;
}

/*FOOOTER/ OJOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO*-----------------------------------------------------------------------------------*/

.footer {
    background-image: url("Imagenes/DO.png");
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Playfair Display', serif;
}


.container-footer {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}


.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}


.footer-col {
    flex: 1;
    min-width: 220px;
    
}


.footer-col h4 {
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -8px;
}


.footer-col p {
    font-size: 14px;
    opacity: 0.9;
}


.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ffd1a3;
    padding-left: 5px;
}


.footer-col input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-bottom: 10px;
}


.footer-col button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}


.footer-col button:hover {
    letter-spacing: 2px;
}


.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: rgba(0,0,0,0.2);
    font-size: 14px;
}

/*servicios------------------------------------------------------------------------SERVICIOS----------------------------------*/

.heading-1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: bold;
    color: #b87333;
    text-align: center;
    margin: 40px 0;
    letter-spacing: 1px;
}

/* líneas a los lados */
.heading-1::before,
.heading-1::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #d4a373;
    margin: 0 10px;
    vertical-align: middle;
}



.catalogo {
    padding: 60px 0;
    background-color: #FFFFFF;
    width: 100%;
    overflow: hidden;
    display: block;
}



.grid-catalogo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.grid-catalogo a {
    text-decoration: none;
}


.card-corte {
    width: 190px;         
    aspect-ratio: 1 / 1.2; 
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-corte:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}


.card-corte img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-corte:hover img {
    transform: scale(1.08);
}


.card-corte::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
    z-index: 1;
}

.card-corte:hover::before {
    background: rgba(184, 115, 51, 0.45); 
}



.card-corte p {
    position: absolute;
    bottom: 15px;
    left: 10px;
    color: white;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    z-index: 2;
    margin: 0;
}



.grid-catalogo p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #b87333; 
    text-align: center;
    margin-top: 8px;
    letter-spacing: 0.5px;
}



.banner-productos {
    background: url("Imagenes/flores.png") no-repeat center;
    background-size: cover;
    height: 250px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}

.banner-productos h2 {
    color: black;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
}



.top-products {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.card-product {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.container-img img {
    width: 100%;
    height: 110px;
    object-fit: contain;
}



/*---------------------------------------- SECCIÓN NOSOTROS ---------------------------- / FONDO DE NUESTRAS INSTALACIONES */
.nosotros-alternado {
  background: linear-gradient(135deg, #d35400 50%, #e67e22 100%);
  /*background: linear-gradient(180deg, #C47A2C  0%, #C47A2C 100%);*/
  width: 100%;
  padding: 100px 0;
  margin-top: 60px;
}


.fila {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  gap: 60px;
}

.fila.invertida {
  flex-direction: row-reverse;
}

.col-img {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.col-img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%; 

  background: #fff;
  padding: 10px;

 
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.15),
    8px 8px 0px #F3E5D8; 

  transition: transform 0.3s ease;
}

.col-img img:hover {
  transform: scale(1.05);
}



.col-txt {
  flex: 1;
  padding: 10px 20px;
}

.subtitulo {
  color: #F3E5D8; 
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 30px;
  display: block;

}

.col-txt h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  color: #fff; 
  font-family: 'Playfair Display', serif;
}

.col-txt p {
  line-height: 1.8;
  color: #FDEBD0; 
  font-family:'Times New Roman', Times, serif;
  font-size: 1.2rem;
}


.col-txt h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #F3E5D8;
  margin-top: 10px;
}


/* ================== RESPONSIVO ================== */
@media (max-width: 768px) {
  .fila,
  .fila.invertida {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .col-img img {
    width: 200px;
    height: 200px;
  }
}


.banner-quinoa {
    background-image: url("Imagenes/cinco.png");
    /*background: linear-gradient(180deg, #FF9F43 0%, #FFC371 100%);*/
    background-size: cover;
    background-position: center;
    padding: 60px 10%;
    color: #000;
    margin-top: 30px;
    height: 300px;
}

.banner-quinoa h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.letras{
    font-family: 'Times New Roman', Times, serif ;
    color: 50px;
}


.productos-flotantes {
    margin-top: -100px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}
.col-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.card-product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 15px;
    max-width: 280px;
    transition: 0.3s;
    
    border: 2px solid #B87333 

}

.card-product:hover {
    transform: translateY(-10px);
}


.product-title {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.4;
    margin: 15px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.stars {
    text-align: center;
    font-size: 0.8rem;
    color: #000;
}

.reviews {
    color: #888;
    margin-left: 5px;
}


.contenedor-capas {
  position: relative;
  width: 80%;
  max-width: 1000px;
  height: 500px; 
}

.cuadro-decorativo.cobre {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 90%;
  background: linear-gradient(45deg, #b87333, #d9a066);
  z-index: 1;
  border-radius: 4px;
}


.imagen-principal {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 65%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  box-shadow: 20px 20px 50px rgba(0,0,0,0.2);
}

.imagen-principal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.tag {
  color: #b87333;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 2px;
}


:root {
    --cobre-metalico: #B87333;
    --naranja-suave: #E67E22;
    --negro-lujo: #1A1A1A;
    --blanco-puro: #FFFFFF;
    --marmol-sutil: rgba(255, 255, 255, 0.8);
}

.asimetrico-section {
    padding: 100px 0;
    background-image: url('https://www.transparenttextures.com/patterns/white-marble.png');
    background-color: #FFFFFF  /*FONDO*/
}

.cobre-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 85%;
    background: linear-gradient(135deg, var(--cobre-metalico), var(--naranja-suave));
    z-index: 1;
    border-radius: 2px;
}

.imagen-principal {
    position: absolute;
    top: 50px;
    left: 60px;
    width: 60%;
    height: 90%;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 25px 25px 50px rgba(0,0,0,0.15);
}


.texto-flotante.dark-mode {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42%;
    background: var(--blanco-puro);
    padding: 50px;
    z-index: 3;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.1);
    /* Borde lateral en Negro para resaltar el logo */
    border-right: 15px solid var(--negro-lujo); 
}

.tag-cobre {
    color: var(--cobre-metalico);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.titulo-negro {
    font-family: 'Playfair Display', serif;
    color: var(--negro-lujo);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.negro{
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}


.btn-cecy {
    background-color: var(--negro-lujo);
    color: var(--blanco-puro);
    border: 2px solid var(--negro-lujo);
    padding: 12px 35px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    
    

}

.btn-cecy:hover {
    background-color: transparent;
    color: var(--cobre-metalico);
    border-color: var(--cobre-metalico);
}

@media (max-width: 992px){

    .contenedor-capas{
        width: 90%;
        height: 420px;
    }

    .cuadro-decorativo.cobre{
        width: 65%;
        height: 85%;
    }

    .imagen-principal{
        top: 30px;
        left: 30px;
        width: 70%;
        height: 100%;
    }

    .texto-flotante.dark-mode{
        width: 50%;
        padding: 30px;
    }

    .titulo-negro{
        font-size: 2rem;
    }
}
@media (max-width: 576px){

    .contenedor-capas{
        width: 95%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cuadro-decorativo.cobre{
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: -120px;
    }

    .imagen-principal{
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 250px;
        box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
    }

    .texto-flotante.dark-mode{
        position: relative;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
        border-right: none;
    }

    .titulo-negro{
        font-size: 1.6rem;
    }

    .negro{
        font-size: 16px;
    }
}

/* AJUSTES PARA LOS SERVICIOS (TARJETAS) */
.card-corte {
    border: 1px solid #eee;
    transition: 0.3s;
}

.card-corte:hover {
    border-color: var(--cobre-metalico);
    box-shadow: 0 10px 20px rgba(184, 115, 51, 0.2);
}

.servicio-link p {
    color: var(--negro-lujo);
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}

.servicio-link:hover p {
    color: var(--cobre-metalico);
}

/*--------------CONOCENOS------------------------------------------------------------------------------------*/
.banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #8b4513 0%, #d35400 50%, #e67e22 100%);
  height: 400px;
  font-family: 'Playfair Display', serif; 
  overflow: hidden;
  margin-top: 80px;
  border-bottom: 5px solid #1a1a1a;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
 
  background-color: #f2f2f2; 
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); 
}

.banner-image img {
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.2)); 
}

.banner-content {
  flex: 1;
  padding: 0 60px;
  color: #fff; 
}

.banner-content h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3); 
}

.btn-coleccion {
  display: inline-flex;
  align-items: center;
  background-color: #1a1a1a; 
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 4px; 
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-coleccion:hover {
  background-color: transparent;
  border-color: #fff;
  transform: translateY(-3px);
}

.arrow {
  margin-left: 15px;
  font-size: 1.2rem;
  transition: margin-left 0.3s;
}

.btn-coleccion:hover .arrow {
  margin-left: 25px; 
}

/*Responsivo */
@media (max-width: 768px){

  .banner{
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 20px 0;
  }

  .banner-image{
    clip-path: none;
    width: 100%;
    height: 250px;
  }

  .banner-image img{
    max-height: 100%;
  }

  .banner-content{
    padding: 20px;
  }

  .banner-content h1{
    font-size: 1.8rem;
  }

  .btn-coleccion{
    justify-content: center;
  }
}

