* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1f1e1e;
}

.logo-mobile h1 {
    color: white;
}

.nav-link {
    color: black;
}

.titulo-producto h1 {
    color: black;
}

.contactanos-link {
    color: black;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    max-width: 1920px;
    margin: 0 auto;
}

/* Banner del producto */
.producto-banner {
    background-color: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.producto-imagen {
    max-width: 1466px;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Introducción y Conclusión */
.introduccion,
.conclusion {
    padding: 60px 30px;
    max-width: 1670px;
    margin: 0 auto;
}

.introduccion p,
.conclusion p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
}

/* Tarjetas de información */
.tarjeta-informacion {
    max-width: 1746px;
    margin: 60px auto;
    padding: 30px 24px;
    background-color: #fbfbfb;
    border-radius: 26px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.icono-contenedor {
    flex-shrink: 0;
    width: 228px;
    height: 228px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icono {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.contenido-texto {
    flex: 1;
}

.contenido-texto h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #955f39;
    margin-bottom: 30px;
}

.contenido-texto p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
}

.lista-publico {
    list-style: none;
    margin-top: 15px;
}

.lista-publico li {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    padding: 5px 0;
}

/* Forma de consumo */
.forma-consumo {
    max-width: 1219px;
    margin: 80px auto;
    padding: 40px 30px;
    background-color: #fbfbfb;
    border-radius: 26px;
}

.consumo-header {
    margin-bottom: 50px;
    padding: 0 20px;
}

.consumo-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
}

.consumo-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #262524;
}

.consumo-opciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 0 20px;
}

.opcion-card {
    background-color: #fff7ed;
    border-radius: 19px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.opcion-card:hover {
    transform: translateY(-5px);
}

.opcion-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #ce9e60;
    margin-bottom: 25px;
}

.producto-img {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.producto-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1200px) {
    .titulo-producto h1 {
        font-size: 36px;
    }

    .nav-link,
    .contactanos-link {
        font-size: 18px;
    }

    .contenido-texto h2 {
        font-size: 30px;
    }

    .contenido-texto p,
    .lista-publico li {
        font-size: 20px;
    }

    .consumo-header h2 {
        font-size: 30px;
    }

    .opcion-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .header-contenedor {
        flex-wrap: wrap;
    }

    .titulo-producto {
        order: -1;
        width: 100%;
        text-align: center;
    }

    .tarjeta-informacion {
        flex-direction: column;
        text-align: center;
    }

    .icono-contenedor {
        width: 180px;
        height: 180px;
    }

    .icono {
        width: 120px;
        height: 120px;
    }

    .consumo-opciones {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .introduccion p,
    .conclusion p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .producto-imagen {
        min-height: 300px;
    }

    .introduccion,
    .conclusion {
        padding: 40px 20px;
    }

    .introduccion p,
    .conclusion p {
        font-size: 18px;
    }

    .tarjeta-informacion {
        margin: 40px 15px;
        padding: 25px 20px;
    }

    .contenido-texto h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contenido-texto p,
    .lista-publico li {
        font-size: 18px;
    }

    .forma-consumo {
        margin: 40px 15px;
        padding: 30px 15px;
    }

    .consumo-header h2 {
        font-size: 26px;
    }

    .consumo-intro {
        font-size: 18px;
    }

    .opcion-card h3 {
        font-size: 24px;
    }

    .producto-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .icono-contenedor {
        width: 150px;
        height: 150px;
    }

    .icono {
        width: 100px;
        height: 100px;
    }

    .contenido-texto h2 {
        font-size: 22px;
    }

    .contenido-texto p,
    .lista-publico li {
        font-size: 16px;
    }

    .consumo-header h2 {
        font-size: 22px;
    }

    .opcion-card h3 {
        font-size: 20px;
    }

    .opcion-card {
        padding: 20px;
    }
}