/* Fondo oscuro */
.contenedor-modal {
    display: none;
    /* Se activa con JS */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

/* Caja del modal */
.contenido-modal {
    background-color: #fff;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    border: 2px solid #333;
    overflow: hidden;
    position: relative;
    text-align: center;
}

/* Área del título */
.titulo-area-modal {
    padding: 24px 20px 18px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.img-pida-agua {
    width: 70px;
    margin-bottom: 8px;
}

.titulo-modal {
    font-size: 28px;
    font-weight: 900;
    margin: 0;
    color: #111;
}

/* Botón X de cierre */
.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #cc0000;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #ff0000;
}

/* Texto informativo */
.area-modal-redes {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #ddd;
}

.text-info {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
}

/* Contenedor de los 3 botones en fila */
.contact-buttons-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

/* Botón base para los 3 */
.btn-red-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    min-width: 170px;
    flex: 1;
    max-width: 210px;
    transition: transform 0.15s, filter 0.15s;
    text-decoration: none;
}

.btn-red-social:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.btn-red-social img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* Colores individuales */
.btn-whatsapp {
    background-color: #25D366;
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-llamada {
    background-color: #1a7a1a;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.btn-llamada .btn-numero {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

/* Botón Cerrar */
.btn-cerrar {
    padding: 22px 20px;
    border-top: 1px solid #ddd;
}

.btn-modal-cerrar {
    background-color: #ffb330;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 14px 80px;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.15s, filter 0.15s;
}

.btn-modal-cerrar:hover {
    transform: scale(1.03);
    filter: brightness(1.08);
}