/*==================================================*
 * LA TOXICA RADIO
 * CABINA TOXICA
 * CONTACTO Y REDES
 * VERSION MOVIL
 *==================================================*/


/*==================================================*
 * SECCION
 *==================================================*/

.cabina-section {

    width: 100%;

    margin: 20px 0 0 !important;

    padding: 0 10px 18px !important;

    box-sizing: border-box;

}


/*==================================================*
 * CONTENEDOR
 *==================================================*/

.cabina-contact-grid {

    width: 100%;

    min-height: 132px;

    margin: 0;

    padding: 14px 12px;

    display: grid;

    grid-template-columns:
        58px
        minmax(0, 1fr)
        76px;

    align-items: center;

    column-gap: 12px;

    box-sizing: border-box;

    background: rgba(8, 21, 38, .95);

    border: 1px solid rgba(255, 212, 0, .14);

    border-radius: 16px;

}


/*==================================================*
 * COLUMNA WHATSAPP
 *==================================================*/

.cabina-whatsapp-column {

    width: 58px;

    min-width: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;

}


/*==================================================*
 * BOTON WHATSAPP
 * MANTENER COMO ESTA
 *==================================================*/

.cabina-whatsapp {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    margin: 0;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: #25D366;

    cursor: pointer;

    box-sizing: border-box;

}


.cabina-whatsapp i {

    display: block;

    width: auto;

    height: auto;

    font-size: 32px;

    line-height: 1;

    animation:
        cabinaWhatsAppPulse
        1.5s
        ease-in-out
        infinite;

}


/*==================================================*
 * TEXTO WHATSAPP
 *==================================================*/

.cabina-whatsapp-text {

    display: none !important;

}


.cabina-whatsapp-title,
.cabina-whatsapp-subtitle {

    display: none !important;

}


/*==================================================*
 * ANIMACION WHATSAPP
 *==================================================*/

@keyframes cabinaWhatsAppPulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.15);

        opacity: .68;

    }

}


/*==================================================*
 * COLUMNA INFORMACION
 *==================================================*/

.cabina-info-column {

    width: 100%;

    min-width: 0;

    padding: 0 0 0 12px;

    border-left:
        1px solid
        rgba(255,255,255,.10);

    box-sizing: border-box;

}


/*==================================================*
 * TITULO INFORMACION
 *==================================================*/

.cabina-info-title {

    width: 100%;

    margin: 0 0 9px;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #FFD400;

    font-size: 10px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: .4px;

    white-space: nowrap;

}


.cabina-info-title i {

    flex: 0 0 auto;

    font-size: 10px;

}


/*==================================================*
 * ELEMENTO DE CONTACTO
 *==================================================*/

.cabina-contact-item {

    width: 100%;

    min-width: 0;

    margin: 0 0 8px;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #FFFFFF;

    text-decoration: none;

    box-sizing: border-box;

}


.cabina-contact-item:last-child {

    margin-bottom: 0;

}


/*==================================================*
 * ICONO CONTACTO
 *==================================================*/

.cabina-contact-item > i {

    width: 15px;

    min-width: 15px;

    flex: 0 0 15px;

    color: #FFD400;

    font-size: 10px;

    line-height: 1;

    text-align: center;

}


/*==================================================*
 * BLOQUE TEXTO CONTACTO
 *==================================================*/

.cabina-contact-item > div {

    min-width: 0;

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 3px;

    overflow: hidden;

}


/*==================================================*
 * ETIQUETA
 *==================================================*/

.cabina-contact-label {

    display: block;

    margin: 0;

    padding: 0;

    color: rgba(255,255,255,.48);

    font-size: 7px;

    font-weight: 800;

    line-height: 1;

    white-space: nowrap;

}


/*==================================================*
 * NUMERO / CORREO
 *==================================================*/

.cabina-contact-value {

    display: block;

    width: 100%;

    max-width: 100%;

    margin: 0;

    padding: 0;

    overflow: hidden;

    color: #FFFFFF;

    font-size: 9px;

    font-weight: 800;

    line-height: 1.25;

    white-space: nowrap;

    text-overflow: ellipsis;

}


/*==================================================*
 * COLUMNA REDES
 *==================================================*/

.cabina-social-column {

    width: 76px;

    min-width: 76px;

    padding: 0 0 0 12px;

    border-left:
        1px solid
        rgba(255,255,255,.10);

    box-sizing: border-box;

}


/*==================================================*
 * REDES
 *==================================================*/

.cabina-social-list {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

}


/*==================================================*
 * ICONOS REDES
 *==================================================*/

.cabina-social {

    width: 32px;

    height: 32px;

    min-width: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    color: #FFFFFF;

    font-size: 14px;

    line-height: 1;

    text-decoration: none;

    box-sizing: border-box;

}


.cabina-social:active {

    transform: scale(.90);

}


.cabina-social.facebook:hover {

    background: #1877F2;

}


.cabina-social.instagram:hover {

    background: #E1306C;

}


.cabina-social.tiktok:hover {

    background: #111111;

}


/*==================================================*
 * MODAL
 *==================================================*/

.cabina-modal {

    position: fixed !important;

    inset: 0 !important;

    width: 100% !important;

    height: 100% !important;

    z-index: 999999 !important;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 18px;

    box-sizing: border-box;

    background: rgba(0,0,0,.78);

}


.cabina-modal.active {

    display: flex !important;

}


/*==================================================*
 * CAJA MODAL
 *==================================================*/

.cabina-modal-box {

    position: relative;

    width: 100%;

    max-width: 390px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 24px 20px 20px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(37,211,102,.35);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #10294A 0%,
            #081526 55%,
            #050D18 100%
        );

    color: #FFFFFF;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.70);

}


.cabina-modal-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 70px;

    height: 4px;

    transform: translateX(-50%);

    border-radius: 0 0 6px 6px;

    background: #25D366;

}


/*==================================================*
 * BOTON CERRAR
 *==================================================*/

.cabina-cerrar {

    position: absolute;

    top: 14px;

    right: 14px;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #FFFFFF;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;

}


.cabina-cerrar:active {

    background: #25D366;

    color: #081526;

}


/*==================================================*
 * HEADER MODAL
 *==================================================*/

.cabina-modal-header {

    display: flex;

    align-items: center;

    gap: 13px;

    margin: 8px 38px 22px 0;

}


.cabina-modal-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #25D366;

    color: #FFFFFF;

}


.cabina-modal-icon i {

    font-size: 27px;

}


.cabina-modal-header h3 {

    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 19px;

    font-weight: 900;

    line-height: 1.1;

}


.cabina-modal-header p {

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;

    line-height: 1.4;

}


/*==================================================*
 * FORMULARIO
 *==================================================*/

.cabina-group {

    margin: 0 0 16px;

}


.cabina-group label {

    display: block;

    margin: 0 0 7px;

    color: #25D366;

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .5px;

}


.cabina-group input,
.cabina-group textarea {

    width: 100%;

    display: block;

    box-sizing: border-box;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 12px;

    outline: none;

    background: rgba(255,255,255,.07);

    color: #FFFFFF;

    font-family: Arial, sans-serif;

    font-size: 14px;

}


.cabina-group input {

    height: 48px;

    padding: 0 14px;

}


.cabina-group textarea {

    min-height: 105px;

    padding: 13px 14px;

    resize: none;

    line-height: 1.45;

}


.cabina-group input::placeholder,
.cabina-group textarea::placeholder {

    color: rgba(255,255,255,.40);

}


.cabina-group input:focus,
.cabina-group textarea:focus {

    border-color: #25D366;

    background: rgba(37,211,102,.06);

    box-shadow:
        0 0 0 2px
        rgba(37,211,102,.08);

}


/*==================================================*
 * BOTON ENVIAR
 *==================================================*/

.cabina-button {

    width: 100%;

    min-height: 50px;

    margin-top: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 12px;

    background: #25D366;

    color: #081526;

    font-size: 13px;

    font-weight: 900;

    cursor: pointer;

}


.cabina-button i {

    font-size: 21px;

}


.cabina-button:active {

    transform: scale(.98);

}


/*==================================================*
 * ESTADO
 *==================================================*/

.cabina-status {

    min-height: 16px;

    margin: 10px 0 0;

    text-align: center;

    color: rgba(255,255,255,.70);

    font-size: 11px;

    font-weight: 700;

}


/*==================================================*
 * BLOQUEAR SCROLL
 *==================================================*/

body.cabina-modal-open {

    overflow: hidden !important;

}


/*==================================================*
 * PANTALLAS MUY PEQUENAS
 *==================================================*/

@media (max-width: 360px) {

    .cabina-contact-grid {

        min-height: 128px;

        grid-template-columns:
            50px
            minmax(0, 1fr)
            68px;

        column-gap: 8px;

        padding: 12px 9px;

    }


    .cabina-whatsapp-column {

        width: 50px;

        min-width: 50px;

    }


    .cabina-whatsapp {

        width: 38px;

        height: 38px;

        flex-basis: 38px;

    }


    .cabina-whatsapp i {

        font-size: 29px;

    }


    .cabina-info-column,
    .cabina-social-column {

        padding-left: 8px;

    }


    .cabina-contact-value {

        font-size: 8px;

    }


    .cabina-contact-label {

        font-size: 6px;

    }


    .cabina-info-title {

        font-size: 9px;

    }


    .cabina-social-column {

        width: 68px;

        min-width: 68px;

    }


    .cabina-social {

        width: 29px;

        height: 29px;

        min-width: 29px;

        flex-basis: 29px;

        font-size: 12px;

    }

}


/*==================================================*
 * TABLET
 *==================================================*/

@media (min-width: 768px) {

    .cabina-contact-grid {

        max-width: 900px;

        min-height: 104px;

        margin: 0 auto;

        padding: 14px 18px;

        grid-template-columns:
            100px
            minmax(0, 1fr)
            150px;

    }


    .cabina-whatsapp-column {

        width: 100px;

        min-width: 100px;

    }


    .cabina-info-column {

        padding-left: 16px;

    }


    .cabina-contact-value {

        font-size: 12px;

    }


    .cabina-contact-label {

        font-size: 8px;

    }


    .cabina-info-title {

        font-size: 11px;

    }


    .cabina-social-column {

        width: 150px;

        min-width: 150px;

        padding-left: 16px;

    }


    .cabina-social-list {

        flex-direction: row;

        gap: 10px;

    }


    .cabina-social {

        width: 34px;

        height: 34px;

        min-width: 34px;

        flex-basis: 34px;

        font-size: 14px;

    }

}