/**
 * Home Page Styles - Compiled
 * Archivo compilado de estilos para la página de inicio
 * Generado automáticamente - NO EDITAR MANUALMENTE
 * 
 * Para modificar estilos, edita los archivos fuente en:
 * public/assets/css/components/
 * 
 * Luego ejecuta: php scripts/compile-home-css.php
 */

/* Variables CSS Globales */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

/* Estilos Base */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}


/* ============================================ */
/* Component: dropdown-fixes.css */
/* ============================================ */

/**
 * Dropdown Fixes - Override crítico para dropdowns
 * Asegura visibilidad y funcionalidad correcta de menús desplegables
 */

/* Override crítico para dropdown - máxima prioridad */
.dropdown-menu {
    background-color: #ffffff !important;
    color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 1px solid #dee2e6 !important;
    z-index: 9999 !important;
}

.dropdown-menu.show {
    display: block !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item {
    color: #212529 !important;
    background-color: transparent !important;
    padding: 0.5rem 1rem !important;
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    border: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #0d6efd !important;
    color: #ffffff !important;
}

.dropdown-item i {
    color: inherit !important;
}

.dropdown-divider {
    border-top: 1px solid #dee2e6 !important;
    margin: 0.5rem 0 !important;
}

/* Asegurar que el dropdown del usuario sea visible */
.navbar .dropdown-menu {
    z-index: 1050 !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    min-width: 200px;
    background-color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix específico para dropdown de usuario */
#userDropdown {
    position: relative;
    background-color: transparent !important;
    color: #6c757d !important;
    border: 1px solid #6c757d !important;
}

/* Estilo mejorado para items del dropdown */
.dropdown-item {
    padding: 0.75rem 1rem !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.2s ease !important;
    color: #212529 !important;
    background-color: transparent !important;
    text-decoration: none !important;
}

.dropdown-item:hover {
    background-color: var(--bs-primary) !important;
    color: white !important;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: inherit !important;
}

/* Override para asegurar visibilidad completa */
.dropdown-menu * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Forzar color del texto en dropdown */
.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-item * {
    color: #212529 !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:hover * {
    color: #ffffff !important;
}

/* Asegurar que el divider sea visible */
.dropdown-divider {
    border-top: 1px solid #dee2e6 !important;
    margin: 0.5rem 0 !important;
    opacity: 1 !important;
}



/* ============================================ */
/* Component: whatsapp-float.css */
/* ============================================ */

/**
 * WhatsApp Float Button
 * Botón flotante de contacto por WhatsApp
 */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    line-height: 1;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
}



/* ============================================ */
/* Component: hero.css */
/* ============================================ */

/**
 * Hero Section Styles
 * Estilos para la sección hero/banner principal
 */

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Hero Section Responsive Backgrounds */
.hero-slider {
    background-color: #f8f9fa;
}

.hero-slider .container {
    background: url('../../images/slider.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

/* Altura dinámica para el container hero */
.hero-container {
    min-height: 600px;
    /* Por defecto 600px para desktop con imagen */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Estilos específicos para botones del Hero Section */
.hero-container .btn {
    padding: 1rem 1.8rem !important;
    min-height: 56px !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Contenedor de botones del Hero Section */
.hero-container .d-flex {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
    .hero-slider {
        min-height: auto;
        /* Altura automática en móvil */
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        /* Mantener margin-top: 2rem; en móvil */
    }

    .hero-slider .container {
        background: #ffffff !important;
        border-radius: 15px;
        padding: 0.5rem 1rem !important;
        /* Padding mínimo solo para los lados */
        margin: 0 !important;
    }

    /* En móvil, altura automática siempre (sin imagen) */
    .hero-container {
        min-height: auto !important;
        /* Altura automática - se ajusta al contenido del row */
        padding: 0.5rem 0 !important;
        /* Padding mínimo vertical */
        margin: 0 !important;
        display: block !important;
        /* Desactivar flexbox en móvil */
    }

    /* Reducir padding del row interno también */
    .hero-container .row {
        padding: 0 !important;
        margin: 0 !important;
        /* Eliminar todos los paddings y márgenes del row */
    }

    /* Títulos más compactos en móvil */
    .display-4 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .lead {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.3 !important;
    }

    /* Botones del Hero Section en móvil */
    .hero-container .btn {
        padding: 0.9rem 1.2rem !important;
        min-height: 50px !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}



/* ============================================ */
/* Component: search.css */
/* ============================================ */

/**
 * Search Section Styles
 * Estilos para la sección de búsqueda
 */

.search-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Corrección para desplegables de categorías con letra cortada */
.form-select-lg {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    padding: 0.75rem 1rem !important;
}

.form-select-lg option {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    padding: 0.5rem 0.75rem !important;
    height: auto !important;
    min-height: 2.5rem !important;
}

/* Asegurar que el contenido no se corte en mobile */
@media (max-width: 768px) {
    .form-select-lg {
        font-size: 0.95rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .form-select-lg option {
        font-size: 0.95rem !important;
        padding: 0.4rem 0.6rem !important;
        min-height: 2.2rem !important;
    }

    /* Reducir espaciado en search section */
    .search-section {
        padding: 2rem 1.5rem !important;
    }

    /* Optimizar form inputs en móvil */
    .form-select-lg {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.9rem !important;
    }
}

/* Labels de campos con iconos */
.form-label.d-flex {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
}

.form-label.d-flex i {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    width: 1.2rem !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Reglas generales para labels con iconos */
.form-label.d-flex.align-items-center {
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.form-label.d-flex.align-items-center i {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.2rem !important;
    text-align: center !important;
}



/* ============================================ */
/* Component: buttons.css */
/* ============================================ */

/**
 * Buttons Styles
 * Estilos para todos los botones personalizados de la aplicación
 */

/* Botones personalizados de filtros */
.btn-custom-apply {
    background-color: #4673FF !important;
    border-color: #4673FF !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-custom-apply:hover,
.btn-custom-apply:focus,
.btn-custom-apply:active,
.btn-custom-apply.focus,
.btn-custom-apply.active {
    background-color: #3560e6 !important;
    border-color: #3560e6 !important;
    color: white !important;
    box-shadow: 0 0.125rem 0.25rem rgba(70, 115, 255, 0.25) !important;
}

.btn-custom-clear {
    background-color: #ff6b6b !important;
    border-color: #ff6b6b !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn-custom-clear:hover,
.btn-custom-clear:focus,
.btn-custom-clear:active,
.btn-custom-clear.focus,
.btn-custom-clear.active {
    background-color: #ff5252 !important;
    border-color: #ff5252 !important;
    color: white !important;
    box-shadow: 0 0.125rem 0.25rem rgba(255, 107, 107, 0.25) !important;
    text-decoration: none !important;
}

/* Botón primario personalizado */
.btn-primary-custom {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white !important;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    color: white !important;
    transform: translateY(-1px);
}

/* Botón con fondo blanco - mantener siempre blanco */
.btn-white-bg {
    background-color: white !important;
}

.btn-white-bg:hover {
    background-color: white !important;
    color: #4673FF !important;
    border-color: #4673FF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(70, 115, 255, 0.2);
}

.btn-white-bg:focus {
    background-color: white !important;
    color: #4673FF !important;
    border-color: #4673FF !important;
    box-shadow: 0 0 0 0.2rem rgba(70, 115, 255, 0.25);
}

.btn-white-bg:active {
    background-color: white !important;
    color: #4673FF !important;
    border-color: #4673FF !important;
}

/* Estilos para botones con colores fijos */
.btn-fixed-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #fff !important;
}

.btn-fixed-warning:hover,
.btn-fixed-warning:focus,
.btn-fixed-warning:active,
.btn-fixed-warning:visited {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #fff !important;
}

/* Estilo fijo para el botón negro "Únete como Profesional" */
.btn-fixed-black {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.btn-fixed-black:hover,
.btn-fixed-black:focus,
.btn-fixed-black:active,
.btn-fixed-black:visited {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-fixed-white {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.btn-fixed-white:hover,
.btn-fixed-white:focus,
.btn-fixed-white:active,
.btn-fixed-white:visited {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

/* Estilos para botones de la sección de búsqueda */
.btn-fixed-location {
    background-color: #4673FF !important;
    border-color: #4673FF !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0.375rem !important;
    transition: all 0.3s ease !important;
}

.btn-fixed-location:hover,
.btn-fixed-location:focus,
.btn-fixed-location:active,
.btn-fixed-location:visited {
    background-color: #3b5bff !important;
    border-color: #3b5bff !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: 0 4px 12px rgba(70, 115, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

.btn-fixed-location:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
    opacity: 0.8 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-fixed-location .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-fixed-search {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0.375rem !important;
}

.btn-fixed-search:hover,
.btn-fixed-search:focus,
.btn-fixed-search:active,
.btn-fixed-search:visited {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-fixed-apply {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0.375rem !important;
}

.btn-fixed-apply:hover,
.btn-fixed-apply:focus,
.btn-fixed-apply:active,
.btn-fixed-apply:visited {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-fixed-clear {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    border-radius: 0.375rem !important;
}

.btn-fixed-clear:hover,
.btn-fixed-clear:focus,
.btn-fixed-clear:active,
.btn-fixed-clear:visited {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #fff !important;
    background-image: none !important;
    box-shadow: none !important;
    transform: none !important;
}

/* Evitar cambio de color en botones de "No hay resultados" */
.btn-no-hover-effect.btn-success:hover,
.btn-no-hover-effect.btn-success:focus,
.btn-no-hover-effect.btn-success:active {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
}

.btn-no-hover-effect.btn-danger:hover,
.btn-no-hover-effect.btn-danger:focus,
.btn-no-hover-effect.btn-danger:active {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
}

/* Reglas generales para botones con iconos */
.btn.d-flex.align-items-center {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.btn.d-flex.align-items-center i {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1rem !important;
    text-align: center !important;
    order: -1 !important;
}

.btn.d-flex.align-items-center span {
    flex: 1 !important;
    text-align: center !important;
}

/* Responsive para móviles */
@media (max-width: 768px) {

    /* Botones menos altos con iconos a la izquierda en móvil */
    .btn-fixed-location,
    .btn-fixed-search,
    .btn-fixed-apply,
    .btn-fixed-clear,
    .btn-custom-apply,
    .btn-custom-clear {
        padding: 0.5rem 1rem !important;
        height: auto !important;
        min-height: 2.5rem !important;
        font-size: 0.9rem !important;
    }

    .btn-fixed-location i,
    .btn-fixed-search i,
    .btn-fixed-apply i,
    .btn-fixed-clear i,
    .btn-custom-apply i,
    .btn-custom-clear i {
        width: 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Optimización adicional para botones en móvil */
    .btn-lg {
        padding: 0.8rem 1.2rem !important;
        font-size: 0.95rem !important;
        min-height: 48px !important;
    }

    /* Ajustes específicos para botones en móvil */
    .btn-lg.w-100 {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem !important;
        min-height: 2.5rem !important;
    }
}



/* ============================================ */
/* Component: cards.css */
/* ============================================ */

/**
 * Cards Styles
 * Estilos para tarjetas (feature-card, category-card, professional-card, etc.)
 */

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.professional-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.professional-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.category-card .card-content {
    display: flex;
    align-items: center;
    text-align: left;
}

.category-card .text-content {
    flex: 1;
}

/* Estilos para botones de servicios - color azul #4673FF */
.category-card .btn {
    transition: all 0.3s ease;
}

.category-card .btn:hover {
    background-color: #4673FF !important;
    color: white !important;
    border-color: #4673FF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(70, 115, 255, 0.3);
}

.category-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 8px;
    margin-right: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rating-stars {
    color: #fbbf24;
}

.rating-stars .fa-star,
.rating-stars .fa-star-half-alt {
    color: #fbbf24;
}

.rating-stars .fa-star.text-muted,
.rating-stars .fa-star-half-alt.text-muted {
    color: #9ca3af !important;
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Responsive para móviles */
@media (max-width: 768px) {

    /* Reducir espaciado en cards */
    .category-card,
    .feature-card,
    .professional-card {
        padding: 1.5rem !important;
    }
}



/* ============================================ */
/* Component: carousel.css */
/* ============================================ */

/**
 * Carousel Styles
 * Estilos para carruseles móviles (servicios, how-it-works, etc.)
 */

/* Estilos para carruseles móviles */
#servicesCarousel .carousel-inner,
#howItWorksCarousel .carousel-inner {
    padding: 10px 0 20px 0;
}

/* Ajustar el carousel-inner al contenido */
#servicesCarousel .carousel-inner,
#howItWorksCarousel .carousel-inner {
    height: auto;
}

#servicesCarousel .carousel-item,
#howItWorksCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
    height: auto;
    min-height: auto;
}

#servicesCarousel .category-card,
#howItWorksCarousel .feature-card {
    margin: 0 auto;
    max-width: 100%;
}

/* Botones de navegación personalizados debajo del carrusel */
.carousel-nav-btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    transform: scale(1.1);
    background-color: #4673FF !important;
    border-color: #4673FF !important;
    color: white !important;
}

.carousel-nav-btn i {
    font-size: 1.2rem;
}

/* Indicadores del carrusel */
#servicesCarousel .carousel-indicators,
#howItWorksCarousel .carousel-indicators {
    bottom: -35px;
    margin-bottom: 0;
}

#servicesCarousel .carousel-indicators button,
#howItWorksCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    margin: 0 5px;
}

#servicesCarousel .carousel-indicators button.active,
#howItWorksCarousel .carousel-indicators button.active {
    background-color: #4673FF;
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 576px) {

    #servicesCarousel .carousel-item,
    #howItWorksCarousel .carousel-item {
        height: auto;
        min-height: auto;
    }

    #servicesCarousel .category-card,
    #howItWorksCarousel .feature-card {
        padding: 1.5rem !important;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-nav-btn i {
        font-size: 1rem;
    }
}



/* ============================================ */
/* Component: responsive.css */
/* ============================================ */

/**
 * Responsive Styles
 * Estilos responsive para diferentes tamaños de pantalla
 */

/* Responsive para móviles */
@media (max-width: 768px) {

    /* 1. Reducir espacios entre secciones en móvil */
    section {
        padding: 2rem 0 !important;
    }

    section.py-5 {
        padding: 2rem 0 !important;
    }

    section.py-4 {
        padding: 1.5rem 0 !important;
    }

    /* Espaciado optimizado para contenedores */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Optimización específica de espaciado entre elementos */
    .row.g-3 {
        --bs-gutter-x: 1rem !important;
        --bs-gutter-y: 1rem !important;
    }

    .row.g-4 {
        --bs-gutter-x: 1.25rem !important;
        --bs-gutter-y: 1.25rem !important;
    }

    /* Reducir margen en headers de sección */
    .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Reducir padding en row de botones */
    .row.mt-4 {
        margin-top: 1.5rem !important;
    }

    /* Reducir padding en rows */
    .row {
        margin-bottom: 0.5rem !important;
    }

    .mb-5 {
        margin-bottom: 1rem !important;
    }

    .mb-4 {
        margin-bottom: 0.5rem !important;
    }

    .mb-2 {
        margin-bottom: 0.25rem !important;
    }

    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .py-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    /* Reducir espacios en disclaimers y call-to-actions */
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}


