/* Animaciones - Revelar */
.revelar {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.revelar.activo {
    opacity: 1;
    transform: translateY(0);
}

/* Variación: Entrar desde la izquierda */
.revelar-izquierda {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.revelar-izquierda.activo {
    opacity: 1;
    transform: translateX(0);
}

/* Variación: Entrar desde la derecha */
.revelar-derecha {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.revelar-derecha.activo {
    opacity: 1;
    transform: translateX(0);
}

/* Retrasos para efectos en cascada */
.retraso-1 {
    transition-delay: 0.2s;
}

.retraso-2 {
    transition-delay: 0.4s;
}

.retraso-3 {
    transition-delay: 0.6s;
}

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

:root {
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b7280;
    --bg-light: #f9fafc;
    --bg-white: #ffffff;
    --border: #e5e9f0;
    --accent: #1e4a7a;
    --accent-light: #2a5f94;
    --accent-bg: #eef3f9;
    --shadow-sm: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --luz-faro: rgba(255, 240, 180, 0.15);
    --oro-faro: #ffd966;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ===== ELEMENTOS DE FARO ===== */
@keyframes destello-luz {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
}

.destello {
    animation: destello-luz 3s infinite;
}

.faro-icon {
    position: relative;
    display: inline-block;
}

.faro-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 240, 180, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: destello-luz 4s infinite;
    pointer-events: none;
}

@keyframes onda {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    100% {
        transform: translateX(100%) translateY(10px);
    }
}

.onda-animada {
    position: relative;
    overflow: hidden;
}

.onda-animada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(30, 74, 122, 0.02) 20px,
        rgba(30, 74, 122, 0.02) 40px
    );
    animation: onda 15s linear infinite;
    pointer-events: none;
}

/* Haz de luz para secciones */
.haz-de-luz {
    position: relative;
    overflow: hidden;
}

.haz-de-luz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% -50%, var(--luz-faro) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.haz-de-luz-invertido::before {
    background: radial-gradient(ellipse at 50% 150%, var(--luz-faro) 0%, transparent 70%);
}

.haz-de-luz > *,
.haz-de-luz-invertido > * {
    position: relative;
    z-index: 1;
}

/* Separador con faro */
.separador-faro {
    position: relative;
    height: 40px !important;
    margin: 1.5rem 0 !important;
    overflow: hidden;
}

.separador-faro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--oro-faro), var(--accent), transparent);
}

.separador-faro i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-size: 2.5rem;
    background: var(--bg-light);
    padding: 0 30px;
    z-index: 2;
    text-shadow: 0 0 15px var(--oro-faro);
}

.separador-faro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Destello para hover */
@keyframes destello {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-center {
    display: flex;
    gap: 3rem;
}

.nav-center a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-center a:hover {
    color: var(--accent);
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-nav:hover {
    background: var(--accent);
    color: white;
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
    background: none;
    border: none;
    padding: 0.5rem;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--accent-light);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: var(--accent-bg);
    color: var(--accent);
    padding-left: 1.5rem;
}

.mobile-menu .btn-nav-mobile {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu .btn-nav-mobile:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* HERO - CON FARO */
.hero{
    margin-top:65px;
    min-height:calc(100vh - 65px);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:74% 11%;
    top:0;
    left:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.hero-content{
    position:relative;
    z-index:3;
}

/* FARO EN HERO */
.faro-luz{
    position:absolute;
    top:calc(11% + 50px);
    left:calc(74% + 10px);
    transform:translate(-50%,-50%);
    width:1px;
    height:1px;
    z-index:2;
}

.faro-luz::after{
    content:'';
    position:absolute;
    top:-200vh;
    left:-200vw;
    width:400vw;
    height:400vh;
    background:conic-gradient(
        from 170deg,
        transparent 0deg,
        rgba(255,240,180,0.25) 12deg,
        transparent 24deg,
        transparent 340deg,
        rgba(255,240,180,0.18) 352deg,
        transparent 360deg
    );
    animation:girarLuz 25s linear infinite;
    transform-origin:200vw 200vh;
    filter:blur(4px);
    pointer-events:none;
}

@keyframes girarLuz {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(135deg, #ff8c00 0%, #ffc885 100%);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    position: relative;
    font-weight: 800;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 70, 0.3), transparent);
    border-radius: 4px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(30, 74, 122, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffc8858f, transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(30, 74, 122, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(30, 74, 122, 0.3);
}

/* SECTION GENERAL */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* TIPOS DE COACHING */
.coaching-types {
    background: var(--bg-white);
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coaching-card {
    padding: 2.2rem 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00 0%, #ffc885, #ff8c00);
    opacity: 0;
    transition: opacity 0.25s;
}

.coaching-card:hover::before {
    opacity: 1;
}

.coaching-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 25px -8px rgba(30, 74, 122, 0.15);
    transform: translateY(-4px);
    position: relative;
    overflow: hidden;
}

/* DESTELLO EN HOVER PARA COACHING CARD */
.coaching-card:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 245, 200, 0.3) 0%, transparent 70%);
    animation: destello 1.5s ease-out forwards;
    pointer-events: none;
}

.coaching-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    position: relative;
}

.coaching-icon .destello-punto {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--oro-faro);
    border-radius: 50%;
    animation: destello-luz 2s infinite;
}

.coaching-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -0.2px;
}

.coaching-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.coaching-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1rem 0 1.8rem;
    border-top: 1px dashed var(--border);
    padding-top: 1.2rem;
}

.coaching-features .feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.coaching-features .feature i {
    color: var(--accent);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.btn-learn-more {
    padding: 0.7rem 0;
    background: transparent;
    color: var(--accent);
    border: none;
    border-bottom: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    align-self: flex-start;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-learn-more i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.btn-learn-more:hover {
    color: var(--accent-light);
    border-bottom-color: var(--accent-light);
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}

/* SOBRE NOSOTROS */
.about {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 4rem auto;
    box-shadow: var(--shadow-sm);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.about-text h2 span {
    color: var(--accent);
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    height: 380px;
    background-image: url('../imagenes/coaching.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    grid-column: 1 / -1;
    margin-top: 2.5rem;
}

.value-card {
    padding: 1.5rem 1.2rem;
    background: linear-gradient(145deg, rgba(255, 240, 180, 0.05) 0%, white 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--oro-faro);
}

.value-card:hover {
    border-color: var(--accent);
    background: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* DESTELLO EN HOVER PARA VALUE CARD */
.value-card:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 245, 200, 0.3) 0%, transparent 70%);
    animation: destello 1.5s ease-out forwards;
    pointer-events: none;
}

.value-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* SECCIÓN METÁFORA DEL FARO */
.faro-metafora {
    grid-column: 1 / -1;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(30, 74, 122, 0.03) 0%, transparent 100%);
    border-radius: 24px;
    border-left: 4px solid var(--oro-faro);
    position: relative;
    overflow: hidden;
}

.faro-metafora-contenido {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.faro-metafora-icono {
    flex: 0 0 100px;
    text-align: center;
    position: relative;
}

.faro-metafora-icono i {
    font-size: 4rem;
    color: var(--oro-faro);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: destello-luz 3s infinite;
}

.faro-metafora-texto {
    flex: 1;
}

.faro-metafora-texto h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faro-metafora-texto p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faro-metafora-caracteristicas {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.faro-metafora-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faro-metafora-item i {
    font-size: 1.3rem;
    color: var(--oro-faro);
}

.faro-metafora-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== SECCIÓN QUIÉNES SOMOS ===== */
.team {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: left;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8c00 0%, #ffc885, #ff8c00);
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(30, 74, 122, 0.2);
    border-color: transparent;
}

/* DESTELLO EN HOVER PARA TEAM MEMBER */
.team-member:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 245, 200, 0.3) 0%, transparent 70%);
    animation: destello 1.5s ease-out forwards;
    pointer-events: none;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(30, 74, 122, 0.2);
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.member-header .cargo {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    background: var(--accent-bg);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.tag {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.member-quote {
    background: var(--accent-bg);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    border-left: 4px solid var(--oro-faro);
}

.member-quote i {
    color: var(--accent);
    opacity: 0.5;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-quote p {
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.2s;
}

.credential-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
}

.credential-item i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-top: 0.2rem;
}

.credential-text {
    flex: 1;
}

.credential-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.credential-text span {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}
/* ===== FIN SECCIÓN QUIÉNES SOMOS ===== */

/* TESTIMONIOS */
.testimonials {
    background: var(--bg-white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 74, 122, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.testimonial-card {
    text-align: center;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem;
    background: var(--bg-light);
    padding: 2.5rem 3rem;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.testimonial-card blockquote i.fa-thumbs-up {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 4rem;
    opacity: 0.1;
    color: var(--accent);
    transform: rotate(-15deg);
}

.testimonial-card blockquote:before,
.testimonial-card blockquote:after {
    content: "\201C";
    position: absolute;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    font-family: 'Georgia', serif;
    opacity: 0.15;
}

.testimonial-card blockquote:before {
    top: 0.5rem;
    left: 1rem;
}

.testimonial-card blockquote:after {
    content: "\201D";
    right: 1rem;
    bottom: -0.5rem;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-card .author span {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-card .author small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    width: 28px;
    background: var(--accent);
}

.indicator:hover {
    background: var(--accent-light);
}

/* CONTACT */
.contact {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--accent-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 4rem auto;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 74, 122, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-block {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.info-block:hover {
    border-color: var(--oro-faro);
    background: rgba(255, 240, 180, 0.05);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.info-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.info-block:hover .info-icon::after {
    opacity: 1;
}

.info-block a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    display: block;
}

.info-block a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.info-label {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-center, .nav-right { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu { display: block; }

    .hero {
        min-height: 70vh;
        padding: 2rem 1.5rem;
    }

    .hero h1 { 
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }
    
    .hero h1 span::after {
        height: 6px;
        bottom: 2px;
    }
    
    .section { padding: 3rem 1.5rem; }
    .section-title { font-size: 1.8rem; }
    
    .hero-buttons { 
        flex-direction: column; 
        align-items: center;
    }
    
    .btn-primary { 
        width: auto;
        min-width: 220px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .coaching-grid { grid-template-columns: 1fr; }
    
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .about-image { height: 250px; }
    
    .faro-metafora-contenido {
        flex-direction: column;
        text-align: center;
    }
    
    .faro-metafora-caracteristicas {
        justify-content: center;
    }

    .team-grid { grid-template-columns: 1fr; }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-header h3 {
        font-size: 1.3rem;
    }
    
    .credential-item {
        padding: 0.6rem;
    }
    
    .testimonials { padding: 3rem 1.5rem; }
    .testimonial-card blockquote { 
        padding: 2rem 1.5rem; 
        font-size: 1rem;
    }
    
    .contact-info { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .separador-faro {
        height: 60px;
        margin: 2rem 0;
    }
    
    .separador-faro i {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-values { grid-template-columns: 1fr; }
    
    .hero {
        min-height: 60vh;
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .faro-metafora-caracteristicas {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (min-width: 1920px) {
    .hero {
        background-size: cover;
        background-position: center 40%;
    }
}

/* BLOG HOME */
.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-preview-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(229, 233, 240, 0.8);
    display: flex;
    flex-direction: column;
}

.blog-preview-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-preview-content {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.88rem;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--accent-bg);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.blog-preview-content h3 {
    font-size: 1.28rem;
    line-height: 1.2;
}

.blog-preview-content p {
    color: var(--text-secondary);
}

.blog-home-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 980px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CENTRAR FARO-METAFORA ===== */
.faro-metafora-caracteristicas {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;  /* Centra los items horizontalmente */
}

.faro-metafora-texto h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;  /* Centra el título */
    gap: 0.5rem;
    text-align: center;
}

/* Para pantallas pequeñas */
@media (max-width: 480px) {
    .faro-metafora-caracteristicas {
        flex-direction: column;
        align-items: center;   /* Centra los items en columna */
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .faro-metafora-texto h3 {
        justify-content: center;
        text-align: center;
    }
}

/* ===== TESTIMONIOS: CONTENEDOR CON ALTURA FIJA ===== */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem;
    background: var(--bg-light);
    padding: 2.5rem 3rem;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    min-height: 200px;
}

@media (max-width: 768px) {
    .testimonial-carousel {
        min-height: 320px;
    }
    
    .testimonial-card blockquote {
        padding: 2rem 1.5rem;
        font-size: 1rem;
        min-height: 240px;
    }
}

.telefono {
    white-space: nowrap;
}

.telefono-destacado {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    color: var(--accent);
    white-space: nowrap;     /* evita salto de línea */
    display: inline-block;
    margin-top: 0.3rem;
}

.telefono-destacado:hover {
    transform: scale(1.05);
    color: var(--accent-light);
}

/* ===== FOOTER EMPRESAS ===== */
.footer-empresas {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    background: white;
}

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

/* ===== FARO (igual que tu diseño original) ===== */
.faro-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faro-footer-linea {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.faro-footer-linea.derecha {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.faro-footer svg {
    color: var(--accent);
    animation: none; /* quitamos el efecto */
}

/* ===== GRID PRINCIPAL ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

/* ===== COLUMNAS ===== */
.footer-col {
    text-align: left;
}

/* Layout interno (texto + logo) */
.footer-col-inner {
    display: flex;
    justify-content: space-between;
    align-items: center; /* 🔥 centra verticalmente */
    gap: 1.5rem;
}

/* Texto */
.footer-text {
    flex: 1;
}

/* Títulos */
.footer-col h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Párrafos */
.footer-col p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

/* Texto secundario */
.footer-sub {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* ===== LOGO DERECHA ===== */
.footer-logo-box {
    flex-shrink: 0;
}

.footer-logo-box img {
    width: 170px;
    height: auto;
    opacity: 0.95;
}

/* ===== FOOTER INFERIOR ===== */
.footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-box img {
        width: 130px;
        margin-top: 0.8rem;
    }
}

/* ===== PRECIO POR SESIÓN - VERSIÓN HORIZONTAL CENTRADA ===== */
.precio-sesion {
    padding: 3rem 2rem;
}

.precio-container-horizontal {
    max-width: 950px;
    margin: 0 auto;
}

.precio-card-horizontal {
    background: var(--bg-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    min-height: 320px;
}

.precio-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -12px rgba(30, 74, 122, 0.2);
    border-color: var(--oro-faro);
}

/* Imagen a la izquierda */
.precio-imagen-horizontal {
    width: 40%;
    overflow: hidden;
    flex-shrink: 0;
}

.precio-imagen-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.precio-card-horizontal:hover .precio-imagen-horizontal img {
    transform: scale(1.03);
}

/* Contenido a la derecha - CENTRADO */
.precio-contenido-horizontal {
    flex: 1;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  /* ← Centra todo horizontalmente */
    text-align: center;    /* ← Centra el texto */
}

/* Icono centrado */
.precio-icono-horizontal {
    margin-bottom: 0.8rem;
}

.precio-icono-horizontal i {
    font-size: 2.2rem;
    color: var(--accent);
    background: var(--accent-bg);
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.precio-card-horizontal:hover .precio-icono-horizontal i {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

/* Título centrado */
.precio-contenido-horizontal h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

/* Precio centrado */
.precio-valor-horizontal {
    margin-bottom: 0.8rem;
}

.precio-euro-horizontal {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}

.precio-duracion-horizontal {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Descripción centrada */
.precio-descripcion-horizontal {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Beneficios centrados como chips */
.precio-beneficios-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;  /* ← Centra los chips */
    margin-bottom: 1.2rem;
}

.precio-beneficio-horizontal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.precio-beneficio-horizontal i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Nota centrada */
.precio-nota-horizontal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0 auto;  /* ← Centra el elemento */
}

.precio-nota-horizontal i {
    font-size: 0.9rem;
    color: var(--oro-faro);
}

/* Responsive */
@media (max-width: 768px) {
    .precio-sesion {
        padding: 2rem 1.5rem;
    }
    
    .precio-card-horizontal {
        flex-direction: column;
        min-height: auto;
    }
    
    .precio-imagen-horizontal {
        width: 100%;
        height: 180px;
    }
    
    .precio-contenido-horizontal {
        padding: 1.5rem;
    }
    
    .precio-euro-horizontal {
        font-size: 2.2rem;
    }
    
    .precio-contenido-horizontal h3 {
        font-size: 1.2rem;
    }
    
    .precio-beneficios-horizontal {
        gap: 0.7rem;
    }
    
    .precio-beneficio-horizontal {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

.nav-center,
.nav-center li,
.nav-center .menu-item {
    list-style: none !important;
}

.nav-center li::marker,
.nav-center .menu-item::marker {
    content: "" !important;
}

.nav-center {
    display: flex !important;
    gap: 30px;
    align-items: center;
}

nav {
    margin-top: 15px;
}
/* Quitar puntos del menú escritorio WordPress */
.nav-center li,
.nav-center .menu-item {
    list-style: none !important;
}
.nav-center li::marker,
.nav-center .menu-item::marker {
    content: "" !important;
}
