/* ===================================================================================== */
/* =============================== INDEX.CSS COMPLETO ================================== */
/* ===================================================================================== */

/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', sans-serif;
    overflow-x:hidden;
}

/* ===================================================================================== */
/* ===================================== NAVBAR ======================================== */
/* ===================================================================================== */

.navbar-custom{
    background:transparent;
    transition:0.4s;
}

.navbar-scroll{
    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(10px);
}

/* LINKS */

.navbar-nav .nav-link{
    color:#ffffff !important;
    font-weight:500;
    letter-spacing:0.5px;
    transition:0.3s;
    position:relative;
    margin-left:15px;
}

/* HOVER */

.navbar-nav .nav-link:hover{
    color:#ffc107 !important;
}

/* LINEA */

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#ffc107;
    transition:0.3s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

/* LOGOS */

.logo{
    width:90px;
}

.logo-letras{
    width:120px;
    margin-left:-20px;
}

/* WHATSAPP */

.icono-whatsapp{
    width:40px;
    height:40px;
    margin-left:20px;
}

/* ===================================================================================== */
/* ======================================= HERO ======================================== */
/* ===================================================================================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    overflow:hidden;
    color:white;
}

/* IMAGEN DE FONDO */

.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;

    background:url('../images/portada2.png') center center/cover no-repeat;

    animation:zoomHero 15s ease-in-out infinite alternate;

    z-index:1;
}

/* OVERLAY */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.08);
    z-index:2;
    transition:0.4s;
}

/* CONTENIDO */

.hero-content{
    position:relative;
    z-index:3;

    margin-left:50px;

    max-width:650px;
}

/* TITULO BLANCO */

.hero h1{
    font-size:70px;
    line-height:1;
    font-weight:300;
    margin-bottom:10px;
}

/* DON CAIZA */

.titulo-doncaiza{
    font-size:120px;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

    color:#ffd700;

    line-height:0.9;

    margin-bottom:20px;
}

/* TEXTO */

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

/* BOTON */

.btn-contacto{
    background:#ffc107 !important;
    border:none !important;

    color:#000 !important;

    padding:15px 35px !important;

    border-radius:50px !important;

    font-size:20px !important;

    transition:0.4s;
}

/* HOVER */

.btn-contacto:hover{
    transform:scale(1.05);
}

/* ANIMACION */

@keyframes zoomHero{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.1);
    }

}

/* ===================================================================================== */
/* ==================================== RESPONSIVE ===================================== */
/* ===================================================================================== */

@media(max-width:768px){

    .hero{
        justify-content:center;
        text-align:center;
    }

    .hero-content{
        margin-left:0;
        padding:20px;
    }

    .hero h1{
        font-size:45px;
    }

    .titulo-doncaiza{
        font-size:70px;
    }

    .hero p{
        font-size:18px;
    }

}

/* BOTON */

.btn-contacto{
    border-radius:40px !important;
    padding:12px 30px !important;
    transition:0.3s;
}

.btn-contacto:hover{
    transform:scale(1.05);
}










/* ===================================================================================== */
/* ==================================== informacion nutricional  ======================================= */
.producto-section{
    width:100%;
    padding:60px 10%;
    background:#fff;
    font-family:Arial;
}

.producto-container{
    display:flex;
    gap:20px;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* IZQUIERDA */
.producto-img{
   width: 300px;
    height: 300px;
    background-image: url('../CERDO.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CENTRO */
.producto-info{
    flex:1;
    min-width:250px;
}

.producto-info h2{
    font-size:28px;
    margin-bottom:10px;
}

/* DERECHA */
.producto-tabla{
    flex:1;
    min-width:250px;
}

.producto-tabla h3{
    margin-bottom:15px;
    border-bottom:2px solid orange;
    display:inline-block;
}

.fila{
    display:flex;
    justify-content:space-between;
    padding:8px 0;
    border-bottom:1px solid #eee;
}

/* BOTÓN */
.mas-info-box{
    margin-top:30px;
    text-align:left;
}

.btn-mas{
    background:orange;
    color:#fff;
    border:none;
    padding:10px 20px;
    cursor:pointer;
    border-radius:5px;
    font-size:16px;
}

/* INFO OCULTA */
.info-extra{
    max-height:0;
    overflow:hidden;
    transition:0.5s ease;
    margin-top:10px;
    background:#f9f9f9;
    padding:0 15px;
    border-left:4px solid orange;
}

.info-extra.active{
    max-height:200px;
    padding:15px;
}
/* ===================================================================================== */
/* ==================================== CONTACTO ======================================= */
/* ===================================================================================== */

.contacto{
    padding:100px 20px;
    background:#f8fafc;
}

/* CONTENEDOR */

.contacto-container{
    max-width:650px;
    margin:auto;
}

/* TITULO */

.contacto h2{
    text-align:center;
    font-size:40px;
}

.subtitulo{
    text-align:center;
    margin-bottom:40px;
}

/* FORMULARIO */

.formulario{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* CAMPOS */

.campo{
    margin-bottom:20px;
}

.campo label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}

.campo input,
.campo textarea{
    width:100%;
    padding:14px;
    border:1px solid #ccc;
    border-radius:10px;
    outline:none;
}

/* BOTON */

.btn-enviar{
    width:100%;
    padding:15px;
    border:none;
    background:#22c55e;
    color:#fff;
    border-radius:10px;
    font-size:18px;
    transition:0.3s;
}

.btn-enviar:hover{
    background:#16a34a;
}

/* ===================================================================================== */
/* ====================================== boton transparente ======================================= */
/* ===================================================================================== */


.dropdown-menu{
    background-color: rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.dropdown-item{
    color: #fff !important;
}

.dropdown-item:hover{
    background-color: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

/* ===================================================================================== */
/* ====================================== FOOTER ======================================= */
/* ===================================================================================== */

.footer{
    background:#0f172a;
    color:#fff;
    padding:60px 20px 20px;
}

/* CONTENEDOR */

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

/* TITULOS */

.footer-section h3,
.footer-section h4{
    margin-bottom:20px;
}

/* LINKS */

.footer-section a{
    display:block;
    margin-bottom:10px;
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
}

.footer-section a:hover{
    color:#22c55e;
    transform:translateX(5px);
}

/* FINAL */

.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #334155;
    text-align:center;
}

/* ===================================================================================== */
/* ==================================== RESPONSIVE ===================================== */
/* ===================================================================================== */

@media(max-width:768px){

    .hero{
        justify-content:center;
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

    .titulo-doncaiza{
        font-size:65px;
    }

    .nosotros-content{
        flex-direction:column;
    }

    .nosotros-texto{
        padding:40px 25px;
        text-align:center;
    }

    .historia-box{
        width:90%;
        padding:35px;
    }

    .contenido-carrusel h2{
        font-size:40px;
    }

    .contenido-carrusel p{
        font-size:17px;
        padding:0 20px;
    }

    .botones{
        flex-direction:column;
    }

}