.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ================= VARIABLES GLOBALES CHALLENGE HUB 2026 ================= */
:root {
    --primary-ch: #18baa8;    /* Verde Agua Innovación (Principal) */
    --dark-ch: #1e293b;       /* Slate Dark (Sustituye al azul marino para fondos oscuros y textos) */
    --accent-ch: #8b5cf6;     /* Violeta Tecnológico (Para detalles) */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafc;      /* Fondo limpio con matiz frío */
    --white: #ffffff;
}

/* FORZAR COLOR EN EL MENÚ DEL HEADER */
.ch-nav-links a {
    color: var(--dark-ch) !important;
    transition: color 0.3s ease !important;
}

/* FORZAR HOVER VERDE AGUA */
.ch-nav-links a:hover {
    color: var(--primary-ch) !important; /* El verde #18baa8 */
    text-decoration: none !important;
}

/* Si usas el widget nativo de Elementor (Nav Menu), usa este .elementor-kit-8 extra */
.elementor-nav-menu a:hover,
.elementor-sub-item:hover {
    color: var(--primary-ch) !important;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

/* ================= CABECERA (HEADER) ================= */
.ch-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 0.5rem 0;
}

/* ================= NAVEGACIÓN ANCHO COMPLETO (100%) ================= */
.ch-nav-container {
    width: 100% !important;
    max-width: 100% !important; /* Rompe el límite de los 1200px */
    margin: 0 !important;       /* Elimina el centrado restrictivo */
    padding: 1rem 4% !important; /* 4% de separación limpia en los bordes de la pantalla */
    display: flex;
    justify-content: space-between; /* Envía el logo a la izquierda y los links a la derecha */
    align-items: center;
}

/* ================= CORRECCIÓN: SEPARACIÓN DE CABECERA CON LOGO ANCHO ================= */

.ch-logo {
    display: flex !important;
    align-items: center;
    margin-right: 4rem !important; /* Espacio de seguridad garantizado tras el logo */
    flex-shrink: 0 !important;     /* Evita que el logo se encoja en pantallas medianas */
}

.ch-logo-img {
    height: 120px !important;       /* Altura perfecta para que los textos de cofinanciación sean legibles */
    width: auto !important;
}

.ch-nav-links {
    margin-left: auto !important;  /* Fuerza al menú a desplazarse al extremo derecho */
    display: flex !important;
    gap: 2rem !important;          /* Distancia equilibrada entre pestañas */
    white-space: nowrap !important; /* Impide de forma absoluta que el menú salte a dos líneas */
}

/* Ajuste fino por si las letras del menú no quedan centradas con el eje del logo */
.ch-nav-links a, 
.elementor-nav-menu a {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* ================= BANNER PRE-FOOTER (NUEVO) ================= */
.ch-pre-footer {
    padding: 40px 20px;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.ch-participants-img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin: 0 auto;
}

/* ================= PIE DE PÁGINA (FOOTER) ================= */
.ch-footer {
    background-color: var(--dark-ch);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 5px solid var(--primary-ch);
    font-family: 'Inter', sans-serif;
}

.ch-footer p { 
    opacity: 0.8; 
    font-size: 0.9rem; 
    margin-bottom: 1rem; 
}

/* Responsive básico para ocultar menú en móviles */
@media (max-width: 768px) {
    .ch-nav-links { display: none; }
}

/* ================= HERO MODERNO 2026 ================= */
.ch-hero-modern {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Animación de zoom suave en el fondo (Ken Burns effect) */
.ch-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoom-bg 20s infinite alternate ease-in-out;
}

@keyframes zoom-bg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.ch-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(24, 186, 168, 0.3) 100%);
    z-index: 2;
}

.ch-hero-content-modern {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

/* Animaciones de entrada */
.ch-badge-animate {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(24, 186, 168, 0.2);
    border: 1px solid #18baa8;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    animation: fadeInDown 0.8s ease out;
}

.ch-title-reveal {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.ch-title-reveal span {
    color: #18baa8;
    position: relative;
}

.ch-fade-up {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

/* Botones con estilo Glassmorphism */
.ch-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s ease-out;
}

.ch-btn-glass {
    background: #18baa8;
    color: white !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(24, 186, 168, 0.3);
    transition: all 0.3s ease;
}

.ch-btn-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(24, 186, 168, 0.5);
}

.ch-btn-outline {
    border: 2px solid white;
    color: white !important;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ch-btn-outline:hover {
    background: white;
    color: #1e293b !important;
}

/* Definición de Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= CARACTERÍSTICAS (3 COLUMNAS) ================= */
.ch-features {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.ch-features h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-ch);
    margin-bottom: 1rem;
}

.ch-features > p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

.ch-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ch-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.ch-card:hover {
    transform: translateY(-5px);
}

.ch-card i {
    font-size: 3rem;
    color: var(--primary-ch);
    margin-bottom: 1.5rem;
}

.ch-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark-ch);
}

.ch-card p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
}

/* ================= IMPACTO (CONTADORES) ================= */
.ch-impact {
    background-color: var(--dark-ch);
    color: var(--white);
    padding: 4rem 2rem;
}

.ch-impact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 2rem;
}

.ch-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-ch);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ch-stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= CTA PROTOTRANSFER ================= */
.ch-cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--white);
}

.ch-cta-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-ch); 
}

.ch-cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-ch);
    margin-bottom: 1.5rem;
}

.ch-cta-section p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Ajustes Responsive Generales */
@media (max-width: 768px) {
    .ch-hero h1 { font-size: 2.2rem; }
    .ch-hero { padding: 5rem 1rem; }
    .ch-impact-grid { flex-direction: column; gap: 3rem; }
    .ch-cta-section h2 { font-size: 1.8rem; }
    .ch-cta-container { padding: 2.5rem 1.5rem; }
}

/* ================= LANDING PAGE PROTOTRANSFER ================= */
.ch-lp-hero {
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
}

.ch-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: -4rem auto 4rem auto; 
    position: relative;
    z-index: 10;
}

.ch-benefit-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-bottom: 4px solid var(--primary-ch);
}

.ch-benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-ch);
    margin-bottom: 1rem;
}

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

.ch-benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.ch-requirements {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
}

.ch-req-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.ch-req-content {
    flex: 1;
    min-width: 300px;
}

.ch-req-list {
    list-style: none;
    margin-top: 1.5rem;
}

.ch-req-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
}

.ch-req-list li::before {
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-ch);
}

.ch-download-box {
    background-color: var(--dark-ch);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
}

.ch-download-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

/* ================= ESTILOS DEL FORMULARIO ================= */
.elementor-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 0 0 10px 10px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.elementor-field-label {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    color: var(--dark-ch) !important;
    margin-bottom: 8px !important;
}

.elementor-field-textual {
    border: 2px solid #eee !important;
    border-radius: 5px !important;
    padding: 12px !important;
    transition: border-color 0.3s !important;
}

.elementor-field-textual:focus {
    border-color: var(--primary-ch) !important;
}

.elementor-button[type="submit"] {
    background-color: var(--primary-ch) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 30px !important;
    transition: all 0.3s !important;
}

.elementor-button[type="submit"]:hover {
    background-color: var(--dark-ch) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(24, 186, 168, 0.3) !important;
}

@media (max-width: 768px) {
    .elementor-form { padding: 1.5rem; }
}

/* ================= INTRODUCCIÓN AL FORMULARIO ================= */
.ch-form-intro {
    max-width: 800px;
    margin: 0 auto 2rem auto; 
    text-align: center;
    padding: 0 1rem;
}

.ch-form-intro h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-ch);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.ch-form-intro p {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ch-form-alert {
    background-color: rgba(24, 186, 168, 0.05); 
    border-left: 4px solid var(--primary-ch);
    padding: 1rem 1.5rem;
    border-radius: 0 5px 5px 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-ch);
    line-height: 1.5;
}

.ch-form-alert i {
    color: var(--primary-ch);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* ================= PÁGINA "EL PROYECTO" ================= */
.ch-page-hero {
    background-color: var(--dark-ch);
    padding: 6rem 2rem 4rem 2rem;
    color: var(--white);
    text-align: center;
    border-bottom: 5px solid var(--primary-ch);
}

.ch-page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.ch-text-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.ch-text-section h2 {
    color: var(--dark-ch);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.ch-text-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ch-challenges-list {
    list-style: none;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-ch);
}

.ch-challenges-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.ch-challenges-list li:last-child {
    margin-bottom: 0;
}

.ch-challenges-list li::before {
    content: '\f071'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-ch);
}

/* ================= BLOQUE CONSORCIO (ACTUALIZADO PARA LOGOS) ================= */
.ch-partners-section {
    padding: 80px 20px;
    background: var(--white);
}

.ch-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    align-items: center;
}

.ch-partner-logo-box {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background: #fff;
}

.ch-partner-logo-box:hover {
    border-color: var(--primary-ch);
    box-shadow: 0 10px 25px rgba(24, 186, 168, 0.1);
    transform: translateY(-5px);
}

.ch-partner-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ch-partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ================= PÁGINA ACADEMIA / FORMACIÓN ================= */

.ch-academy-hero {
    background-color: var(--dark-ch);
    color: var(--white);
    padding: 6rem 2rem 8rem 2rem; /* Mucho padding abajo para solapar el vídeo */
    text-align: center;
    border-bottom: 5px solid var(--primary-ch);
}

.ch-academy-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.ch-academy-hero p {
    color: #cbd5e1; /* Gris clarito azulado */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Vídeo Destacado (Presentación) */
.ch-video-featured {
    max-width: 900px;
    margin: -5rem auto 4rem auto; /* Sube para pisar el fondo oscuro */
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.ch-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 perfecto para YouTube */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.ch-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Cuadrícula de 4 Competencias */
.ch-course-section {
    padding: 2rem 2rem 5rem 2rem;
    background-color: var(--bg-light);
}

.ch-course-section h2 {
    text-align: center;
    color: var(--dark-ch);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.ch-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ch-course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
}

.ch-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-ch);
}

.ch-course-thumb {
    background: var(--dark-ch);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-ch);
    font-size: 3rem;
    position: relative;
}

.ch-course-play {
    position: absolute;
    color: var(--white);
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.ch-course-card:hover .ch-course-play {
    opacity: 1;
    transform: scale(1.1);
}

.ch-course-info {
    padding: 1.5rem;
}

.ch-course-tag {
    display: inline-block;
    background: rgba(24, 186, 168, 0.1);
    color: var(--primary-ch);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.ch-course-info h3 {
    color: var(--dark-ch);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ch-course-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ================= FICHA TÉCNICA DINÁMICA PROTOTIPO ================= */
.ch-single-proto {
    background: var(--white);
}

.ch-proto-hero {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ch-proto-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(30,41,59,0.4), rgba(30,41,59,0.9));
}

.ch-proto-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.ch-proto-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

/* Panel de Datos ACF */
.ch-proto-data-bar {
    max-width: 1100px;
    margin: -50px auto 40px auto;
    background: white;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    overflow: hidden;
    border: 1px solid #eee;
}

.ch-data-item {
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid #eee;
}

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

.ch-data-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-ch);
    font-weight: 800;
    margin-bottom: 5px;
}

.ch-data-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--dark-ch);
    font-weight: 700;
}

/* Cuerpo y Video */
.ch-proto-body {
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ch-proto-video-box {
    margin-top: 50px;
    background: var(--dark-ch);
    padding: 15px;
    border-radius: 15px;
}

/* Tarjetas del listado de prototipos */
.elementor-post {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.elementor-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(24, 186, 168, 0.15);
    border-color: #18baa8;
}

/* Título de los prototipos en el listado */
.elementor-post__title a {
    color: #1e293b !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.elementor-post__title a:hover {
    color: #18baa8 !important;
}

/* Badge de categoría o meta */
.elementor-post__badge {
    background-color: #18baa8 !important;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

/* ================= LANDING DE PROTOTIPOS MODERNA ================= */
.ch-proto-landing {
    padding: 100px 20px 60px 20px;
    background: radial-gradient(circle at top right, rgba(24, 186, 168, 0.1), transparent), 
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent);
    text-align: center;
}

.ch-proto-intro {
    max-width: 900px;
    margin: 0 auto;
}

.ch-badge-tech {
    display: inline-block;
    background: rgba(24, 186, 168, 0.1);
    color: var(--primary-ch);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(24, 186, 168, 0.3);
}

.ch-proto-intro h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--dark-ch);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-ch), var(--accent-ch));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ch-proto-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Etiquetas de información rápida */
.ch-proto-filters-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ch-filter-tag {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-ch);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ch-filter-tag i {
    color: var(--primary-ch);
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .ch-proto-intro h1 { font-size: 2.2rem; }
    .ch-proto-intro p { font-size: 1rem; }
}

/* ================= PÁGINA DE CONTACTO HUB ================= */
.ch-contact-hero {
    background-color: var(--dark-ch);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.ch-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: -50px auto 60px auto;
    padding: 0 20px;
}

/* Tarjetas de información lateral */
.ch-contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--primary-ch);
}

.ch-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.ch-contact-method i {
    background: rgba(24, 186, 168, 0.1);
    color: var(--primary-ch);
    padding: 12px;
    border-radius: 10px;
    font-size: 1.2rem;
}

.ch-contact-method h4 {
    margin: 0;
    color: var(--dark-ch);
    font-size: 1.1rem;
}

/* Estilo para el Formulario (Elementor Form) */
.ch-contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Mapa */
.ch-map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

/* ================= BANNER PRE-FOOTER ================= */
.ch-pre-footer {
    padding: 40px 20px;
    background-color: var(--white); /* Fondo blanco limpio para los logos */
    text-align: center;
}

.ch-participants-img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    margin: 0 auto;
}

/* ================= PIE DE PÁGINA (FOOTER) ================= */
.ch-footer {
    background-color: var(--dark-ch) !important; 
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 5px solid var(--primary-ch) !important; /* <--- Esto manda sobre todo */
    font-family: 'Inter', sans-serif;
}

.ch-footer p { 
    opacity: 0.8; 
    font-size: 0.9rem; 
    margin-bottom: 1rem; 
}

/* Suavizado general */
html {
    scroll-behavior: smooth; /* Para que al pulsar botones que bajan, el scroll sea suave */
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selección de texto con el color del Hub */
::selection {
    background: var(--primary-ch);
    color: white;
}

/* Arreglo de los enlaces en el footer y textos */
a {
    transition: all 0.3s ease;
}

/* Efecto para los campos del formulario cuando haces clic */
.elementor-field-textual:focus {
    outline: none;
    border-color: var(--primary-ch) !important;
    box-shadow: 0 0 0 3px rgba(24, 186, 168, 0.1) !important;
}
/* ================= CARACTERÍSTICAS (METODOLOGÍA) ================= */
.ch-features-modern {
    padding: 100px 20px;
    background-color: var(--white, #ffffff); /* Fondo blanco puro para contrastar con el gris anterior */
    text-align: center;
}

.ch-features-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.ch-features-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-ch);
    margin-top: 15px;
    margin-bottom: 20px;
}

.ch-features-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Rejilla de tarjetas */
.ch-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjeta individual */
.ch-card-modern {
    background-color: var(--bg-light); /* Fondo Gris Nube */
    border-radius: 20px;
    padding: 50px 30px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Efectos al pasar el ratón (Hover) */
.ch-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: rgba(24, 186, 168, 0.3);
}

/* Línea superior decorativa animada */
.ch-card-modern::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary-ch);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
    z-index: -1;
}

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

/* Círculo del icono */
.ch-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: rgba(24, 186, 168, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.ch-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-ch);
    transition: color 0.3s ease;
}

/* Inversión de colores del icono en Hover */
.ch-card-modern:hover .ch-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-ch);
}

.ch-card-modern:hover .ch-icon-wrapper i {
    color: white;
}

/* Tipografía de las tarjetas */
.ch-card-modern h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-ch);
    margin-bottom: 15px;
}

.ch-card-modern p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}/* End custom CSS */