/* Estilos Modernos */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

/* Nueva Fila para Logo + Horario + Pagos */
.main-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
}

.business-hours {
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

/* Contenedor de iconos */
.social-icons {
    display: flex;
    align-items: center;
}

/* Estilo base para los botones sociales */
.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Esto los hace circulares */
    color: white !important; /* Icono en blanco */
    margin-right: 10px;
    text-decoration: none !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1); /* Efecto de aumento al pasar el mouse */
    opacity: 0.9;
}

/* Colores de marca */
.btn-fb { background-color: #1877f2; }
.btn-ig { background-color: #e4405f; }
.btn-tk { background-color: #000000; }
.btn-yt { background-color: #ff0000; }

/* Ajuste del correo para que combine */
.email-text {
    margin-left: 10px;
    font-weight: 500;
    color: #444;
}


.btn-whatsapp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    /* La línea de animación ha sido eliminada */
}

/* También puedes limpiar el hover */
.btn-whatsapp:hover { background-color: #128c7e; }

/* Tamaños de los elementos internos */
.ws-icon { font-size: 24px; margin-bottom: 4px; }
.ws-label { font-size: 11px; text-transform: uppercase; }
.ws-number { font-size: 16px; font-weight: 800; margin-top: 2px; }

.btn-whatsapp i { margin-right: 8px; }


.payment-icons img { 
    height: 25px; /* Reducimos ligeramente para que no estiren la barra superior */
    margin-left: 10px;
    vertical-align: middle;
}

/* Contenedor principal: Alineación vertical perfecta */
.cta-container {
    display: flex;
    align-items: center; 
    gap: 15px; /* Un poco más de espacio entre la operadora y el texto */
}

/* Imagen agrandada */
.operator-img {
    height: 85px;
    width: auto;
}

/* Grupo de texto: Centrado de todos sus elementos */
.text-group {
    display: flex;
    flex-direction: column;
    align-items: center; /* Esto centra horizontalmente el texto y el enlace */
    justify-content: center;
    line-height: 1.2;
}

/* Ajustamos el link de WhatsApp */
.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 16px; /* Ajuste para equilibrar con el marco */
}

.question-text {
    color: #d32f2f;
    font-weight: 800;
    font-size: 13px; /* Ajuste ligero para que entre mejor en el marco */
    margin-bottom: 2px;
}

.whatsapp-link i {
    color: #25d366;
    font-size: 24px;
    margin-right: 8px;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #25d366; /* Borde verde temático */
    border-radius: 20px;       /* Esquinas curvas */
    padding: 8px 15px;         /* Espaciado interno */
    background-color: #ffffff; /* Fondo blanco */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra suave para darle volumen */
}

/* Nuevo estilo para el llamado a la acción */
.cta-highlight {
    background-color: #25d366; /* Fondo verde */
    color: #ffffff;           /* Texto blanco */
    padding: 2px 10px;        /* Pequeño espacio interno */
    border-radius: 12px;      /* Bordes redondeados */
    font-size: 11px;          /* Tamaño legible pero compacto */
    font-weight: 700;         /* Negrita para que resalte */
    margin-top: 6px;          /* Espacio respecto al número */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bloque de Contacto Directo */
.contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.contact-label {
    color: #d32f2f;
    font-weight: 800;
    font-size: 13px; /* Reducido de 15px a 13px para mejor armonía */
    letter-spacing: 0.5px;
}

.contact-numbers {
    color: #2c3e50;
    font-weight: 700;
    font-size: 15px; /* Reducido de 18px a 15px para dar más aire */
    margin-top: 2px;
}

/* Estilo para el email dentro del bloque de contacto */
.contact-email {
    display: flex;
    align-items: center;
    color: #444; /* Un gris oscuro para que sea legible pero no compita con los números */
    font-size: 13px; /* Un poco más pequeño que los números */
    text-decoration: none;
    margin-top: 5px; /* Separación respecto a los números */
    transition: color 0.3s;
}

.contact-email i {
    margin-right: 6px;
    font-size: 12px;
}

.contact-email:hover {
    color: #2c3e50; /* Oscurece al pasar el mouse */
}

