/* ============================================
PANAMÁ CAPITAL DE EMOCIONES - Main CSS
Paleta alineada al Pantone del logo
============================================ */
:root {
    --coral: #E2231A;
    --rosa: #E5007D;
    --morado: #662D91;
    --azul: #0072BC;
    --verde: #00A651;
    --dorado: #FFC20E;
    --texto: #1A2332;
    --texto-claro: #5A6B7B;
    --texto-claro2: #ffffff;
    --gris: #E8ECF0;
    --gris-claro: #F7F9FC;
    --blanco: #FFFFFF;
    --grad-primario: linear-gradient(135deg, #E2231A, #E5007D);
    --grad-secundario: linear-gradient(135deg, #662D91, #0072BC);
    --radius: 20px;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--texto); line-height: 1.7; background: var(--blanco); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gris { background: linear-gradient(180deg, #F7F9FC 0%, #FFF 100%); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.section-title p { font-size: 1.15rem; color: var(--texto-claro); max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 40px; }
.lead-text { font-size: 1.2rem; color: var(--texto-claro); line-height: 1.8; margin-bottom: 16px; }
.skip-link { position: absolute; top: -100%; left: 0; background: var(--coral); color: white; padding: 12px 24px; z-index: 9999; transition: top 0.3s; }
.skip-link:focus { top: 0; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; font-family: var(--font); cursor: pointer; transition: all 0.3s; border: none; text-decoration: none; }
.btn-primary { background: var(--grad-primario); color: white; box-shadow: 0 8px 25px rgba(226,35,26,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(226,35,26,0.4); }
.btn-secondary { background: white; color: var(--texto); border: 2px solid var(--gris); }
.btn-secondary:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
.btn-white { background: white; color: var(--coral); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.btn-full { width: 100%; justify-content: center; }

/* ---------- HEADER / NAV ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.3s; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max-width); margin: 0 auto; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo img { height: 50px; width: auto; }
.nav-tagline { font-size: 0.65rem; color: var(--texto-claro); font-weight: 500; letter-spacing: 0.5px; }
.nav-menu { display: flex; gap: 8px; align-items: center; }
.nav-link { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.nav-link:hover { background: var(--gris-claro); color: var(--coral); }
.nav-cta { background: var(--grad-primario); color: white !important; }
.nav-cta:hover { background: var(--grad-primario); color: white !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--texto); transition: all 0.3s; }

/* ---------- HERO ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; background-size: cover; background-position: center; position: relative; padding: 160px 0 100px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,35,50,0.75), rgba(229,0,125,0.4)); }
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }

/* ---------- Iconos Font Awesome ---------- */
.hero-badge i, .value-icon i, .founder-buttons i, .check-list i, .btn i { line-height: 1; margin-right: 6px; }
.check-list li i { color: var(--coral); margin-right: 8px; }
.pilar-icon i, .area-icon i, .programa-header i, .card-meta i, .esg-card h3 i, .cta-final i { line-height: 1; }
.card-meta i, .cta-final i { margin-right: 4px; opacity: .8; }
.noticia-meta i { margin-right: 6px; opacity: .8; }
.articulo-meta i, .share-btn i { margin-right: 6px; opacity: .8; }
.footer-social a i, .footer-contact li i { line-height: 1; }
.footer-contact li i { margin-right: 8px; color: var(--coral); }

.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: white; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: white; letter-spacing: -2px; line-height: 1.1; margin-bottom: 20px; }
.hero-highlight { display: block; background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 550px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #b43300 0%, #2f8100 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(226,35,26,0.12), transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; letter-spacing: -2px; margin: 16px 0; }
.page-hero h1 span { background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero .hero-sub { font-size: 1.15rem; color: var(--blanco); max-width: 600px; }

/* ---------- FILOSOFÍA ---------- */
.filosofia { padding: 100px 0; background: linear-gradient(180deg, #FFF 0%, #F7F9FC 100%); }
.pilares-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 40px; }
.pilar { text-align: center; padding: 32px 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all 0.4s; position: relative; overflow: hidden; }
.pilar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-primario); transform: scaleX(0); transition: transform 0.4s; }
.pilar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pilar:hover::before { transform: scaleX(1); }
.pilar-icon { width: 70px; height: 70px; margin: 0 auto 16px; border-radius: 50%; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; }
.pilar-icon--rosa { background: linear-gradient(135deg, #E5007D, #662D91); }
.pilar-icon--azul { background: linear-gradient(135deg, #0072BC, #00A651); }
.pilar-icon--verde { background: linear-gradient(135deg, #00A651, #0072BC); }
.pilar-icon--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.pilar h3 { font-size: 0.95rem; font-weight: 700; }

/* ---------- STATS ---------- */
.stats { padding: 80px 0; background: var(--texto); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; }
.stat-card { text-align: center; color: white; }
.stat-number { font-size: 2.5rem; font-weight: 900; background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--coral); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---------- ÁREAS ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.area-card { background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all 0.3s; border: 1px solid var(--gris); }
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.area-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; color: #fff; }
.area-icon--verde { background: linear-gradient(135deg, #00A651, #0072BC); }
.area-icon--rosa { background: linear-gradient(135deg, #E5007D, #662D91); }
.area-icon--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.area-icon--azul { background: linear-gradient(135deg, #0072BC, #662D91); }
.area-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.area-card p { color: var(--texto-claro); font-size: 0.95rem; margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags li { padding: 4px 12px; background: var(--gris-claro); border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--texto-claro); }

/* ---------- CARDS CARRERAS ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.card { width: 350px; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-image { width: 350px; aspect-ratio: 4 / 5; /* proporción fija tipo póster vertical */ background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.card-badge { position: absolute; top: 16px; left: 16px; background: var(--grad-primario); color: white; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 12px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--texto-claro); margin-bottom: 12px; }
.card-body p { color: var(--texto-claro); font-size: 0.9rem; flex: 1; }

/* ---------- PROGRAMAS ---------- */
.programas { padding: 100px 0; background: white; }
.programa-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s; display: flex; flex-direction: column; }
.programa-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.programa-header { padding: 32px; color: white; min-height: 140px; display: flex; align-items: flex-end; }
.programa-header--verde { background: linear-gradient(135deg, #00A651, #0072BC); }
.programa-header--rosa { background: linear-gradient(135deg, #E5007D, #662D91); }
.programa-header--coral { background: linear-gradient(135deg, #E2231A, #E5007D); }
.programa-header--azul { background: linear-gradient(135deg, #0072BC, #00A651); }
.programa-header--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.programa-header h3 { font-size: 1.4rem; font-weight: 800; }
.programa-body { padding: 24px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.programa-body p { color: var(--texto-claro); margin-bottom: 20px; flex: 1; }
.programa-link { color: var(--coral); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.programa-link:hover { gap: 12px; }

/* ---------- ESG ---------- */
.esg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.esg-card { background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border-top: 4px solid var(--coral); }
.esg-card h3 { font-size: 1.3rem; margin-bottom: 16px; }
.esg-card ul { display: flex; flex-direction: column; gap: 10px; }
.esg-card li { padding-left: 20px; position: relative; color: var(--texto-claro); }
.esg-card li::before { content: '→'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* ---------- CITA / AVATAR FOTO ---------- */
.quote-section { padding: 100px 0; background: linear-gradient(135deg, #FFF5F5 0%, #F5F8FF 100%); position: relative; overflow: hidden; }
.quote-section::before { content: '\201C'; position: absolute; top: -50px; left: 50px; font-size: 300px; font-family: Georgia, serif; color: rgba(226,35,26,0.08); line-height: 1; }
.quote-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.quote-text { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; line-height: 1.5; margin-bottom: 32px; font-style: italic; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.quote-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; /* recorta la foto en círculo */ flex-shrink: 0; background: #fff; border: 3px solid rgba(255,255,255,.35); }
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; /* rellena el círculo sin deformar */ object-position: center 30%; /* centra el rostro en retratos */ display: block; }
.quote-info { text-align: left; }
.quote-info strong { display: block; font-size: 1.1rem; }
.quote-info span { color: var(--texto-claro); font-size: 0.9rem; }

/* ---------- PATROCINADORES ---------- */
.sponsors { padding: 100px 0; background: white; }
.sponsors-header { text-align: center; margin-bottom: 60px; }
.sponsors-header p { color: var(--texto-claro); font-size: 1.1rem; margin-top: 12px; }
.sponsors-cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 16px 32px; background: var(--grad-primario); color: white; border-radius: 50px; font-weight: 700; box-shadow: 0 10px 30px rgba(226,35,26,0.3); transition: all 0.3s; }
.sponsors-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(226,35,26,0.4); }
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; align-items: center; justify-items: center; }
.sponsor-logo { padding: 32px; background: var(--gris-claro); border-radius: var(--radius); transition: all 0.3s; display: flex; align-items: center; justify-content: center; min-height: 120px; width: 100%; filter: grayscale(100%); opacity: 0.7; }
.sponsor-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); box-shadow: var(--shadow-md); }
.sponsor-logo img { max-width: 100%; max-height: 70px; object-fit: contain; }
.sponsors-empty { text-align: center; padding: 60px 20px; background: var(--gris-claro); border-radius: var(--radius); }
.sponsors-empty a { color: var(--coral); font-weight: 600; }

/* ---------- CTA FINAL ---------- */
.cta-final { padding: 120px 0; background: var(--grad-primario); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%); top: -200px; right: -200px; border-radius: 50%; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; position: relative; z-index: 2; }
.cta-final p { font-size: 1.2rem; opacity: 0.95; margin-bottom: 40px; max-width: 650px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------- NOSOTROS ---------- */
.about-hero { padding: 160px 0 100px; background: linear-gradient(135deg, #FFF5F5 0%, #F5F8FF 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-grid h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px; }
.about-grid h1 span { background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-grid p { font-size: 1.1rem; color: var(--texto-claro); line-height: 1.8; margin-bottom: 16px; }
.about-image { aspect-ratio: 1; border-radius: var(--radius); background: var(--grad-primario); background-size: cover; background-position: center; box-shadow: var(--shadow-lg); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border-radius: inherit; }
.propuesta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.propuesta-text p { color: var(--texto-claro); line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }
.propuesta-vision { background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.propuesta-vision h3 { font-size: 1.3rem; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { color: var(--texto-claro); font-size: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.value-card { background: white; padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-primario); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; color: #fff; }
.value-icon--rosa { background: var(--grad-secundario); }
.value-icon--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.value-icon--azul { background: linear-gradient(135deg, #0072BC, #662D91); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--texto-claro); font-size: 0.95rem; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--gris); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding: 20px 0; width: 50%; position: relative; }
.timeline-item:nth-child(even) { align-self: flex-end; justify-content: flex-start; margin-left: 50%; }
.timeline-content { background: white; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); max-width: 380px; }
.timeline-year { font-size: 2rem; font-weight: 900; background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { color: var(--texto-claro); font-size: 0.9rem; }

/* ---------- FUNDADORA (FOTO) ---------- */
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; max-width: 900px; margin: 0 auto; }
.founder-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; color: white; font-size: 2.5rem; font-weight: 900; overflow: hidden; flex-shrink: 0; }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.founder-info h2 { font-size: 2rem; margin-bottom: 4px; }
.founder-role { color: var(--coral); font-weight: 600; margin-bottom: 16px; }
.founder-info p { color: var(--texto-claro); line-height: 1.8; margin-bottom: 24px; }
.founder-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- DETALLE CARRERA ---------- */
.detalle-hero { min-height: 500px; background-size: cover; background-position: center; position: relative; padding: 160px 0 80px; color: white; }
.detalle-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,35,50,0.7), rgba(229,0,125,0.5)); }
.detalle-hero .container { position: relative; z-index: 2; }
.detalle-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-top: 20px; letter-spacing: -1px; }
.detalle-info { background: white; margin-top: -60px; position: relative; border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-lg); max-width: 900px; margin-left: auto; margin-right: auto; }
.detalle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.detalle-item { padding: 20px; border-radius: 12px; background: var(--gris-claro); text-align: center; }
.detalle-item strong { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.detalle-desc { line-height: 1.8; color: var(--texto-claro); }
.detalle-cta { margin-top: 40px; text-align: center; padding: 32px; background: linear-gradient(135deg, #FFF5F5, #F5F8FF); border-radius: var(--radius); }
.detalle-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.detalle-cta p { color: var(--texto-claro); margin-bottom: 20px; }

/* ---------- CONTACTO ---------- */
.contact-hero { padding: 160px 0 80px; background: linear-gradient(135deg, #b43300 0%, #2f8100 100%); }
.contact-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -2px; margin: 16px 0; }
.contact-hero h1 span { background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { background: white; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.contact-form h2 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 2px solid var(--gris); border-radius: 12px; font-size: 1rem; font-family: var(--font); transition: border 0.3s; outline: none; background: white; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--coral); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: white; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: center; transition: all 0.3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; color: #fff; }
.info-icon--rosa { background: var(--grad-secundario); }
.info-icon--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.info-icon--azul { background: linear-gradient(135deg, #0072BC, #662D91); }
.info-card h3 { font-size: 0.95rem; margin-bottom: 2px; }
.info-card p { color: var(--texto-claro); font-size: 0.9rem; }
.info-card a { color: var(--coral); }
.contact-social h3 { margin-bottom: 12px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 48px; height: 48px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.social-links a:hover { transform: translateY(-4px); background: var(--grad-primario); }

/* ---------- FILTROS / VARIOS ---------- */
.filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 20px; border-radius: 50px; border: 2px solid var(--gris); background: white; color: var(--texto); font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 0.9rem; font-family: var(--font); }
.filter-btn:hover, .filter-btn.active { background: var(--grad-primario); color: white; border-color: transparent; box-shadow: 0 8px 20px rgba(226,35,26,0.3); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--texto-claro); grid-column: 1/-1; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--texto); }
.flash { padding: 16px 24px; border-radius: 12px; margin: 100px 24px 0; max-width: var(--max-width); margin-left: auto; margin-right: auto; font-weight: 500; }
.flash--success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.flash--error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

/* ---------- FOOTER ---------- */
.footer { background: var(--texto); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.7); margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: var(--grad-primario); transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 { font-size: 1rem; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--coral); }
.footer-contact li { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

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

/* ---------- SERVICIOS ---------- */
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.servicio-card { background: white; padding: 36px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: all .3s; border: 1px solid var(--gris); }
.servicio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.servicio-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-primario); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; color: #fff; }
.servicio-icon--rosa { background: var(--grad-secundario); }
.servicio-icon--azul { background: linear-gradient(135deg, #0072BC, #662D91); }
.servicio-icon--verde { background: linear-gradient(135deg, #00A651, #0072BC); }
.servicio-icon--dorado { background: linear-gradient(135deg, #FFC20E, #E2231A); }
.servicio-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.servicio-card p { color: var(--texto-claro); font-size: .95rem; margin-bottom: 16px; }
.servicio-card ul { display: flex; flex-direction: column; gap: 8px; }
.servicio-card li { padding-left: 20px; position: relative; color: var(--texto-claro); font-size: .9rem; }
.servicio-card li::before { content: '→'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

/* ---------- BENEFICIOS ---------- */
.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; max-width: 900px; margin: 0 auto; }
.beneficio { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); font-weight: 500; }
.beneficio span { color: var(--verde); font-weight: 800; }

/* ---------- IMPACTO ---------- */
.impacto-acciones { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.impacto-item { text-align: center; padding: 32px 20px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.impacto-item span { font-size: 2rem; display: block; margin-bottom: 12px; }
.impacto-item h3 { margin-bottom: 8px; }
.impacto-item p { color: var(--texto-claro); font-size: .9rem; }
.ods-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.ods-item { background: white; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; font-weight: 600; font-size: .9rem; }
.ods-item span { display: block; font-size: 2rem; font-weight: 900; background: var(--grad-primario); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }

/* ---------- BLOG ---------- */
.blog-list { display: flex; flex-direction: column; gap: 24px; }
.noticia-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .4s; display: grid; grid-template-columns: 300px 1fr; min-height: 220px; text-decoration: none; color: inherit; }
.noticia-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.noticia-img { background: var(--grad-secundario); background-size: cover; background-position: center; min-height: 220px; }
.noticia-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.noticia-meta { display: flex; gap: 16px; color: var(--texto-claro); font-size: .85rem; margin-bottom: 12px; }
.noticia-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.noticia-body p { color: var(--texto-claro); margin-bottom: 16px; }
.read-more { color: var(--azul); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.read-more:hover { gap: 12px; }

/* ---------- ARTÍCULO ---------- */
.articulo { max-width: 800px; margin: 0 auto; padding: 140px 24px 80px; }
.articulo-meta { display: flex; gap: 16px; color: var(--texto-claro); font-size: .9rem; margin-bottom: 20px; }
.articulo h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; line-height: 1.2; margin-bottom: 24px; }
.articulo-extracto { font-size: 1.25rem; color: var(--texto-claro); margin-bottom: 40px; padding-left: 20px; border-left: 4px solid var(--coral); font-style: italic; }
.articulo-imagen { width: 100%; height: 500px; border-radius: var(--radius); background-size: cover; background-position: center; margin-bottom: 40px; box-shadow: var(--shadow-md); }
.articulo-contenido { font-size: 1.1rem; line-height: 1.9; }
.articulo-contenido p { margin-bottom: 24px; }
.articulo-contenido h2 { font-size: 1.8rem; margin: 40px 0 20px; font-weight: 800; }
.volver { display: inline-flex; align-items: center; gap: 8px; color: var(--azul); font-weight: 600; margin-bottom: 40px; transition: gap .3s; }
.volver:hover { gap: 12px; }
.share { display: flex; gap: 12px; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--gris); flex-wrap: wrap; align-items: center; }
.share-btn { padding: 10px 20px; border-radius: 50px; background: var(--gris-claro); font-weight: 600; font-size: .9rem; transition: all .3s; }
.share-btn:hover { background: var(--grad-primario); color: white; }

/* ---------- QUÉ HACEMOS ---------- */
.que-hacemos-content { max-width: 800px; margin: 0 auto; }
.que-hacemos-content p { color: var(--texto-claro); line-height: 1.8; margin-bottom: 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 968px) {
    .about-grid, .propuesta-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-avatar { margin: 0 auto; }
    .founder-buttons { justify-content: center; }
}
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 50px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; gap: 4px; box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform 0.3s; z-index: 999; }
    .nav-menu.active { transform: translateY(0); top: 82px;}
    .nav-toggle { display: flex; }
    .pilares-grid { grid-template-columns: repeat(2, 1fr); }
    .detalle-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding-left: 50px; justify-content: flex-start; }
    .noticia-card { grid-template-columns: 1fr; }
    .noticia-img { min-height: 200px; }
    .articulo-imagen { height: 300px; }
}
@media print { .header, .footer, .cta-final, .nav-toggle { display: none; } body { color: #000; } }