/* ============================= */
/* RESET */
/* ============================= */



*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Helvetica, Arial, sans-serif;
color:#111;
background:white;
line-height:1.6;
-webkit-font-smoothing:antialiased;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;

padding:28px 8%;

position:sticky;
top:0;

background:rgba(255,255,255,0.95);
backdrop-filter:blur(8px);

border-bottom:1px solid #eee;

z-index:1000;
transition:0.3s;
}

.logo{
font-size:18px;
letter-spacing:4px;
font-weight:600;
}

nav a{
margin-left:35px;
text-decoration:none;
color:black;
font-size:14px;
letter-spacing:1.5px;
position:relative;
}

/* linea animada en hover */

nav a::after{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:0%;
height:1px;
background:black;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}


/* logo dentro del menu */

.menu-logo{
display:none;
font-size:28px;
letter-spacing:4px;
font-weight:600;
margin-bottom:30px;
}

/* ============================= */
/* HAMBURGER MENU */
/* ============================= */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.menu-toggle span{
width:25px;
height:2px;
background:black;
display:block;
}
/* ============================= */
/* HERO */
/* ============================= */

.hero{
  height:100vh;
  background-image:url("../img/hero.png");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  position:relative;
  overflow:hidden;
}

/* Celular */
@media (max-width:768px){
  .hero{
    background-position: top center;
  }
}
/* overlay */

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:linear-gradient(
to bottom,
rgba(0,0,0,0.55),
rgba(0,0,0,0.45)
);
}

/* zoom suave */

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background-image:url("../img/hero1.webp");
background-size:cover;
background-position:center;

z-index:-1;

animation:zoomHero 25s ease infinite alternate;
}

@keyframes zoomHero{
0%{transform:scale(1);}
100%{transform:scale(1.12);}
}

/* ============================= */
/* HERO CONTENT */
/* ============================= */

.hero-content{
position:relative;
z-index:2;
animation:fadeUp 1.2s ease;
max-width:700px;
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

.hero-content h1{
font-size:72px;
letter-spacing:4px;

text-shadow:0 10px 30px rgba(0,0,0,0.6);
}

.hero-content p{
font-size:20px;
margin:20px 0;
color:#eee;
}

/* ============================= */
/* BOTONES */
/* ============================= */

.btn{
display:inline-block;

padding:15px 40px;

background:white;
color:black;

text-decoration:none;
font-weight:600;
letter-spacing:1px;

border-radius:40px;

transition:all .3s ease;
}

.btn:hover{
background:black;
color:white;

transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,0.3);
}

/* botón outline */

.btn-outline{
border:1px solid black;
padding:12px 26px;
text-decoration:none;
color:black;
font-size:14px;
letter-spacing:1px;

transition:0.3s;
}

.btn-outline:hover{
background:black;
color:white;
}

/* ============================= */
/* COLLECTION */
/* ============================= */

.collection{
padding:140px 10%;
background:#f8f8f8;
}

.collection-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:90px;
}

.collection-text{
max-width:520px;
}

.collection-text h2{
font-size:44px;
margin-bottom:20px;
letter-spacing:1px;
}

.collection-text p{
font-size:18px;
line-height:1.7;
color:#555;
margin-bottom:30px;
}

/* imagen */

.collection-image img{
width:460px;
border-radius:12px;

filter:brightness(0.92) contrast(1.05);

transition:all .5s ease;

box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.collection-image img:hover{
transform:scale(1.05);
filter:brightness(1) contrast(1.1);
}

@keyframes zoomIn{
from{
transform:scale(1);
}
to{
transform:scale(1.08);
}
}

@keyframes reveal{
from{
opacity:0;
transform:translateY(60px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.reveal.active{
animation:reveal 1s ease forwards;
}

.navbar.scrolled{
padding:18px 8%;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
background:rgba(255,255,255,0.98);
}

/* ============================= */
/* BRAND QUOTE */
/* ============================= */

.brand-quote{
padding:140px 20px;

text-align:center;

font-size:34px;
letter-spacing:4px;

max-width:900px;
margin:auto;

color:#222;
}

/* ============================= */
/* ABOUT */
/* ============================= */

.about{
padding:140px 40px;
display:flex;
justify-content:center;
}

.about-container{
max-width:650px;
text-align:center;
}

.about h2{
margin-bottom:20px;
font-size:32px;
letter-spacing:1px;
}

.about p{
color:#555;
margin-bottom:30px;
font-size:17px;
line-height:1.8;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer{
padding:70px;
text-align:center;

border-top:1px solid #eee;

color:#777;
font-size:14px;
}

.footer-contact{
margin-top:10px;
}

/* ============================= */
/* INSTAGRAM ICON */
/* ============================= */

.ig-link img{
width:22px;
margin-left:8px;
vertical-align:middle;
transition:0.3s;
}

.ig-link img:hover{
transform:scale(1.2);
opacity:0.7;
}

/* ============================= */
/* EFECTO ESCRITURA */
/* ============================= */

.typing{

overflow:hidden;
white-space:nowrap;
border-right:3px solid white;

width:0;

animation:
typing 3s steps(20,end) forwards,
blink .8s infinite;

}

/* animación escritura */

@keyframes typing{
from{
width:0
}
to{
width:100%
}
}

/* cursor parpadeando */

@keyframes blink{
0%{
border-color:transparent
}

50%{
border-color:white
}

100%{
border-color:transparent
}
}



/*-----------------------------------------------------------------------*/

/* PRODUCT CARD */
/* IMAGEN */

/* PRODUCT CARD */

.product-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
position:relative;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.18);
}

/* IMAGEN */

.product-img-wrap{
width:100%;
height:500px;
position:relative;
overflow:hidden;
background:#f6f6f6;
display:flex;
align-items:center;
justify-content:center;
}

.product-img{
width:100%;
height:100%;
object-fit:cover;
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .35s ease, transform .4s ease;
}

.product-img.active{
opacity:1;
}

/* ZOOM SUAVE EN HOVER */

.product-card:hover .product-img.active{
transform:scale(1.05);
}

/* FLECHAS */

.img-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.45);
color:#fff;
border:none;
width:36px;
height:36px;
border-radius:50%;
cursor:pointer;
z-index:5;
font-size:16px;
transition:all .25s ease;
}

.prev{
left:12px;
}

.next{
right:12px;
}

.img-btn:hover{
background:#000;
transform:translateY(-50%) scale(1.1);
}

/* INFO PRODUCTO */

.product-info{
padding:20px;
display:flex;
flex-direction:column;
gap:12px;
}

/* TITULO + PRECIO */

.product-top{
display:flex;
justify-content:space-between;
align-items:center;
}

.product-title{
font-size:18px;
font-weight:600;
color:#111;
margin:0;
}

.price{
font-size:18px;
font-weight:700;
color:#640505;
}

/* TALLAS */

.sizes{
display:flex;
gap:8px;
flex-wrap:wrap;
}

.sizes span{
border:1px solid #ddd;
padding:6px 12px;
font-size:12px;
border-radius:20px;
background:#fafafa;
cursor:pointer;
transition:all .25s ease;
}

.sizes span:hover{
background:#111;
color:#fff;
border-color:#111;
transform:translateY(-2px);
}

/* BOTON COMPARTIR */

.product-share{
text-align:center;
margin-top:8px;
}

.share-btn{
font-size:14px;
color:#444;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:6px;
padding:8px 14px;
border-radius:20px;
background:#f2f2f2;
transition:all .25s ease;
}

.share-btn:hover{
background:#111;
color:#fff;
}
/* NEWSLETTER */

.newsletter{
padding:60px 20px;
background:#fff;
text-align:center;
}

.newsletter-text{
font-size:16px;
margin:10px 0 30px 0;
color:#555;
}

/* FORMULARIO */

.newsletter-form{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
flex-wrap:wrap;
max-width:500px;
margin:auto;
}

.newsletter-form input{
padding:12px 16px;
font-size:15px;
border:1px solid #ccc;
border-radius:50px;
flex:1;
outline:none;
transition:0.3s;
}

.newsletter-form input:focus{
border-color:#640505;
}

/* BOTON */

.newsletter-form button{
padding:12px 24px;
font-size:15px;
border:none;
border-radius:50px;
background:#111;
color:#fff;
cursor:pointer;
transition:0.3s;
}

.newsletter-form button:hover{
background:#640505;
}


/*-----------------------------------------------------------------------*/


/*envios*/

/* ===== SECCIÓN ENVIOS ===== */
/* ===== SECCIÓN ENVÍOS ===== */
/* TITULO SECCIÓN */

.shipping-section .section-title{
font-size:36px;
font-weight:600;
margin-bottom:10px;
letter-spacing:1px;
color:#111;
position:relative;
display:inline-block;
}

/* linea decorativa debajo */

.shipping-section .section-title::after{
content:"";
display:block;
width:60px;
height:3px;
background:#000;
margin:12px auto 0;
border-radius:2px;
}

.shipping-section .section-subtitle{
font-size:18px;
color:#666;
margin-bottom:50px;
max-width:500px;
margin-left:auto;
margin-right:auto;
}

.shipping-section{
padding:80px 20px;
background:#f9f9f9;
}

.shipping-container{
max-width:1200px;
margin:auto;
text-align:center;
}

/* TITULOS */

.section-title{
font-size:36px;
font-weight:600;
margin-bottom:10px;
letter-spacing:1px;
}

.section-subtitle{
font-size:18px;
color:#555;
margin-bottom:50px;
}

/* GRID */

.shipping-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* TARJETAS */

.shipping-card{
background:#fff;
padding:35px 25px;
border-radius:14px;
box-shadow:0 6px 16px rgba(0,0,0,0.08);
transition:.35s;
position:relative;
overflow:hidden;
}

/* linea animada */

.shipping-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:3px;
background:#000;
transition:.4s;
}

.shipping-card:hover::before{
width:100%;
}

/* hover */

.shipping-card:hover{
transform:translateY(-8px);
box-shadow:0 16px 32px rgba(0,0,0,0.15);
}

/* ICONO */

.shipping-icon{
font-size:38px;
color:#222;
margin-bottom:18px;
transition:.3s;
}

/* animación icono */

.shipping-card:hover .shipping-icon{
transform:scale(1.2) rotate(-6deg);
}

/* TEXTO */

.shipping-card h3{
font-size:20px;
margin-bottom:6px;
}

.shipping-time{
font-size:16px;
color:#666;
margin-bottom:12px;
}

.shipping-price{
font-weight:700;
font-size:18px;
color:#111;
}

/* ANIMACIÓN APARICIÓN */

.shipping-card{
opacity:0;
transform:translateY(30px);
animation:shippingFade .8s ease forwards;
}

.shipping-card:nth-child(2){
animation-delay:.15s;
}

.shipping-card:nth-child(3){
animation-delay:.3s;
}

@keyframes shippingFade{
to{
opacity:1;
transform:translateY(0);
}
}

/* RESPONSIVE */

@media (max-width:1024px){

.shipping-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.shipping-grid{
grid-template-columns:1fr;
gap:20px;
}

.section-title{
font-size:28px;
}

.section-subtitle{
font-size:16px;
}

}

/*-----------------------------------------------------------------------*/





/*contacto*/
/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.contact-section .section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-section .section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* GRID CONTACTO */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* FORMULARIO */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #222;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  outline: none;
}

.contact-form button {
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: #444;
  transform: scale(1.05);
}

/* INFO DE CONTACTO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.contact-info .info-item i {
  color: #222;
  font-size: 20px;
}

.contact-info .socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-info .socials a {
  color: #222;
  font-size: 22px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-info .socials a:hover {
  color: #25D366;
  transform: scale(1.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .contact-section .section-title {
    font-size: 28px;
  }
  .contact-section .section-subtitle {
    font-size: 16px;
  }
}




/* ============================= */
/* RESPONSIVE */
/* ============================= */


/* -------- TABLET -------- */

@media (max-width:1024px){

.hero-content h1{
font-size:56px;
}

.collection-container{
gap:50px;
}

.collection-image img{
width:380px;
}

.brand-quote{
font-size:28px;
}

.shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

}


/* -------- MOBILE GRANDE -------- */

@media (max-width:768px){

/* NAVBAR */

.navbar{
padding:20px 6%;
}

nav a{
margin-left:20px;
font-size:13px;
}

/* HERO */

.hero-content h1{
font-size:44px;
letter-spacing:3px;
}

.hero-content p{
font-size:18px;
}

/* BOTONES */

.btn{
padding:13px 32px;
font-size:14px;
}

/* COLLECTION */

.collection{
padding:100px 8%;
}

.collection-container{
flex-direction:column;
text-align:center;
gap:40px;
}

.collection-image img{
width:100%;
max-width:420px;
}

/* BRAND */

.brand-quote{
font-size:24px;
padding:100px 30px;
letter-spacing:2px;
}

/* ABOUT */

.about{
padding:100px 30px;
}

.about h2{
font-size:28px;
}

.about p{
font-size:16px;
}

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-info {
    flex-direction: column;
    gap: 8px;
  }

  .title-whatsapp {
    flex-direction: row;
    justify-content: space-between;
  }

}


/* -------- MOBILE PEQUEÑO -------- */

@media (max-width:641px){

/* NAVBAR */

.logo{
font-size:16px;
letter-spacing:3px;
}

nav{
display:none;
}

/* HERO */

.hero{
padding:0 20px;
}

.hero-content h1{
font-size:34px;
}

.hero-content p{
font-size:16px;
}

/* BOTON */

.btn{
padding:12px 26px;
font-size:13px;
}

/* COLLECTION */

.collection{
padding:80px 20px;
}

.collection-text h2{
font-size:32px;
}

.collection-text p{
font-size:16px;
}

/* BRAND */

.brand-quote{
font-size:20px;
}

/* FOOTER */

footer{
padding:50px 20px;
font-size:13px;
}

/* ============================= */
/* FULLSCREEN MENU MOBILE */
/* ============================= */

@media (max-width:768px){

  /* mostrar hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 2px; /* líneas más juntas */
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    height: 3px; /* líneas más delgadas */
    width: 28px; /* un poco más corto */
    background: black;
    border-radius: 2px;
  }

  /* menú pantalla completa */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* links más juntos */
    transform: translateY(-100%);
    transition: 0.4s ease;
    z-index: 999;
  }

  /* abrir menu */
  .nav-links.active {
    transform: translateY(0);
  }

  /* links más pequeños y compactos */
  .nav-links a {
    font-size: 18px; /* antes 20px */
    letter-spacing: 1.5px;
    margin: 0;
  }

  /* logo del menú más pequeño y centrado */
  .menu-logo {
    display: block;
    font-size: 20px; /* antes 22px */
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px; /* menos espacio debajo del logo */
  }

   .brand-quote {
    padding: 20px 10px; /* reduce espacio alrededor */
    text-align: center; /* centra el texto */
  }

  .brand-quote h1.typing {
    font-size: 24px; /* antes puede ser 36px o más */
    line-height: 1.2; /* más compacto verticalmente */
    letter-spacing: 1px; /* reduce un poco el espaciado */
    margin: 0; /* elimina márgenes grandes */
  }


}
}

/*pagos*/

/* PAGOS */

/* ===== SECCION PAGOS ===== */

.pagos-section{
padding:80px 20px;
background:#f7f7f7;
font-family:system-ui, -apple-system, sans-serif;
}

/* CONTENEDOR */

.pagos-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-bottom:70px;
}

/* TARJETAS */

.pago-box{
background:#fff;
padding:35px;
border-radius:14px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

/* LINEA SUPERIOR ANIMADA */

.pago-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:4px;
background:#000;
transition:.4s;
}

.pago-box:hover::before{
width:100%;
}

/* HOVER */

.pago-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

/* TITULO */

.pago-box h2{
font-size:24px;
margin-bottom:20px;
font-weight:600;
letter-spacing:.5px;
}

/* TEXTO */

.pago-box p{
font-size:15px;
margin-bottom:8px;
color:#444;
}

.pago-box strong{
color:#111;
}

/* LISTA */

.pago-box ul{
margin-top:20px;
padding-left:18px;
}

.pago-box li{
margin-bottom:8px;
font-size:15px;
color:#555;
}

/* ===== BENEFICIOS ===== */

.pagos-beneficios{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

/* BENEFICIO */

.beneficio{
background:#fff;
padding:30px 20px;
border-radius:14px;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:.35s;
}

/* HOVER BENEFICIO */

.beneficio:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

/* ICONO */

.beneficio i{
font-size:36px;
margin-bottom:12px;
color:#000;
transition:.3s;
}

/* ANIMACION ICONO */

.beneficio:hover i{
transform:scale(1.2) rotate(-5deg);
}

/* TITULO */

.beneficio h3{
font-size:18px;
margin-bottom:6px;
}

/* TEXTO */

.beneficio p{
font-size:14px;
color:#666;
}

/* ===== RESPONSIVE ===== */

@media (max-width:900px){

.pagos-container{
grid-template-columns:1fr;
}

.pagos-beneficios{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.pagos-beneficios{
grid-template-columns:1fr;
}

.pago-box{
padding:25px;
}

}

/* idioma */

.language-switch{
display:flex;
gap:10px;
margin-left:20px;
font-size:13px;
font-weight:600;
cursor:pointer;
}

.language-switch span{
padding:4px 8px;
border-radius:5px;
transition:0.2s;
}

.language-switch span:hover{
background:black;
color:white;
}

  /* CARD EXPANDIDA */

.product-card.active{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%) scale(1.1);
z-index:9999;
width:420px;
max-width:90%;
box-shadow:0 25px 80px rgba(0,0,0,0.5);
transition:all .3s ease;
}

/* FONDO OSCURO */

.card-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(4px);
z-index:9990;
display:none;
}

.card-overlay.active{
display:block;
}
