


/*===========SECC 1===========*/
.secc1{
    background-image: url('../img/catalogo-detalle/banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 610px;

    margin-top: -115px;
}
.secc1-div{
    height: 100%;
}
.secc1-div-int{

    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.secc1-div-int h1{
    font-weight: bold;
    text-shadow: 0 0 5px black, 0 0 5px black, 0 0 5px black;
}
/*----------------*/
.secc-producto{
    display: flex;
    flex-direction: column;
}
.selector-secc{
}
.producto-vista{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}
/*--------------*/
.contenedor-detalle{
    margin-top: 80px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.div-producto{
    display: flex;
    flex-direction: column;
    width: 40%;
    max-width: 450px;
}
.producto-imagen{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0.5rem;
}
.producto-imagen::after{
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}
/*--------------*/
.producto-textos{
    width: 35%;
}
/*------------*/
.nombre-producto{
    color: #096F59;
    font-weight: bold;
    margin-bottom: 20px;
}
.descripcion-producto p{
    text-align: justify;
    padding-bottom: 10px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.473);
}
.precio-producto{
    margin-top: 20px;
}
.precio-producto h3{
    color: #096F59;
}

/*===========SECC 2===========*/
.secc-boton{
    display: flex;
    margin-bottom: 80px;

    justify-content: flex-end;
    max-width: 1185px;
    padding-right: 100px;
}
.div-boton{

}
.boton-volver{
    background-color: #00522c;
    padding: 1rem 3rem;
    border-radius: 1rem;
    color: white;
    transition: all .1s ease-in-out;
}
.boton-volver:hover{
    transform: scale(1.1) !important;
    color: white;
}

/*================*/
.selector-imagen{
    gap: 10px;
    margin-top: 20px;
    display: flex;
}
.btn-galery-detail{
    height: 5vw;
    width: 5vw;
    max-width: 70px;
    max-height: 70px;
    border: transparent;
    border-radius: 0.7rem;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}





/*===========RESPONSIVE===========*/
@media(max-width: 1090px){
    .secc1{
        margin-top: -160px;
    }
}

@media(max-width: 992px){
    .secc1{
        margin-top: -160px;
    }
    .secc-producto{
        gap: 40px;
    }
    /*----------*/
    .div-producto{
        width: 100%;
    }
    .contenedor-detalle{
        flex-direction: column;
        align-items: center;
    }
    .btn-galery-detail{
        min-width: 40px;
        min-height: 40px;
    }
    .producto-textos{
        max-width: 720px;
        width: 100%;
    }
    .secc-boton{
        max-width: unset;
        padding-right: unset;
        max-width: calc(60% + 280px);
        margin-bottom: 120px;
    }
}

@media(max-width: 768px){
    .secc-boton{
        max-width: 100%;
    }
}
