body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
    margin: 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

.navbar-logo {
    max-height: 56px;
    width: auto;
}
.navbar-title {
    font-family: fangsong;
}
.hero {
    position: relative;
    min-height: 72vh;
    background: #8C1919;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 35%),
                radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.10), transparent 25%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
    color: #f9fafb;
}

.hero .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.84rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 2rem;
    color: #e5e7eb;
    line-height: 1.8;
}

.btn-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 999px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.section-modern {
    padding: 3rem 0 2rem;
}

.section-header .subtitle {
    display: inline-block;
    text-transform: uppercase;
    color: #BE1622;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-header p {
    max-width: 640px;
    margin: 0 auto;
    color: #4b5563;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    object-fit: cover;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.feature-card h5 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #475569;
    line-height: 1.85;
}

.section-info {
    background: #ffffff;
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 2rem;
}

.info-grid h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.info-grid p,
.info-grid li {
    color: #4b5563;
    line-height: 1.8;
}

.info-grid ul {
    margin-top: 1.25rem;
    padding-left: 1.2rem;
}

.info-grid li {
    margin-bottom: 0.75rem;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: center;
    margin-top: 2rem;
}

.logo-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.logo-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.logo-card p {
    margin: 0;
    color: #374151;
    font-weight: 600;
}

/* BOTONES PERSONALIZADOS */
.btn-outline-dark.mx-2 {
    border: 2px solid #8C1919;
    color: #8C1919;
    background: transparent;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.btn-outline-dark.mx-2:hover {
    background-color: #8C1919;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(140, 25, 25, 0.2);
    border-color: #8C1919;
}

.btn-outline-dark.mx-2:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(140, 25, 25, 0.2);
}

@media (max-width: 1100px) {
    .cards-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }

    .navbar-title {
        font-size: 0.95rem;
    }
}

/* EFECTO HOVER */
.tabla-honor tbody tr:hover {
    background: #dcdcdc;
}

/* Responsive tabla */
@media (max-width: 768px) {
    .tabla-honor {
        overflow-x: auto;
    }
    
    .tabla-honor th,
    .tabla-honor td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

/* ICONO CHECK */
.check {
    width: 12px;
    height: 12px;
    background: #0f766e;
    border-radius: 50%;
    display: inline-block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}