html{
    scroll-behavior:smooth;
}
/*=========================================
RESET
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf8f5;
    color:#333;
    overflow-x:hidden;
}

/*=========================================
HEADER
=========================================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

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

.navbar{

    width:90%;
    max-width:1400px;
    margin:auto;

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

    height:95px;

}

.logo img{

    height:72px;
    transition:.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

.navbar ul{

    display:flex;
    list-style:none;
    gap:45px;

}

.navbar ul li{

    list-style:none;

}

.navbar ul li a{

    text-decoration:none;
    color:#2d2d2d;
    font-size:18px;
    font-weight:600;
    transition:.35s;

}

.navbar ul li a:hover{

    color:#9B632C;

}

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

.hero{

    position:relative;

    overflow:hidden;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:120px 20px 40px;

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:95px;

    line-height:1.05;

    margin-bottom:25px;

    text-shadow:0 10px 25px rgba(0,0,0,.45);

}

.hero p{

    font-size:27px;

    line-height:1.7;

    margin-bottom:45px;

    text-shadow:0 5px 18px rgba(0,0,0,.4);

}

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

.botones{

    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;

}

.btn{

    display:inline-block;

    padding:18px 45px;

    border-radius:60px;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:#9B632C;

    color:white;

}

.btn-primary:hover{

    background:#7a4d25;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:#222;

    transform:translateY(-4px);

}

/*=========================================
HISTORIA
=========================================*/

.historia{

    padding:120px 10%;
    background:#faf8f5;

}

.historia-contenedor{

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;

}

.historia-imagen{

    text-align:center;

}

.historia-imagen img{

    width:100%;
    max-width:420px;

    transition:.5s;

}

.historia-imagen img:hover{

    transform:scale(1.05);

}

.historia-texto h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    color:#222;

}

.linea{

    width:100px;
    height:4px;

    background:#9B632C;

    margin:20px 0 35px;

}

.historia-texto p{

    font-size:19px;

    line-height:1.9;

    margin-bottom:25px;

    color:#555;

}

/*=========================================
PRODUCTOS
=========================================*/

.productos{

    padding:120px 8%;

    background:white;

}

.titulo-seccion{

    text-align:center;

    margin-bottom:70px;

}

.titulo-seccion h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    color:#222;

}

.titulo-seccion p{

    margin-top:15px;

    font-size:20px;

    color:#666;

}

.contenedor-productos{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    max-width:1400px;

    margin:auto;

}

.card-producto{

    background:white;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.card-producto:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.card-producto img{

    width:220px;

    margin-bottom:25px;

    transition:.4s;

}

.card-producto:hover img{

    transform:scale(1.08);

}

.card-producto h3{

    font-size:28px;

    margin-bottom:15px;

}

.card-producto p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

}

.card-producto h4{

    font-size:30px;

    color:#9B632C;

    margin-bottom:30px;

}

/*=========================================
VIDEO HERO
=========================================*/

.video-fondo{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;

}

.hero::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

    z-index:-1;

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

.beneficios{

    padding:120px 8%;

    background:#f5f2ed;

}

.contenedor-beneficios{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.beneficio{

    background:white;

    padding:50px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.beneficio:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.beneficio i{

    font-size:55px;

    color:#9B632C;

    margin-bottom:25px;

}

.beneficio h3{

    font-size:28px;

    margin-bottom:20px;

}

.beneficio p{

    color:#666;

    line-height:1.8;

}

/*=========================================
GALERÍA
=========================================*/

.galeria{

    padding:120px 8%;

    background:white;

}

.contenedor-galeria{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:60px;

}

.imagen-galeria{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.imagen-galeria img{

    width:100%;

    height:350px;

    object-fit:cover;

    transition:.6s;

}

.imagen-galeria:hover img{

    transform:scale(1.12);

}

/*=========================================
PROCESO DEL CAFÉ
=========================================*/

.proceso-cafe{

    padding:120px 8%;

    background:#f8f6f2;

}

.contenedor-proceso{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:60px;

}

.video-proceso video{

    width:100%;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.texto-proceso h3{

    font-family:'Cormorant Garamond', serif;

    font-size:60px;

    line-height:1.1;

    margin-bottom:30px;

    color:#222;

}

.texto-proceso p{

    font-size:20px;

    line-height:1.8;

    color:#666;

    margin-bottom:30px;

}

.texto-proceso ul{

    list-style:none;

}

.texto-proceso ul li{

    font-size:20px;

    margin-bottom:20px;

    color:#444;

}

/*=========================================
TESTIMONIOS
=========================================*/

.testimonios{

    padding:120px 8%;

    background:white;

}

.contenedor-testimonios{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.card-testimonio{

    background:#f8f6f2;

    padding:45px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.card-testimonio:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.estrellas{

    color:#c48b36;

    font-size:28px;

    margin-bottom:25px;

}

.card-testimonio p{

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:30px;

    font-style:italic;

}

.card-testimonio h4{

    font-size:24px;

    color:#222;

    margin-bottom:8px;

}

.card-testimonio span{

    color:#888;

}

/*=========================================
CONTACTO
=========================================*/

.contacto{

    padding:120px 8%;

    background:#f8f6f2;

}

.contenedor-contacto{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:60px;

}

.info-contacto{

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.info-contacto h3{

    font-size:40px;

    margin-bottom:30px;

}

.info-contacto p{

    font-size:22px;

    margin-bottom:25px;

    color:#555;

}

.info-contacto i{

    color:#9B632C;

    margin-right:12px;

}

.formulario-contacto{

    background:white;

    padding:50px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.formulario-contacto input,
.formulario-contacto textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:18px;

}

.formulario-contacto textarea{

    min-height:180px;

    resize:none;

}

/*=========================================
WHATSAPP FLOTANTE
=========================================*/

.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:75px;

    height:75px;

    z-index:1000;

    transition:.3s;

}

.whatsapp img{

    width:100%;

}

.whatsapp:hover{

    transform:scale(1.15);

}

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

.footer{

    background:#1b1b1b;

    color:white;

    padding:80px 20px;

    text-align:center;

}

.footer img{

    width:120px;

    margin-bottom:20px;

}

.footer h3{

    font-size:36px;

    margin-bottom:20px;

}

.footer p{

    color:#cfcfcf;

    margin-bottom:20px;

}

.redes{

    display:flex;

    justify-content:center;

    gap:30px;

    margin:30px 0;

}

.redes a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

.redes a:hover{

    color:#9B632C;

}

.footer hr{

    border:none;

    height:1px;

    background:#444;

    max-width:800px;

    margin:30px auto;

}

/*=========================================
BOTÓN COMPRAR
=========================================*/

.btn-comprar{

    display:inline-block;

    margin-top:25px;

    background:#9b632c;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-comprar:hover{

    background:#7d4f23;

    transform:translateY(-4px);

}