/* 
 * ActionCOACH Iberoamérica - Sistema de Estilos y Diseño Premium
 * Autor: Desarrollador Web Senior & Diseñador UX/UI Experto
 * Versión: 1.0 (Limpio, Responsivo y Modulado)
 */

/* Importación de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Variables de Diseño (Tokens) */
:root {
    /* Paleta de Colores de la Marca ActionCOACH */
    --primary-yellow: #FFD100;
    --primary-dark: #202020;
    --primary-white: #FFFFFF;
    --primary-gray: #D6D6D6;
    
    /* Colores de Acento (Secundarios) */
    --accent-orange: #FD9900;
    --accent-pumpkin: #FE7100;
    --accent-tangelo: #FF4801;
    
    /* Semánticos y Textos */
    --text-light: #FFFFFF;
    --text-dark: #202020;
    --text-muted: #666666;
    --text-yellow: #FFD100;
    
    /* Fondos y Sombras */
    --bg-light: #F9F9F9;
    --bg-dark: #202020;
    --bg-card: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-yellow: 0 10px 20px rgba(255, 209, 0, 0.25);
    
    /* Fuentes */
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transiciones y Bordes */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Altura del Header */
    --header-height: 80px;
    --header-shrink-height: 70px;
}

/* Reset y Estilos Globales */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

/* Tipografía y Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    padding-bottom: 0.75rem;
}

/* Línea de acento abajo de h2 */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-yellow);
    border-radius: var(--radius-full);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
}

h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

/* Clases de Utilidad de Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.section.dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section.dark h2, .section.dark h3, .section.dark h4 {
    color: var(--text-light);
}

.section.light {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

@media (min-width: 992px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.text-center { text-align: center; }
.text-yellow { color: var(--primary-yellow) !important; }
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Componentes Comunes */
/* Botones Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-title);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: #e6bd00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background-color: var(--primary-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary-dark);
    color: var(--primary-white);
}

.btn-dark:hover {
    background-color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Tarjetas */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.card:hover::before {
    transform: scaleX(1);
}

/* Encabezado Principal (Header / Navbar) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header.shrink {
    height: var(--header-shrink-height);
    background-color: #FFFFFF;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Menú de Navegación */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
}

/* Menú móvil y Botón Hamburguesa */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-smooth);
}

.burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsividad Menú */
@media (max-width: 991px) {
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 5rem 3rem;
        gap: 3rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.75rem 0;
    }
    
    .nav-link::after {
        left: 0;
        transform: none;
    }
    
    .header-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- PÁGINA DE INICIO (HOME) --- */
/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.9) 100%), 
                url('../hero_coaching.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero h1, 
.hero h2, 
.hero h3, 
.hero p, 
.hero .hero-lead, 
.hero .hero-tagline, 
.hero .pillar-item h3,
.hero .pillar-item p {
    color: var(--primary-white) !important;
}

.hero h1 span.text-yellow {
    color: var(--primary-yellow) !important;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-tagline {
    font-size: 1rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary-gray);
    margin-bottom: 3rem;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Grid de Pilares de Éxito en Hero */
.hero-pillars {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-icon {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-top: 0.2rem;
}

.pillar-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pillar-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Sección Propuesta de Valor */
.propuesta {
    background-color: var(--primary-white);
}

.propuesta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .propuesta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.propuesta-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.propuesta-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.propuesta-img:hover img {
    transform: scale(1.05);
}

.propuesta-text h2 {
    margin-bottom: 1.5rem;
}

.propuesta-quote {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-pumpkin);
    border-left: 4px solid var(--primary-yellow);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* Sección Ecosistema (Pilares del Negocio) */
.ecosistema-cards {
    margin-top: 3.5rem;
}

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

.eco-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 209, 0, 0.1);
    color: var(--primary-yellow);
    font-size: 2.2rem;
    border-radius: var(--radius-full);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.eco-card:hover .eco-icon {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    transform: rotate(360deg);
}

/* Sección Comenzar es muy fácil */
.steps-timeline {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--primary-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary-dark);
    color: var(--primary-yellow);
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-yellow);
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Slider de Marcas / Clientes (Marquee) */
.marquee-container {
    overflow: hidden;
    padding: 2rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-title);
}

.marquee {
    display: flex;
    width: 200%;
    animation: marquee-anim 20s linear infinite;
}

.marquee-slide {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
}

.marquee img {
    height: 45px;
    width: auto;
    max-width: 140px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.marquee img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee-anim {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Testimonios Carrusel */
.testimonials {
    background-color: var(--bg-light);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 3.5rem auto 0;
    position: relative;
}

.testimonial-card {
    background-color: var(--primary-white);
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--accent-pumpkin);
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--primary-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.carousel-dot.active {
    background-color: var(--primary-yellow);
    width: 25px;
}

/* --- PÁGINA ACERCA DE NOSOTROS (`acerca.html`) --- */
.page-hero {
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 6rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.9) 100%), 
                url('../business_team.png') center/cover no-repeat;
    color: var(--primary-white);
    text-align: center;
}

.page-hero h1, 
.page-hero p, 
.page-hero .hero-tagline {
    color: var(--primary-white) !important;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--primary-yellow);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Bloque Historia / Quiénes Somos */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Contadores Estadísticos Animados */
.stats-section {
    background-color: var(--primary-dark);
    color: var(--primary-white);
    padding: 5rem 0;
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-family: var(--font-title);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Misión, Visión, Filosofía */
.mvf-cards {
    margin-top: 3.5rem;
}

.mvf-card h3 {
    border-bottom: 2px solid var(--primary-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* Filosofía C.A.R.E. */
.care-section {
    background-color: var(--bg-light);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.care-card {
    background-color: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-yellow);
}

.care-letter {
    font-size: 3.5rem;
    font-family: var(--font-title);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.care-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* --- PÁGINA PRODUCTOS (`productos.html`) --- */
.product-category-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
    color: var(--primary-dark);
}

/* Estilo Tarjeta Producto Premium */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.product-features {
    margin: 1.5rem 0 2rem;
}

.product-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-pumpkin);
    font-weight: bold;
}

.product-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Productos 1 a 1 Cards Especiales */
.product-premium {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow-md);
}

.product-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.7rem;
    padding: 0.35rem 2.5rem;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid otros programas */
.others-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.other-card {
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.other-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-yellow);
}

.other-card-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.other-card-text h4 {
    margin-bottom: 0.25rem;
}

.other-card-text p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* --- PÁGINA DIRECTORIO DE COACHES (PRÓXIMAMENTE) --- */
.directorio-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.9) 100%), 
                url('../business_team.png') center/cover no-repeat;
    color: var(--primary-white);
    padding: 8rem 0;
    text-align: center;
}

.directorio-hero h1, 
.directorio-hero p {
    color: var(--primary-white) !important;
}

.directorio-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.badge-upcoming {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-yellow);
    animation: pulse 2s infinite;
}

/* Simulación de Directorio */
.mockup-directorio {
    background-color: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.search-bar-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
}

@media (max-width: 767px) {
    .search-bar-mockup {
        grid-template-columns: 1fr;
    }
}

.mockup-input {
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: not-allowed;
}

.mockup-btn-search {
    background-color: var(--primary-dark);
    color: var(--primary-yellow);
    font-family: var(--font-title);
    font-weight: 900;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    cursor: not-allowed;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gráfico de Mapa Interactivo Simulador */
.map-visual-container {
    height: 400px;
    background: radial-gradient(circle, #f0f0f0 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-bg {
    font-size: 15rem;
    color: rgba(0, 0, 0, 0.03);
    font-weight: 900;
    user-select: none;
    font-family: var(--font-title);
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-pumpkin);
    border-radius: var(--radius-full);
    border: 3px solid var(--primary-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 26px;
    height: 26px;
    border: 2px solid var(--accent-pumpkin);
    border-radius: var(--radius-full);
    animation: ripple 1.8s infinite;
}

.map-pin:hover {
    transform: scale(1.3);
    background-color: var(--primary-yellow);
    box-shadow: 0 0 15px var(--primary-yellow);
}

.map-pin-1 { top: 30%; left: 25%; } /* México */
.map-pin-2 { top: 45%; left: 35%; } /* Colombia */
.map-pin-3 { top: 65%; left: 45%; } /* Chile / Argentina */
.map-pin-4 { top: 40%; left: 80%; } /* España */
.map-pin-5 { top: 52%; left: 48%; } /* Brasil / Iberoamérica */

/* Formulario Premium en Próximamente */
.contacto-container {
    max-width: 600px;
    margin: 5rem auto 0;
}

.contacto-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background-color: var(--bg-light);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

@media (max-width: 767px) {
    .contacto-form {
        grid-template-columns: 1fr;
    }
}

.form-group-full {
    grid-column: 1 / -1;
}

.contacto-form label {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
    width: 100%;
    background-color: var(--primary-white);
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(253, 153, 0, 0.1);
}

.contacto-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23202020' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contacto-form button {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 1rem;
}

/* --- SECCIÓN CTA FINAL ("¿QUÉ ESPERAS?") --- */
.cta-final {
    background: linear-gradient(135deg, rgba(32,32,32,0.95) 0%, rgba(17,17,17,0.98) 100%), 
                url('../Acerca de Nosotros - ActionCOACH Iberoamerica_files/Equipo_ActionCOACH.jpg') center/cover no-repeat;
    color: var(--primary-white);
    padding: 6rem 0;
    text-align: center;
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.cta-final h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary-yellow);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-final-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- PIE DE PÁGINA (FOOTER) --- */
.footer {
    background-color: #151515;
    color: var(--primary-white);
    padding: 5rem 0 2rem;
    border-top: 5px solid var(--primary-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-widget h4 {
    color: var(--primary-yellow);
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-widget p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-yellow);
}

/* Pie de página inferior */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copy {
    color: #808080;
    font-size: 0.8rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: #808080;
    font-size: 0.8rem;
}

.footer-legal-links a:hover {
    color: var(--primary-yellow);
}

/* --- BOTÓN WHATSAPP FLOTANTE PREMIUM --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--primary-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #25D366;
    border-radius: var(--radius-full);
    animation: ripple-green 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Animaciones CSS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes ripple-green {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- TARJETAS DE PROGRAMAS GRUPALES --- */
.group-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    align-items: center;
    padding: 3rem 2rem !important;
}

.group-card-logo-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.group-card-logo {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.group-card-category {
    color: var(--accent-pumpkin);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.group-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    flex-grow: 1;
}

.group-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.group-card .btn {
    margin-top: auto;
    width: 100%;
}
