.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.industrial-card {
    border: 1px solid #E2E8F0;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industrial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 16px rgba(10, 25, 47, 0.08);
}

.active-nav {
    border-bottom: 2px solid #b6171e;
}

body {
    min-height: max(884px, 100dvh);
}

/* Estilos generales del Footer */
.site-footer {
    background-color: #121212;
    color: #b0b0b0;
    padding: 60px 20px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid #b30000; /* Línea roja distintiva de Camporsal */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-info h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    color: #e60000;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Estilo de los elementos de contacto */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    background-color: #1f1f1f;
    color: #e60000;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item strong {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 13px;
    margin: 0;
}

/* Contenedor principal del desplegable */
.whatsapp-dropdown {
    position: relative;
    width: 100%;
}

/* Estilo del botón principal (reutiliza el diseño que ya tienes) */
.whatsapp-btn-main {
    width: 100%;
    background-color: #b30000; /* Color rojo corporativo de Camporsal */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.whatsapp-btn-main:hover {
    background-color: #800000;
}

/* Menú flotante con los 3 números (inicialmente oculto) */
.whatsapp-menu {
    display: none;
    position: absolute;
    bottom: 110%; /* Se despliega hacia arriba de la tarjeta */
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    overflow: hidden;
}

/* Clase que activará JavaScript para mostrar el menú */
.whatsapp-dropdown.active .whatsapp-menu {
    display: block;
}

.whatsapp-menu-title {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: bold;
    color: #555;
    background: #f4f4f4;
    border-bottom: 1px solid #eee;
    text-align: center;
}

/* Opciones de cada asesor */
.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f9f9f9;
    transition: background 0.2s;
}

.whatsapp-option:hover {
    background-color: #f1f1f1;
    color: #25d366; /* Color verde WhatsApp al pasar el mouse */
}

.whatsapp-option i {
    color: #25d366;
    font-size: 16px;
}