  :root {
            --primary: #1a365d;
            --primary-rgb: 26, 54, 93;
            --secondary: #2d3748;
            --secondary-rgb: 45, 55, 72;
            --accent: #f19047;
            --accent-rgb: 241, 144, 71;
            --background: #ffffff;
            --surface: #f0ece4;
            --success: #38a169;
            --warning: #ed8936;
            --error: #e53e3e;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--secondary);
            background-color: var(--background);
        }
        

        .txt_body{
            font-size: 1.125rem;
            color: var(--text-secondary) !important;
        }

        .bg-suave {
             background-color: #f0ece4;
        }
        
        .text-primary {
            color: var(--primary) !important;
        }
        
        .text-accent {
            color: var(--accent) !important;
        }
        
        .text-secondary-600 {
            color: #718096 !important;
        }
        
        .text-gray-200 {
            color: #edf2f7 !important;
        }
        
        .text-gray-300 {
            color: #e2e8f0 !important;
        }

        .text-gray-400 {
            color: #c0cfe2 !important;
        }
        
        .bg-primary {
            background-color: var(--primary) !important;
        }
        
        .bg-accent {
            background-color: var(--accent) !important;
        }
        
        .bg-surface {
            background-color: var(--surface) !important;
        }
        
        .bg-gradient-primary {
            background: linear-gradient(135deg, #001a33 0%, var(--primary) 100%);
        }
        
        .border-accent {
            border-color: var(--accent) !important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #003366;
            border-color: #003366;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background-color: var(--accent);
            border-color: var(--accent);
            color: rgb(230, 230, 230);
            padding: 0.55rem 1.0rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: #e8822e;
            border-color: #e8822e;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        .card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: none;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }
        
        .shadow-medium {
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .shadow-strong {
            box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
        }
        
        .rounded-2xl {
            border-radius: 1.5rem !important;
        }
        
        .section-padding {
            padding: 3rem 0;
        }
        
        .counter-animation {
            display: inline-block;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-nav .nav-link {
            color: #e2e8f0 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent) !important;
        }
        
        .navbar-nav .nav-link.active {
            color: var(--accent) !important;
            border-bottom: 2px solid var(--accent);
        }
        
        .star-rating {
            color: var(--accent);
        }
        
        .hero-pattern {
            background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.3) 1px, transparent 0);
            background-size: 20px 20px;
        }
        
        .floating-element {
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .animate-counter {
            animation: countUp 2s ease-in-out;
        }
        
        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Bootstrap 4.5 compatibility fixes */
        .position-absolute { position: absolute !important; }
        .position-relative { position: relative !important; }
        .overflow-hidden { overflow: hidden !important; }
        .start-0 { left: 0 !important; }
        .top-0 { top: 0 !important; }
        .w-100 { width: 100% !important; }
        .h-100 { height: 100% !important; }
        .fs-4 { font-size: 1.5rem !important; }
        .fs-5 { font-size: 1.25rem !important; }
        .fw-bold { font-weight: 700 !important; }
        .fw-semibold { font-weight: 600 !important; }
        .fw-medium { font-weight: 500 !important; }
        .me-2 { margin-right: 0.5rem !important; }
        .me-3 { margin-right: 1rem !important; }
        .ms-2 { margin-left: 0.5rem !important; }
        .ms-auto { margin-left: auto !important; }
        .bg-opacity-10 { background-color: rgba(241, 144, 71, 0.1) !important; }
        .bg-opacity-20 { background-color: rgba(241, 144, 71, 0.2) !important; }
        .rounded-pill { border-radius: 50rem !important; }
        .g-4 > * { margin-bottom: 1.5rem; }
        .g-5 > * { margin-bottom: 3rem; }
        .gap-3 { gap: 1rem; }
        .gap-4 { gap: 1.5rem; }
        .lh-lg { line-height: 1.75; }
        .sticky-top { position: sticky; top: 0; z-index: 1020; }
        
        /* Bootstrap 4.5 flexbox utilities */
        .d-inline-flex { display: inline-flex !important; }
        .justify-content-center { justify-content: center !important; }
        .align-items-center { align-items: center !important; }
        .flex-column { flex-direction: column !important; }
        .flex-wrap { flex-wrap: wrap !important; }
        
        /* Bootstrap 4.5 spacing utilities */
        .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
        .px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
        .p-3 { padding: 1rem !important; }
        .mb-4 { margin-bottom: 1.5rem !important; }
        .mb-5 { margin-bottom: 3rem !important; }
        .mt-5 { margin-top: 3rem !important; }
        
        /* Additional Bootstrap 4.5 display utilities */
        .display-3 { font-size: 2.5rem; font-weight: 300; line-height: 1.1; }
        .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.1; }
        .display-5 { font-size: 3rem; font-weight: 300; line-height: 1.1; }
        
        @media (max-width: 575.98px) {
            .flex-sm-row { flex-direction: row !important; }
        }



        /* Quienes somos */

        .certification-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(241, 144, 71, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        .text-primary-custom {
            color: var(--primary) !important;
        }

        .text-accent-custom {
            color: var(--accent) !important;
        }

        .text-secondary-custom {
            color: #6b7280 !important;
        }
        

        .card-custom {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            border: none;
            overflow: hidden;
            transition: all 0.15s ease;
        }

        .card-custom:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }

        .bg-surface-custom {
            background-color: #f9fafb !important;
        }

        .table-custom {
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .table-custom thead {
            background-color: var(--primary-color);
            color: white;
        }

        .table-custom tbody tr:nth-child(even) {
            background-color: #f9fafb;
        }
