/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.4.1757598635
Updated: 2025-09-11 13:50:35

*/

/* Botón azul personalizado */
.btn-azul {
    color: #1E3649 !important;
    border-width: 0px !important;
    border-radius: 0px;
    font-size: 25px;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
    background-color: #769FCE;
    text-decoration: none; /* opcional, elimina subrayado si es un <a> */
    display: inline-block; /* asegura comportamiento tipo botón */
    padding: 12px 30px; /* opcional, ajusta espacio interno */
    transition: color 0.2s ease, background-color 0.2s ease; /* transición suave */
}

/* Hover: cambia el color del texto */
.btn-azul:hover {
    color: #ffffff !important;
}

/* Botón blanco personalizado */
.btn-oscuro {
    color: #ffffff !important; /* texto blanco en estado normal */
    border-width: 0px !important;
    border-radius: 0px;
    font-size: 25px;
    font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 900 !important;
    font-style: italic !important;
    background-color: #1E3649; /* fondo oscuro */
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Hover: invierte colores */
.btn-oscuro:hover {
    color: #1E3649 !important; /* texto oscuro */
    background-color: #ffffff; /* fondo blanco */
}