:root {
            /* PALETA DE COLORES */
            --facilita-blue-main: #2f3a67;
            --facilita-green-light: #83ba46;
            --facilita-green-dark: #254f58;
            --facilita-text-title: #2a3968;
            --facilita-text-body: #364573;
            --facilita-bg-light: #f4f6f8;
            --white: #ffffff;
        }
        
         body {
            font-family: 'Open Sans', sans-serif;
            color: var(--facilita-text-body);
            overflow-x: hidden;
            background-color: #fff;
            padding-top: 100px;
            zoom: 125%; 
        }
        
        h1, h2, h3, h4, h5, .btn {
            font-family: 'Montserrat', sans-serif;
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(47, 58, 103, 0.1);
            padding: 10px 0;
            height: 100px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img {
            max-height: 70px;
            width: auto;
        }
        
        .nav-link {
            color: var(--facilita-text-title);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            padding: 0 12px !important;
            transition: color 0.3s;
        }
        
        /* Corrección Menú Activo */
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: var(--facilita-green-light) !important;
        }

        .btn-nav-aula {
            border: 2px solid var(--facilita-green-light);
            color: var(--facilita-green-light) !important;
            background: transparent;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-nav-aula:hover {
            background-color: var(--facilita-green-light);
            color: white !important;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(47, 58, 103, 0.9), rgba(42, 57, 104, 0.85)), url(../img/portada.avif);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            overflow: hidden;
            color: white;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 20px;
        }
        
        .hero-title b {
            color: var(--facilita-green-light);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            font-weight: 500;
            border-left: 4px solid var(--facilita-green-light);
            padding-left: 15px;
        }
        
        .hero-bullets {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .hero-bullets li {
            margin-bottom: 10px;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }
        
        .hero-bullets i {
            color: var(--facilita-green-light);
            margin-right: 10px;
            background: white;
            border-radius: 50%;
            padding: 2px;
        }

        /* Formulario Flotante */
        .form-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            border-top: 6px solid var(--facilita-green-light);
            max-width: 380px;
            margin-left: auto;
        }
        
        .form-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--facilita-blue-main);
        }
        
        .form-header span {
            font-size: 0.9rem;
            color: var(--facilita-text-body);
            display: block;
            margin-bottom: 20px;
        }
        
        .form-control {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        
        .form-control:focus {
            background-color: #fff;
            border-color: var(--facilita-blue-main);
            box-shadow: 0 0 0 3px rgba(47, 58, 103, 0.1);
        }
        
        .btn-submit {
            background-color: var(--facilita-blue-main);
            color: white;
            width: 100%;
            padding: 12px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .btn-submit:hover {
            background-color: #1a2345;
            transform: translateY(-2px);
        }

        /* --- AREAS SECTION (CATEGORÍAS) --- */
        .areas-section {
            padding: 80px 0;
            background-color: var(--facilita-bg-light);
        }

        .section-title {
            text-align: center;
            color: var(--facilita-blue-main);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 50px;
        }

        .category-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #eee;
            position: relative;
            text-decoration: none;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(47, 58, 103, 0.15);
            border-color: var(--facilita-green-light);
        }

        .cat-img-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .cat-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .category-card:hover .cat-img-wrapper img {
            transform: scale(1.1);
        }

        .category-body {
            padding: 30px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .category-title {
            color: var(--facilita-blue-main);
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .category-desc {
            color: var(--facilita-text-body);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .btn-category {
            color: var(--facilita-green-light);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-category i {
            margin-left: 8px;
            transition: 0.3s;
        }

        .category-card:hover .btn-category i {
            transform: translateX(5px);
        }

        /* --- SERVICIOS --- */
        .services-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            color: var(--facilita-blue-main);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .section-header .divider {
            height: 4px;
            width: 60px;
            background-color: var(--facilita-green-light);
            margin: 0 auto 20px;
            border-radius: 2px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #eee;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(47, 58, 103, 0.15);
            border-bottom: 4px solid var(--facilita-green-light);
        }
        
        .icon-box {
            width: 80px;
            height: 80px;
            background: rgba(47, 58, 103, 0.1);
            color: var(--facilita-blue-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        /* Agregado: Animación suave para el icono interior */
        .icon-box i {
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .service-card:hover .icon-box {
            background: var(--facilita-blue-main);
            color: white;
            box-shadow: 0 0 20px rgba(131, 186, 70, 0.5); /* Resplandor al hover */
        }

        /* Agregado: Giro de 360 grados y aumento al pasar el mouse */
        .service-card:hover .icon-box i {
            transform: rotate(360deg) scale(1.2);
        }
        
        .service-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--facilita-text-title);
        }
        
        .service-card .btn-link {
            color: var(--facilita-blue-main);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .service-card:hover .btn-link {
            color: var(--facilita-green-light);
        }

        /* --- LEMA TEXTO --- */
        .lema-title {
            font-size: 3rem;
            font-weight: normal;
            color: #2b3968;
            text-transform: none;
            margin: 0;
            line-height: 1.1;
        }

        /* --- NUESTRO SELLO --- */
        .sello-section {
            padding: 40px 0 100px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .sello-decor-right {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--facilita-blue-main);
            transform: rotate(45deg);
            opacity: 0.05;
            z-index: 0;
        }
        
        .sello-decor-left {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: var(--facilita-green-light);
            transform: rotate(45deg);
            opacity: 0.1;
            z-index: 0;
        }
        
        .sello-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--facilita-blue-main);
            text-transform: uppercase;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }
        
        .sello-header h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: var(--facilita-green-light);
            margin: 15px auto 0;
        }
        
        .sello-item {
            position: relative;
            padding-left: 80px;
            margin-bottom: 60px;
            z-index: 1;
        }
        
        .sello-diamond {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--facilita-green-light);
            transform: rotate(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 3px 3px 0px var(--facilita-green-dark);
            transition: all 0.3s ease;
            border: 2px solid var(--white);
        }
        
        .sello-item:nth-child(even) .sello-diamond {
            background: var(--facilita-green-dark);
            box-shadow: 3px 3px 0px var(--facilita-green-light);
        }
        
        .sello-item:hover .sello-diamond {
            transform: rotate(225deg) scale(1.1);
        }
        
        .sello-diamond i {
            color: white;
            font-size: 1.5rem;
            transform: rotate(-45deg);
        }
        
        .sello-title {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--facilita-text-title);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }
        
        .sello-desc {
            font-size: 0.9rem;
            color: var(--facilita-text-body);
            line-height: 1.6;
            text-align: justify;
        }

        /* --- ORIENTACIÓN / CTA --- */
        .training-cta-section {
            position: relative;
            background: linear-gradient(to right, rgba(244, 246, 248, 0.95), rgba(255, 255, 255, 0.85)), url(../img/acercade.jpg);
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            border-left: 0x solid var(--facilita-blue-main);
        }
        
        .training-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--facilita-text-title);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .btn-training {
            background-color: var(--facilita-green-light);
            color: white;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 20px rgba(122, 184, 0, 0.3);
            transition: all 0.3s;
        }
        
        .btn-training:hover {
            background-color: #659900;
            color: white;
            transform: translateY(-2px);
        }

        /* --- PLATAFORMA --- */
        .platform-section {
            padding: 80px 0;
            background-color: var(--facilita-bg-light);
        }
        
        .platform-title {
            text-align: center;
            color: var(--facilita-blue-main);
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            display: flex;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .feature-list i {
            color: var(--facilita-green-light);
            font-size: 1.5rem;
            margin-right: 20px;
            margin-top: 5px;
        }

        .enlace-discreto {
            color: inherit; 
            text-decoration: none; 
            transition: all 0.3s ease; 
            display: inline-block;
        }

        .enlace-discreto:hover {
            color: var(--facilita-blue-main, #0056b3); 
            text-shadow: 0 0 8px rgba(0, 86, 179, 0.4); 
            transform: translateX(4px); 
        }

        /* --- ESTADÍSTICAS / CERTIFICACIONES --- */
        .stats-section {
            padding: 60px 0;
            background: var(--facilita-bg-light);
            border-top: 1px solid #eee;
        }
        
        .cert-img {
            width: 100%;
            max-width: 150px;
            height: auto;
            object-fit: contain;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 10px;
            border: 2px solid transparent;
            background-color: #f4f6f8;
        }
        
        .cert-img:hover {
            transform: scale(1.05);
            border-color: var(--facilita-blue-main);
            box-shadow: 0 8px 20px rgba(47, 58, 103, 0.15);
        }

        /* --- FAQ --- */
        .faq-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--facilita-blue-main);
            background-color: #e9f2f9;
            box-shadow: none;
            font-weight: 700;
        }

        /* --- CARRUSEL CLIENTES --- */
        .clients-section {
            padding: 60px 0;
            background: #fff;
            border-top: 5px solid var(--facilita-blue-main);
            border-bottom: 5px solid var(--facilita-green-light);
            overflow: hidden;
        }
        
        .clients-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .clients-header h4 {
            color: var(--facilita-blue-main);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        
        .slider-track {
            display: flex;
            width: calc(200px * 30);
            animation: scroll 75s linear infinite;
        }
        
        .client-logo {
            width: 200px;
            padding: 15px;
            margin: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: all 0.3s ease;
            border-radius: 10px;
            border: 2px solid transparent;
            background-color: #fff;
        }
        
        .client-logo:hover {
            transform: scale(1.05);
            border-color: var(--facilita-blue-main);
            box-shadow: 0 8px 20px rgba(47, 58, 103, 0.15);
            filter: brightness(1.1);
        }
        
        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 15)); }
        }

        /* --- FOOTER --- */
        footer {
            background-color: #2b3968 !important;
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 30px;
        }
        
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        
        footer a:hover {
            color: var(--facilita-green-light);
            text-decoration: underline;
        }
        
        .footer-logo-bg {
            background: transparent;
            padding: 0;
            display: inline-block;
            margin-bottom: 20px;
            max-width: 250px;
        }
        
        .footer-logo-bg img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .footer-icon {
            color: var(--facilita-green-light);
            margin-right: 10px;
        }

        /* WhatsApp */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 999;
            transition: 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        @media(max-width: 991px) {
            .hero {
                text-align: center;
                padding: 40px 0;
            }
            .hero-subtitle {
                border: none;
                padding: 0;
            }
            .hero-bullets {
                justify-content: center;
            }
            .form-card {
                margin: 40px auto 0;
                max-width: 100%;
            }
            .navbar-slogan {
                display: none;
            }
            .row-cols-lg-5>* {
                flex: 0 0 50%;
                width: 50%;
            }
            .lema-title {
                font-size: 2.2rem;
            }
        }

         /* --- MAPA Y TOOLTIP --- */

        .map-section {
            padding: 80px 0;
            background-color: #fff;
            overflow: hidden;
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            height: 520px;
            background-color: #f4f6f8;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #svg-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative; 
        }

        #svg-container svg {
            width: auto; 
            height: 100%; 
            max-width: 100%; 
            display: block; 
        }
        
        path {
            transition: fill 0.3s ease;
            fill: #2b3968;
            stroke: #fff;
            stroke-width: 0.5px;
        }
        
        path:hover {
            fill: var(--facilita-green-light) !important;
            cursor: pointer;
            opacity: 1 !important;
        }
        
        [id^="ciudad-"] {
            cursor: pointer !important;
            pointer-events: all !important;
            transform-box: fill-box;    
            transform-origin: center;   
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        [id^="ciudad-"]:hover {
            fill: #ff9900 !important;
            transform: scale(1.5) translateY(-5px); 
            filter: drop-shadow(0px 5px 5px rgba(0,0,0,0.4));
        }
        
        #map-tooltip {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.98);
            color: var(--facilita-text-body);
            padding: 15px; 
            border-radius: 10px;
            width: 260px;          
            max-height: 200px;     
            overflow-y: auto;      
            pointer-events: auto;  
            z-index: 1000;         
            display: none;         
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); 
            border-top: 5px solid var(--facilita-green-light);
            text-align: left;
        }

        #map-tooltip::-webkit-scrollbar {
            width: 8px; 
        }
        #map-tooltip::-webkit-scrollbar-track {
            background: #f1f1f1; 
            border-radius: 4px;
        }
        #map-tooltip::-webkit-scrollbar-thumb {
            background: #ccc; 
            border-radius: 4px;
            border: 2px solid #f1f1f1; 
        }
        #map-tooltip::-webkit-scrollbar-thumb:hover {
            background: var(--facilita-blue-main); 
        }
        
        #map-tooltip h5 {
            color: var(--facilita-blue-main);
            font-weight: 800;
            font-size: 1rem;
            margin-bottom: 10px;
            border-bottom: 2px solid #eee;
            padding-bottom: 5px;
            line-height: 1.2;
            margin-right: 5px; 
        }
        
        #map-tooltip strong {
            display: block;
            color: var(--facilita-green-dark);
            font-size: 0.8rem;
            margin-top: 10px;
            margin-bottom: 5px;
            text-transform: uppercase;
            font-weight: 700;
        }
        
        #map-tooltip ul {
            padding-left: 18px;
            margin-bottom: 0;
            font-size: 0.85rem;
            line-height: 1.4;
            color: #555;
        }
        
        #map-tooltip .tooltip-logos {
            display: flex;
            gap: 8px;
            margin-top: 8px;
            flex-wrap: wrap;
            padding-bottom: 5px;
        }
        
        #map-tooltip .tooltip-logos img {
            height: 30px;
            width: auto;
            object-fit: contain;
            background: #fff;
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 2px;
        }
        
        .compass {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 60px;
            height: auto;
            z-index: 20;
        }
        
        .map-error {
            color: #dc3545;
            text-align: center;
            padding: 20px;
            background: #fff0f0;
            border-radius: 10px;
            display: none;
        }

@media (max-width: 991px) {
    .navbar {
        height: auto !important; 
        padding: 10px 0;
    }
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin-top: 10px;
        text-align: center; 
    }
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0; 
        font-size: 1.1rem; 
    }
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    .btn-nav-aula {
        display: block;      
        width: 100%;
        margin: 10px 0;      
        text-align: center;
        background-color: var(--facilita-green-light); 
        color: white !important; 
    }
    .navbar-brand img {
        max-height: 50px; 
    }
    .navbar-toggler {
        border-color: transparent; 
    }
    .navbar-toggler:focus {
        box-shadow: none; 
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(47, 58, 103, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}
@media (max-width: 991px) {
    body {
        zoom: 100% !important; 
        padding-top: 80px; 
    }
    h1.hero-title {
        font-size: 2rem; 
    }
    h2 {
        font-size: 1.5rem; 
    }
}
/* ============================================================
   Refuerzo de layout (blindaje para asegurar márgenes y navbar)
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin-right: auto; margin-left: auto; padding-right: 15px; padding-left: 15px; }
@media (min-width: 1400px){ .container { max-width: 1240px; } }

/* Navbar siempre con fondo visible (aunque Bootstrap tarde) */
.navbar.fixed-top { background-color: rgba(255,255,255,0.98); box-shadow: 0 4px 20px rgba(47,58,103,.1); }
.navbar .navbar-brand img { max-height: 60px; width: auto; }
.navbar-nav .nav-link { color: var(--facilita-text-title); font-family:'Montserrat',sans-serif; font-weight:600; padding:.5rem 1rem; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover { color: var(--facilita-green-light); }

/* El body arranca bajo el navbar fijo */
body { padding-top: 0; }
.hero { margin-top: 0; }

/* Botones del navbar (Cotización, Aula Virtual, Carrito) */
.btn-nav-aula {
  border: 2px solid var(--facilita-green-light); color: var(--facilita-green-dark);
  border-radius: 999px; padding: .5rem 1.2rem; font-family:'Montserrat',sans-serif; font-weight:700;
  font-size:.9rem; transition:.2s; display:inline-flex; align-items:center; background:transparent;
}
.btn-nav-aula:hover { background: var(--facilita-green-light); color:#fff; }

/* ============================================================
   Fix: áreas de experiencia — títulos que no se corten
   ============================================================ */
.service-card h4{
  font-size:1.15rem; line-height:1.25; word-break:normal; overflow-wrap:break-word; hyphens:none;
}
.services-section .row{ row-gap:1.5rem; }
@media (min-width:992px){
  .services-section .col-lg,
  .services-section [class*="col-"]{ padding-left:8px; padding-right:8px; }
}
/* card de área: contenido flex para alinear el "Ver Cursos" abajo */
.service-card{ display:flex; flex-direction:column; }
.service-card .btn-link{ margin-top:auto; }
