﻿
#proceso {
    display: none;
    border: 0px solid red;
    width: 100%;
    min-height: 400px;
    background-color: white;
    margin: 0px;
    /* Centrar el contenido dentro del contenedor */
    flex-direction: column; /* Para apilar elementos verticalmente */
    justify-content: center; /* Centra los elementos horizontalmente */
    align-items: center; /* Centra los elementos verticalmente */
    padding-bottom: 60px;
}

.fotoProducto {
    background-position: center center;
    background-size: auto 90%;
    background-repeat: no-repeat;
}

.productoVenta {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    position: relative; /* necesario para el ::before */
}

    .productoVenta:hover {
        transform: scale(1.025) rotateY(5deg);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .productoVenta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .productoVenta:hover::before {
        opacity: 1;
    }

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 48px;
    line-height: 1;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}


    .scroll-btn:hover {
        background-color: rgba(240, 240, 240, 1);
        transform: translateY(-50%) scale(1.1);
    }

    .scroll-btn.left {
        left: 55px;
    }

    .scroll-btn.right {
        right: 55px;
    }

.flecha {
    display: inline-block;
    transform: translateY(-6px); /* Ajuste óptico */
}

.scroll-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
    transform: translateY(-50%) scale(1); /* desactiva hover */
}



.navbar-fixed-top {
    top: auto;
}

#mobiriseBanner.container-banner {
}

    #mobiriseBanner.container-banner.container-banner-closing {
    }

#mobiriseBanner .banner {
    min-height: 0rem;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    opacity: 1;
    z-index: 1031;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: top 1s ease; /* Transición suave de 1 segundo */
}

    #mobiriseBanner .banner p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        animation: none;
        visibility: visible;
    }

#mobiriseBanner .buy-license {
    text-decoration: underline;
}

#mobiriseBanner .banner .btn {
    margin: 0.3rem 0.5rem;
    visibility: visible;
}

.navbar.opened {
    z-index: 1032;
}

#pImporteTotal {
    width: 100%;
    text-align: center;
    margin: 20px 0px;
    font-size: 22px;
}


/* Estilos generales del formulario */
form {
    font-family: Arial, sans-serif;
    margin: 20px;
    display: flex;
    flex-direction: column; /* Asegura que los elementos estén en columnas */
    gap: 15px; /* Espaciado entre las filas */
}

/* Estilos de las etiquetas */
.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    color: #333;
    position: relative;
}

    /* Ocultar el input radio original */
    .custom-radio input[type="radio"] {
        display: none;
    }

/* Estilo del contenedor circular */
.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    /* Punto central cuando está seleccionado */
    .radio-button::after {
        content: "";
        width: 12px;
        height: 12px;
        background-color: #333;
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

/* Cambios cuando se selecciona el radio */
.custom-radio input[type="radio"]:checked + .radio-button::after {
    opacity: 1;
    transform: scale(1);
}

/* Hover para animación */
.custom-radio:hover .radio-button {
    border-color: #0056b3;
}

/* Ajuste adicional para accesibilidad */
.custom-radio:focus-within .radio-button {
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.logout-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('https://cdn-icons-png.flaticon.com/512/1828/1828479.png') no-repeat center;
    background-size: cover;
    margin:0px 10px;
}


.panding-3 {
    padding: 0px;
}

/*-------------------------------------------------------------------------------*/
@media(max-width: 767px) {
    #mobiriseBanner.container-banner {
        height: 12rem;
    }

    #mobiriseBanner .banner {
        min-height: 12rem;
    }
}