/* Página de Detalle de Producto */

body {
    background-color: #f8f9fa;
}

.producto-detalle-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botón Volver */
.volver-nav {
    padding: 25px 0;
}

.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D88C29;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: rgba(216, 140, 41, 0.1);
    transition: all 0.3s ease;
}

/* Hero */
.producto-hero {
    margin-top: 50px;
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.producto-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.6rem);
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    background-color: #D88C29;
    display: inline;
    padding: 4px 14px;
    border-radius: 25px;
    padding: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.producto-slogan-principal {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #000000;
    font-weight: 600;
    font-style: italic;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e2e2;
    margin-left: 0.5rem;
    display: inline-block;
}


/* Contenido Principal (Descripción + Ventajas) */
.producto-contenido-principal {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    align-items: flex-start;
    margin-top: -2rem;
}

/* Descripción */
.producto-descripcion {
    flex: 1;
    text-align: justify;
    position: relative;
}

.descripcion-texto {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

/* Imagen interna del producto (watermark) */
.producto-imagen-interna {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60%; 
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    transform: translateX(50%);
}

.imagen-interna-img {
    max-height: 130%;
    max-width: 100%;
    object-fit: contain;
    margin-left: 40%;
    
}

/* Ventajas (Badges) */
.producto-ventajas {
    flex-shrink: 0;
    width: 350px;
    margin-left: -30px;
}

.ventajas-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ventaja-badge {
    background-color: transparent;
    color: #1f1f1f;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.ventaja-badge::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    font-weight: 400;
    font-size: 1.1rem;
}

.ventaja-badge:hover {
    transform: scale(1.05);
}

/* Cards Grid */
.producto-cards {
    margin-bottom: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.ventaja-card {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ventaja-card-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}


/* CTA */
.producto-cta {
    text-align: center;
    padding: 40px 0 60px;
    margin-top: -3rem;
}

.producto-cta-btn {
    display: inline-block;
    background-color: #D88C29;
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.producto-cta-btn:hover {
    background-color: #b87520;
    transform: translateY(-3px);
    color: white;
}

.producto-cta-btn:active {
    transform: translateY(0);
}

/* Desktop */
@media screen and (min-width: 1024px) {
    .producto-descripcion{
        padding-right: 20px;
    }
}

/* Tablet */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    .producto-detalle-main {
        padding: 0 30px;
    }

    .producto-contenido-principal {
        flex-direction: column;
        align-items: stretch;
    }

    .producto-descripcion {
        width: 100%;
    }

    .producto-ventajas {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

    .ventajas-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

    .producto-imagen-interna {
        width: 100%;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .imagen-interna-img {
        margin-left: 0;
        max-width: 60%;
        max-height: 80%;
        opacity: 1;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 599px) {
    .producto-detalle-main {
        padding: 0 15px;
    }

    .volver-nav {
        padding: 15px 0;
    }

    .btn-volver {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .producto-hero {
        margin-bottom: 25px;
    }



    .producto-descripcion {
        margin-bottom: 30px;   
    }

    .descripcion-texto {
        font-size: 1rem;
        line-height: 1.7;
        text-align: justify;
    }

    .producto-contenido-principal {
        flex-direction: column;
        gap: 25px;
    }

    .producto-ventajas {
        width: 100%;
        margin-bottom: 30px;
    }

    .producto-imagen-interna {
        width: 100%;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        transform: none;
    }

    .imagen-interna-img {
        margin-left: 0;
        max-width: 80%;
        max-height: 80%;
    }

    .ventajas-container {
        flex-direction: column;
        align-items: stretch;
    }

    .ventaja-badge {
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .producto-cta {
        padding: 30px 0 50px;
    }

    .producto-cta-btn {
        padding: 12px 40px;
        font-size: 1rem;
    }
}
