/*
Theme Name: New Coaching Internacional
Author: Jorge Revoux
Description: Tema personalizado para la Escuela New Coaching Internacional
Version: 1.0
*/

/* === PEGA AQUÍ TODO TU CÓDIGO CSS === */
/* Desde :root { ... hasta el final de tus media queries } */

/* === TOKENS === */
:root {
    --rojo: #B91C1C;
    --rojo-oscuro: #7F1D1D;
    --rojo-claro: #FEE2E2;
    --gold: #92400E;
    --gold-claro: #FEF3C7;
    --gold-medio: #D97706;
    --negro: #0A0A0A;
    --gris-oscuro: #1C1C1C;
    --gris-medio: #3D3D3D;
    --gris-claro: #F5F5F5;
    --blanco: #FFFFFF;
    --borde: rgba(0,0,0,0.08);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--negro);
    background: var(--blanco);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* === NAVEGACIÓN === */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--negro);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    flex-shrink: 0;
    background: transparent;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--blanco);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 300;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--blanco);
    background: rgba(255,255,255,0.06);
}

.nav-cta {
    background: var(--rojo) !important;
    color: var(--blanco) !important;
    padding: 0.45rem 1rem !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--rojo-oscuro) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--blanco);
    display: block;
    transition: 0.3s;
}

/* === SUBMENÚ === */
.nav-links .menu-item-has-children {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--gris-oscuro);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 200;
}

.nav-links .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .sub-menu a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 12px;
    border-radius: 0;
}

.nav-links .sub-menu a:hover {
    background: rgba(255,255,255,0.06);
}

.nav-links .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--negro);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slider-zone {
    flex: 1;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.slider-placeholder {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1C 60%, #2D1515 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slider-placeholder::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    border: 1px solid rgba(185,28,28,0.12);
    pointer-events: none;
}

.slider-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    border: 1px solid rgba(185,28,28,0.07);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--rojo);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    color: var(--blanco);
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 14ch;
}

.hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    max-width: 48ch;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rojo);
    color: var(--blanco);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--blanco);
}

/* Stats bar */
.stats-bar {
    background: var(--blanco);
    border-top: 1px solid var(--borde);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--borde);
    text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--negro);
    line-height: 1;
    display: block;
}

.stat-number sup {
    font-size: 1.5rem;
    color: var(--rojo);
}

.stat-label {
    font-size: 12px;
    font-weight: 400;
    color: var(--gris-medio);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
}

/* === FORMACIONES === */
.section {
    padding: 6rem 0;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rojo);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--rojo);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--negro);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 20ch;
}

/* Grid de formaciones */
.formaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--borde);
    border: 1px solid var(--borde);
}

.formacion-card {
    background: var(--blanco);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.formacion-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--rojo);
    transition: height 0.3s ease;
}

.formacion-card:hover::before { height: 100%; }
.formacion-card:hover { background: var(--gris-claro); }

.formacion-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(0,0,0,0.07);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.formacion-icon {
    width: 36px;
    height: 36px;
    background: var(--rojo-claro);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formacion-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--rojo);
    fill: none;
    stroke-width: 1.5;
}

.formacion-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--negro);
    line-height: 1.2;
}

.formacion-desc {
    font-size: 14px;
    color: var(--gris-medio);
    line-height: 1.7;
    flex: 1;
}

.formacion-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rojo);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.formacion-link:hover { gap: 10px; }

.formacion-card.destacada {
    background: var(--negro);
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.formacion-card.destacada::before { background: var(--gold-medio); }

.formacion-card.destacada .formacion-num { color: rgba(255,255,255,0.05); }
.formacion-card.destacada .formacion-title { color: var(--blanco); font-size: 2.2rem; }
.formacion-card.destacada .formacion-desc { color: rgba(255,255,255,0.55); font-size: 15px; }
.formacion-card.destacada .formacion-link { color: var(--gold-medio); }

.formacion-card.destacada .formacion-icon {
    background: rgba(217,119,6,0.15);
}

.formacion-card.destacada .formacion-icon svg { stroke: var(--gold-medio); }

.formacion-destacada-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217,119,6,0.15);
    color: var(--gold-medio);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    width: fit-content;
}

.badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-medio);
}

.formacion-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.formacion-highlights li {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.formacion-highlights li::before {
    content: '';
    width: 14px;
    height: 1px;
    background: var(--rojo);
    flex-shrink: 0;
    margin-top: 11px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-medio);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border: 1px solid rgba(217,119,6,0.4);
    border-radius: 2px;
    transition: all 0.2s;
    width: fit-content;
}

.btn-gold:hover {
    background: rgba(217,119,6,0.1);
    border-color: var(--gold-medio);
}

/* === PRESENCIA INTERNACIONAL === */
.presencia {
    background: var(--gris-claro);
    padding: 5rem 0;
}

.presencia-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.presencia-text .section-title {
    margin-bottom: 1.5rem;
}

.presencia-body {
    font-size: 15px;
    color: var(--gris-medio);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.paises-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pais-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--negro);
    background: var(--blanco);
    border: 1px solid var(--borde);
    padding: 6px 14px;
    border-radius: 2px;
}

.presencia-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 400px;
}

.presencia-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--negro);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    min-height: 300px;
}

.presencia-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: var(--rojo);
    color: var(--blanco);
    padding: 1.25rem 1.5rem;
    border-radius: 2px;
}

.presencia-badge .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    display: block;
}

.presencia-badge .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

/* === AVALES === */
.avales {
    padding: 4rem 0;
    border-top: 1px solid var(--borde);
    border-bottom: 1px solid var(--borde);
}

.avales-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.avales-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gris-medio);
    white-space: nowrap;
    flex-shrink: 0;
}

.avales-divider {
    width: 1px;
    height: 40px;
    background: var(--borde);
    flex-shrink: 0;
}

.avales-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.aval-logo-placeholder {
    width: 100px;
    height: 40px;
    background: var(--gris-claro);
    border: 1px dashed var(--borde);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(0,0,0,0.2);
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--borde);
    transition: border-color 0.2s;
}

.blog-card:hover { border-color: var(--rojo); }

.blog-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rojo);
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--negro);
    line-height: 1.25;
    flex: 1;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gris-medio);
    line-height: 1.7;
}

.blog-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--negro);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.blog-link:hover { color: var(--rojo); }

/* === CTA WHATSAPP === */
.cta-wsp {
    background: var(--negro);
    padding: 5rem 0;
}

.cta-wsp-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-wsp-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--blanco);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cta-wsp-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
}

.btn-wsp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--blanco);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 2px;
    transition: filter 0.2s, transform 0.15s;
    letter-spacing: 0.02em;
}

.btn-wsp:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.wsp-icon {
    width: 20px;
    height: 20px;
    fill: var(--blanco);
}

/* === FOOTER === */
footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo-text {
    font-size: 20px;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    max-width: 28ch;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover {
    border-color: var(--rojo);
    background: rgba(185,28,28,0.1);
}

.social-btn svg {
    width: 14px;
    height: 14px;
    fill: rgba(255,255,255,0.5);
    transition: fill 0.2s;
}

.social-btn:hover svg { fill: var(--blanco); }

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--blanco); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--rojo);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

.footer-bottom a {
    color: rgba(255,255,255,0.2);
    transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* === PAGE HEADER === */
.page-header {
    padding-top: 68px;
    background: var(--negro);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.015) 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 1px,
        transparent 12px
    );
    pointer-events: none;
}

.page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb span { color: var(--rojo); }

.page-header-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rojo);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.page-header-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--rojo);
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--blanco);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.page-header-title em {
    font-style: italic;
    color: rgba(255,255,255,0.4);
}

.page-header-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 55ch;
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* === QUIÉNES SOMOS (intro) === */
.quienes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.quienes-body {
    font-size: 15px;
    color: var(--gris-medio);
    line-height: 1.85;
}

.quienes-body p + p { margin-top: 1.2rem; }

.quienes-body strong {
    color: var(--negro);
    font-weight: 500;
}

.quienes-valores {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--borde);
    border: 1px solid var(--borde);
    margin-top: 2rem;
}

.valor-item {
    background: var(--blanco);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.2s;
}

.valor-item:hover { background: var(--gris-claro); }

.valor-icon {
    width: 32px;
    height: 32px;
    background: var(--rojo-claro);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.valor-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--rojo);
    fill: none;
    stroke-width: 1.5;
}

.valor-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--negro);
    margin-bottom: 2px;
}

.valor-desc {
    font-size: 13px;
    color: var(--gris-medio);
    line-height: 1.5;
}

/* === EQUIPO PRINCIPAL === */
.equipo-section {
    background: var(--negro);
    padding: 6rem 0;
}

.equipo-header {
    margin-bottom: 4rem;
}

.equipo-header .section-eyebrow { color: rgba(255,255,255,0.4); }
.equipo-header .section-eyebrow::before { background: rgba(255,255,255,0.2); }
.equipo-header .section-title { color: var(--blanco); }

.director-card {
    background: var(--gris-oscuro);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-medio);
}

.director-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gris-medio);
    position: relative;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    background: #2A2A2A;
}

.badge-director {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217,119,6,0.15);
    color: var(--gold-medio);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.director-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--blanco);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.director-role {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.director-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
}

.team-card {
    background: var(--negro);
    padding: 1.75rem 1.5rem;
    border-bottom: none;
    transition: background 0.2s;
    position: relative;
}

.team-card:hover { background: var(--gris-oscuro); }

.team-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #2A2A2A;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.15);
}

.team-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--blanco);
    margin-bottom: 4px;
    line-height: 1.3;
}

.team-role {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
}

.team-card.memoria {
    opacity: 0.55;
}

.team-card.memoria .team-name::after {
    content: ' †';
    color: var(--rojo);
    font-size: 11px;
}

/* === SEDES === */
.sedes-section {
    padding: 6rem 0;
    background: var(--gris-claro);
}

.sedes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--borde);
    border: 1px solid var(--borde);
    margin-top: 3rem;
}

.sede-card {
    background: var(--blanco);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.sede-card:hover { background: var(--negro); }
.sede-card:hover .sede-name { color: var(--blanco); }
.sede-card:hover .sede-prov { color: rgba(255,255,255,0.4); }
.sede-card:hover .sede-info-item { color: rgba(255,255,255,0.55); }
.sede-card:hover .sede-info-item svg { stroke: var(--rojo); }
.sede-card:hover .sede-directores { border-color: rgba(255,255,255,0.06); }
.sede-card:hover .director-mini-name { color: rgba(255,255,255,0.7); }
.sede-card:hover .director-mini-role { color: rgba(255,255,255,0.35); }
.sede-card:hover .sede-social a { color: rgba(255,255,255,0.4); }
.sede-card:hover .sede-social a:hover { color: var(--rojo); }

.sede-prov {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rojo);
    transition: color 0.2s;
}

.sede-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--negro);
    line-height: 1.1;
    transition: color 0.2s;
}

.sede-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sede-info-item {
    font-size: 13px;
    color: var(--gris-medio);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    transition: color 0.2s;
}

.sede-info-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--rojo);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
    transition: stroke 0.2s;
}

.sede-directores {
    padding-top: 1.25rem;
    border-top: 1px solid var(--borde);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s;
}

.director-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.director-mini-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gris-claro);
    flex-shrink: 0;
}

.director-mini-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-mini-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--gris-medio);
    background: #E8E8E8;
}

.director-mini-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--negro);
    line-height: 1.2;
    transition: color 0.2s;
}

.director-mini-role {
    font-size: 11px;
    color: var(--gris-medio);
    transition: color 0.2s;
}

.sede-social {
    display: flex;
    gap: 1rem;
}

.sede-social a {
    font-size: 12px;
    color: var(--gris-medio);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.sede-social a:hover { color: var(--rojo); }

.sede-social svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* === AVALES NOSOTROS === */
.avales-section {
    padding: 5rem 0;
    border-top: 1px solid var(--borde);
}

.avales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--borde);
    border: 1px solid var(--borde);
    margin-top: 3rem;
}

.aval-card {
    background: var(--blanco);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    transition: background 0.2s;
    min-height: 160px;
}

.aval-card:hover { background: var(--gris-claro); }

.aval-img-placeholder {
    width: 120px;
    height: 60px;
    background: var(--gris-claro);
    border: 1px dashed var(--borde);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(0,0,0,0.2);
}

.aval-name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gris-medio);
}

/* === CTA TESTIMONIOS === */
.cta-testimonios {
    background: var(--rojo);
    padding: 4rem 0;
}

.cta-testimonios-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-testimonios-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--blanco);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-testimonios-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.btn-blanco {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blanco);
    color: var(--rojo);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.2s;
}

.btn-blanco:hover { background: rgba(255,255,255,0.9); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .formaciones-grid { grid-template-columns: repeat(2, 1fr); }
    .formacion-card.destacada {
        grid-column: span 2;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    .presencia-inner { grid-template-columns: 1fr; gap: 3rem; }
    .presencia-visual { max-width: 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--borde); }
    .stat-item:last-child { border-bottom: none; }
    .quienes-grid { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .sedes-grid { grid-template-columns: 1fr; }
    .avales-grid { grid-template-columns: repeat(2, 1fr); }
    .director-card { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .formaciones-grid { grid-template-columns: 1fr; }
    .formacion-card.destacada { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .avales-divider { display: none; }
    .avales-inner { gap: 1.5rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .avales-grid { grid-template-columns: 1fr; }
    .page-header-title { font-size: 2.5rem; }
}
