:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --texto: #0f172a;
  --gris: #475569;
  --borde: #e5e7eb;
}

/* TODO el CSS que pasaste va acá */
/* ======================================================
VARIABLES GLOBALES
====================================================== */
:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --gris: #475569;
  --borde: #e5e7eb;
  --texto: #0b2330;
  --texto-suave: #eef6f3;
}

/* ======================================================
RESET BÁSICO
====================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 16.5px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--texto);
  padding-top: 95px;
}

/* ======================================================
HEADER / MENÚ
====================================================== */
.corp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--verde-claro-menu);
  border-bottom: 4px solid var(--verde);
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(15, 107, 67, 0.15);
}

.corp-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
}

/* LOGO */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  height: 56px;
}

/* ======================================================
NAVEGACIÓN
====================================================== */


.corp-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--texto);
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
}

/* underline */
.corp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--verde);
  transition: width .25s ease;
}

.corp-nav a:hover::after {
  width: 100%;
}

.corp-nav a:hover {
  color: var(--verde-oscuro);
}

/* CTA SOCIOS */
.cta {
  border: 2px solid var(--verde);
  padding: 6px 16px;
}

.cta::after {
  display: none;
}

.cta:hover {
  background: var(--verde);
  color: #fff !important;
}

/* ======================================================
DROPDOWNS
====================================================== */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #fff;
  border-top: 4px solid var(--verde);
  border: 1px solid var(--borde);
  padding: 14px 0;
  display: none;
  z-index: 99999;
}

.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: none;
  color: var(--gris);
}

.dropdown a:hover {
  background: #eef6f2;
  color: var(--verde-oscuro);
}

.has-dropdown:hover > .dropdown {
  display: block;
}

/* ======================================================
CONTENIDO
====================================================== */
.site-content {
  max-width: 1200px;
  margin: auto;
  padding: 64px 32px;
}

/* ======================================================
FOOTER
====================================================== */
.corp-footer {
  margin-top: 64px;
  background: linear-gradient(180deg, #1f6a55 0%, #164f41 100%);
  color: var(--texto-suave);
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 44px 36px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
}

/* FOOTER BRAND */
.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 78px;
  margin: 0 auto 18px;
  display: block;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 420px;
  margin: auto;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--texto-suave);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* CONTACTO */
.footer-contact p {
  font-size: 13px;
  margin: 4px 0;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 22px 0 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  background: rgba(0,0,0,.12);
}

/* ======================================================
UTILIDADES
====================================================== */
.organigrama-img {
  width: 100%;
  max-width: 900px;
  max-height: 500px;
  object-fit: contain;
  margin: auto;
  display: block;
}
/* ===== FIX MENU DROPDOWN ===== */

/* SOLO el menú principal usa flex */
.corp-nav > ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

/* Preparar dropdown */
.corp-nav li {
  position: relative;
}

/* Submenú oculto */
.corp-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  z-index: 999;
}

/* Mostrar submenú al pasar el mouse */
.corp-nav li:hover > ul {
  display: block;
}


:root{
    --primary:#0a3f52;
    --accent:#16c787;
    --accent-dark:#0faa6f;
    --dark:#0b2330;
    --gray:#5f737b;
    --light:#f4faf7;
    --radius-xl:26px;
    --radius-lg:18px;
}

.section{
    padding:90px 0;
}

.container{
    max-width:1320px;
    margin:0 auto;
    padding:0 40px;
    font-family:'Inter',sans-serif;
}

.section-title{
    text-align:center;
    font-size:clamp(2.8rem,4vw,3.6rem);
    font-weight:900;
    color:var(--primary);
    margin-bottom:24px;
}

.section-title::after{
    content:"";
    width:120px;
    height:6px;
    background:var(--accent);
    display:block;
    margin:18px auto 0;
    border-radius:12px;
}

/* PROGRAMAS */
.programs-card{
    background:#fff;
    border-radius:var(--radius-xl);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    padding:42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.prog-left{
    display:flex;
    gap:28px;
}

.prog-badge{
    background:var(--light);
    padding:20px;
    border-radius:18px;
}

.prog-logo{
    max-width:120px;
}

.prog-texts h4{
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:800;
    color:var(--accent);
    margin-bottom:6px;
}

.prog-title{
    font-size:1.8rem;
    font-weight:900;
    color:var(--primary);
    margin-bottom:10px;
}

.prog-desc{
    font-size:1.1rem;
    color:var(--gray);
}

.btn-primary{
    padding:16px 34px;
    border-radius:40px;
    background:linear-gradient(135deg,var(--accent),var(--accent-dark));
    color:#fff;
    font-weight:800;
    text-decoration:none;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(22,199,135,.45);
}

/* RECURSOS */
.resources-grid{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:36px;
}

.resource-card{
    background:#fff;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:0 14px 36px rgba(0,0,0,.12);
}

.resource-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.rc-body{
    padding:26px;
}

.rc-body h5{
    font-size:1.2rem;
    font-weight:800;
    color:var(--primary);
}

.rc-body p{
    margin:10px 0 16px;
    color:var(--gray);
}

.rc-link{
    font-weight:800;
    color:var(--accent);
    text-decoration:none;
}

/* NOVEDADES */
.news-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:36px;
}

.news-card{
    background:#fff;
    padding:34px;
    border-radius:var(--radius-lg);
    box-shadow:0 18px 44px rgba(0,0,0,.12);
}

.news-item-title{
    font-size:1.4rem;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.news-text{
    color:var(--gray);
    margin-bottom:22px;
}

.news-link{
    font-weight:800;
    color:var(--accent);
    text-decoration:none;
}

/* MISION */
.mision-grid{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:center;
}

.mision-img img{
    width:100%;
    border-radius:var(--radius-xl);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.mision-content p{
    font-size:1.15rem;
    margin-bottom:22px;
}

.mision-content li{
    margin-bottom:10px;
}

/* PARTNERS */
.primary-logos-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:50px;
}

.primary-logo-box img{
    max-height:90px;
}

@media(max-width:900px){
    .programs-card{flex-direction:column;}
    .mision-grid{grid-template-columns:1fr;}
}
/* =====================================================
UPGRADE VISUAL PREMIUM — ASIQUR
===================================================== */

/* ---------- ATMÓSFERA GENERAL ---------- */
.section{
    padding:110px 0;
    position:relative;
}

.section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(600px 200px at 10% 0%, rgba(22,199,135,.08), transparent 60%),
        radial-gradient(500px 240px at 90% 100%, rgba(10,63,82,.08), transparent 65%);
    pointer-events:none;
}

/* ---------- TÍTULOS MÁS CONTUNDENTES ---------- */
.section-title{
    font-size:clamp(3.2rem,4.5vw,4.4rem);
    letter-spacing:-1px;
}

.section-title::after{
    width:160px;
    height:7px;
    box-shadow:0 10px 26px rgba(22,199,135,.45);
}

/* =====================================================
PROGRAMAS
===================================================== */
.programs-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(22,199,135,.25);
    background:
        linear-gradient(180deg,#ffffff 0%,#f6fbf9 100%);
}

.programs-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--accent),var(--accent-dark));
}

.prog-badge{
    background:linear-gradient(145deg,#ffffff,#eef7f2);
    box-shadow:
        inset 0 0 0 1px rgba(22,199,135,.25),
        0 12px 26px rgba(0,0,0,.08);
}

.prog-title{
    font-size:2.1rem;
}

.prog-desc{
    font-size:1.15rem;
    line-height:1.7;
}

/* ---------- BOTÓN HERO ---------- */
.btn-primary{
    font-size:1rem;
    letter-spacing:.5px;
    position:relative;
    overflow:hidden;
}

.btn-primary::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,.45),transparent 60%);
    transform:translateX(-100%);
    transition:.5s;
}

.btn-primary:hover::after{
    transform:translateX(100%);
}

/* =====================================================
RECURSOS
===================================================== */
.resource-card{
    border:1px solid rgba(0,0,0,.05);
}

.resource-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.18);
}

.resource-card img{
    filter:saturate(1.05) contrast(1.05);
}

.rc-body{
    position:relative;
}

.rc-body::before{
    content:"";
    position:absolute;
    top:0;
    left:26px;
    right:26px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--accent),transparent);
}

.rc-body h5{
    font-size:1.35rem;
}

/* =====================================================
NOVEDADES
===================================================== */
.news-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(10,63,82,.15);
    background:
        linear-gradient(180deg,#ffffff 0%,#f5fbf9 100%);
}

.news-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,rgba(22,199,135,.08),transparent 60%);
    opacity:0;
    transition:.4s;
}

.news-card:hover::before{
    opacity:1;
}

.news-item-title{
    font-size:1.55rem;
    line-height:1.3;
}

.news-link{
    align-self:flex-start;
    position:relative;
}

.news-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:2px;
    background:var(--accent);
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s;
}

.news-link:hover::after{
    transform:scaleX(1);
}

/* =====================================================
MISIÓN
===================================================== */
.mision-grid{
    background:linear-gradient(145deg,#ffffff,#f1f8f4);
    border-radius:var(--radius-xl);
    padding:60px;
    box-shadow:0 24px 60px rgba(0,0,0,.15);
}

.mision-img img{
    transform:scale(1.03);
}

.mision-content p{
    font-size:1.25rem;
    line-height:1.75;
}

.mision-content ul{
    margin-top:20px;
}

.mision-content li{
    padding-left:18px;
    position:relative;
}

.mision-content li::before{
    content:"";
    width:8px;
    height:8px;
    background:var(--accent);
    border-radius:50%;
    position:absolute;
    left:0;
    top:10px;
}

/* =====================================================
PARTNERS
===================================================== */
.primary-logo-box img{
    filter:grayscale(100%);
    opacity:.85;
    transition:.3s;
}

.primary-logo-box img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

/* =====================================================
RESPONSIVE EXTRA
===================================================== */
@media(max-width:900px){
    .section{padding:80px 0;}
    .section-title{font-size:2.6rem;}
    .mision-grid{padding:36px;}
}
/* =====================================================
ASIQUR — CSS PREMIUM GLOBAL
===================================================== */

:root{
    --primary:#0a3f52;
    --accent:#16c787;
    --accent-dark:#0faa6f;
    --dark:#0b2330;
    --gray:#5f737b;
    --light:#f4f7f6;

    --radius-xl:40px;
    --radius-lg:20px;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--dark);
    line-height:1.75;
    background:#ffffff;
}

/* =====================================================
RITMO VISUAL POR SECCIÓN
===================================================== */

.section{
    position:relative;
    padding:110px 0;
    background:#ffffff;
}

.section:nth-of-type(even){
    background:linear-gradient(180deg,#f2f5f4 0%,#ffffff 100%);
}

.container{
    max-width:1320px;
    margin:0 auto;
    padding:0 40px;
}

/* fondo decorativo suave */
.section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(600px 240px at 10% 0%, rgba(22,199,135,.08), transparent 60%),
        radial-gradient(500px 260px at 90% 100%, rgba(10,63,82,.08), transparent 65%);
    pointer-events:none;
}

/* =====================================================
TÍTULOS
===================================================== */

.section-title{
    text-align:center;
    font-size:clamp(3.2rem,4.5vw,4.4rem);
    font-weight:900;
    color:var(--primary);
    letter-spacing:-1px;
    margin-bottom:28px;
}

.section-title::after{
    content:"";
    width:160px;
    height:7px;
    background:linear-gradient(90deg,var(--accent),var(--accent-dark));
    display:block;
    margin:22px auto 0;
    border-radius:12px;
    box-shadow:0 10px 26px rgba(22,199,135,.45);
}

/* =====================================================
PROGRAMAS
===================================================== */

.programs-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#f6fbf9 100%);
    border-radius:var(--radius-xl);
    padding:48px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    border:1px solid rgba(22,199,135,.25);
    box-shadow:0 28px 70px rgba(0,0,0,.15);
    overflow:hidden;
}

.programs-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    background:linear-gradient(90deg,var(--accent),var(--accent-dark));
}

.prog-left{
    display:flex;
    gap:32px;
    align-items:flex-start;
}

.prog-badge{
    background:linear-gradient(145deg,#ffffff,#eef7f2);
    padding:24px;
    border-radius:22px;
    box-shadow:
        inset 0 0 0 1px rgba(22,199,135,.25),
        0 16px 36px rgba(0,0,0,.1);
}

.prog-logo{
    max-width:130px;
}

.prog-texts h4{
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:800;
    color:var(--accent);
    margin-bottom:8px;
}

.prog-title{
    font-size:2.2rem;
    font-weight:900;
    color:var(--primary);
    margin-bottom:14px;
}

.prog-desc{
    font-size:1.15rem;
    color:var(--gray);
    max-width:560px;
}

/* botón */
.btn-primary{
    padding:18px 40px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--accent),var(--accent-dark));
    color:#ffffff;
    font-weight:900;
    text-decoration:none;
    letter-spacing:.5px;
    position:relative;
    overflow:hidden;
    transition:.3s;
}

.btn-primary::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,rgba(255,255,255,.45),transparent 60%);
    transform:translateX(-100%);
    transition:.6s;
}

.btn-primary:hover::after{
    transform:translateX(100%);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 50px rgba(22,199,135,.45);
}

/* =====================================================
RECURSOS
===================================================== */

.resources-grid{
    margin-top:90px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:42px;
}

.resource-card{
    background:#ffffff;
    border-radius:var(--radius-lg);
    overflow:hidden;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 18px 44px rgba(0,0,0,.14);
    transition:.35s;
}

.resource-card:hover{
    transform:translateY(-12px);
    box-shadow:0 34px 70px rgba(0,0,0,.22);
}

.resource-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    filter:saturate(1.05) contrast(1.05);
}

.rc-body{
    padding:30px;
    position:relative;
}

.rc-body::before{
    content:"";
    position:absolute;
    top:0;
    left:30px;
    right:30px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--accent),transparent);
}

.rc-body h5{
    font-size:1.35rem;
    font-weight:900;
    color:var(--primary);
}

.rc-body p{
    margin:14px 0 20px;
    color:var(--gray);
}

.rc-link{
    font-weight:900;
    color:var(--accent);
    text-decoration:none;
}

/* =====================================================
NOVEDADES
===================================================== */

.news-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:42px;
}

.news-card{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#f5fbf9 100%);
    padding:38px;
    border-radius:var(--radius-lg);
    border:1px solid rgba(10,63,82,.15);
    box-shadow:0 22px 55px rgba(0,0,0,.16);
    overflow:hidden;
}

.news-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(22,199,135,.1),transparent 60%);
    opacity:0;
    transition:.4s;
}

.news-card:hover::before{
    opacity:1;
}

.news-item-title{
    font-size:1.6rem;
    font-weight:900;
    color:var(--primary);
    line-height:1.3;
    margin-bottom:16px;
}

.news-text{
    color:var(--gray);
    margin-bottom:24px;
}

.news-link{
    font-weight:900;
    color:var(--accent);
    text-decoration:none;
    position:relative;
}

.news-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:100%;
    height:2px;
    background:var(--accent);
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s;
}

.news-link:hover::after{
    transform:scaleX(1);
}

/* =====================================================
NUESTRA MISIÓN — SECCIÓN EMBLEMA
===================================================== */

.mision-grid{
    position:relative;
    background:linear-gradient(145deg,#ffffff 0%,#eef6f2 100%);
    border-radius:var(--radius-xl);
    padding:90px;
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:80px;
    box-shadow:
        0 45px 100px rgba(0,0,0,.2),
        inset 0 0 0 1px rgba(22,199,135,.25);
}

.mision-grid::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:10px;
    background:linear-gradient(90deg,var(--accent),var(--accent-dark));
    border-radius:var(--radius-xl) var(--radius-xl) 0 0;
}

.mision-img{
    position:relative;
}

.mision-img img{
    width:100%;
    border-radius:32px;
    box-shadow:0 32px 80px rgba(0,0,0,.28);
    transform:translateY(-14px);
}

.mision-img::after{
    content:"";
    position:absolute;
    inset:-30px;
    background:radial-gradient(ellipse at center,rgba(22,199,135,.25),transparent 70%);
    z-index:-1;
}

.mision-content .section-title{
    text-align:left;
}

.mision-content .section-title::after{
    margin-left:0;
}

.mision-content p{
    font-size:1.35rem;
    font-weight:500;
    line-height:1.85;
    margin-bottom:40px;
}

.mision-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mision-content li{
    position:relative;
    padding-left:38px;
    margin-bottom:20px;
    font-size:1.15rem;
    color:#334e57;
}

.mision-content li::before{
    content:"";
    width:14px;
    height:14px;
    background:radial-gradient(circle at 30% 30%,#fff 20%,var(--accent) 60%);
    border-radius:50%;
    position:absolute;
    left:0;
    top:7px;
    box-shadow:0 8px 18px rgba(22,199,135,.45);
}

/* =====================================================
PARTNERS
===================================================== */

.primary-logos-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:60px;
}

.primary-logo-box img{
    max-height:90px;
    filter:grayscale(100%);
    opacity:.85;
    transition:.35s;
}

.primary-logo-box img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:1000px){
    .section{padding:90px 0;}
    .programs-card{flex-direction:column;align-items:flex-start;}
    .mision-grid{
        grid-template-columns:1fr;
        padding:60px;
        gap:50px;
    }
}

@media(max-width:760px){
    .container{padding:0 24px;}
    .section-title{font-size:2.6rem;}
    .mision-grid{padding:40px;}
    .mision-img img{transform:none;}
    .mision-content .section-title{
        text-align:center;
    }
    .mision-content .section-title::after{
        margin:22px auto 0;
    }
}



/* =====================================================
PARTNERS CAROUSEL — AUTO SCROLL
===================================================== */

.partners-carousel{
    position:relative;
    padding:80px 0 40px;
    overflow:hidden;
}

.carousel-wrapper{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* efecto fade en bordes */
.carousel-wrapper::before,
.carousel-wrapper::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:3;
    pointer-events:none;
}

.carousel-wrapper::before{
    left:0;
    background:linear-gradient(90deg,#ffffff 0%,rgba(255,255,255,0) 100%);
}

.carousel-wrapper::after{
    right:0;
    background:linear-gradient(270deg,#ffffff 0%,rgba(255,255,255,0) 100%);
}

/* pista */
.carousel-track{
    display:flex;
    align-items:center;
    gap:80px;
    width:max-content;
    animation:carousel-scroll 70s linear infinite;
}

/* pausa al hover */
.carousel-wrapper:hover .carousel-track{
    animation-play-state:paused;
}

/* logos */
.carousel-logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.carousel-logo img{
    max-height:80px;
    max-width:180px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.35s ease;
}

.carousel-logo img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}

/* animación */
@keyframes carousel-scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* responsive */
@media(max-width:768px){
    .carousel-track{
        gap:50px;
        animation-duration:55s;
    }

    .carousel-logo img{
        max-height:60px;
        max-width:140px;
    }
}
/* =====================================================
ORGANISMOS INTERNACIONALES — LOGOS GRANDES
===================================================== */

.primary-logo-box{
    width:200px;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.primary-logo-box img{
    max-width:85%;
    max-height:85%;
    object-fit:contain;
    filter:none;
    opacity:1;
    transition:transform .35s ease;
}

.primary-logo-box img:hover{
    transform:scale(1.08);
}

/* =====================================================
CARRUSEL — FONDO VERDE INSTITUCIONAL
===================================================== */

.partners-carousel{
    background:linear-gradient(
        135deg,
        #0faa6f 0%,
        #16c787 50%,
        #0faa6f 100%
    );
    padding:90px 0 70px;
    position:relative;
}

/* overlay sutil para profundidad */
.partners-carousel::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(600px 260px at 20% 0%,rgba(255,255,255,.18),transparent 60%),
        radial-gradient(500px 260px at 80% 100%,rgba(0,0,0,.12),transparent 70%);
    pointer-events:none;
}

/* fade lateral adaptado a fondo verde */
.partners-carousel .carousel-wrapper::before{
    background:linear-gradient(
        90deg,
        #12b57b 0%,
        rgba(18,181,123,0) 100%
    );
}

.partners-carousel .carousel-wrapper::after{
    background:linear-gradient(
        270deg,
        #12b57b 0%,
        rgba(18,181,123,0) 100%
    );
}

/* =====================================================
CARRUSEL — LOGOS EN COLOR
===================================================== */

.partners-carousel .carousel-logo img{
    filter:none;
    opacity:1;
    max-height:90px;
    max-width:200px;
    transition:.35s ease;
}

.partners-carousel .carousel-logo img:hover{
    transform:scale(1.12);
}

/* separación más aireada */
.partners-carousel .carousel-track{
    gap:90px;
}

/* responsive */
@media(max-width:768px){
    .primary-logo-box{
        width:160px;
        height:100px;
    }

    .partners-carousel{
        padding:70px 0 60px;
    }

    .partners-carousel .carousel-logo img{
        max-height:70px;
        max-width:150px;
    }
}
/* =====================================================
CARRUSEL — VERDE CLARO INSTITUCIONAL
===================================================== */

.partners-carousel{
    background:linear-gradient(
        135deg,
        #f1fbf6 0%,
        #e6f7ef 50%,
        #f1fbf6 100%
    );
}

/* overlay suave para profundidad */
.partners-carousel::before{
    background:
        radial-gradient(600px 260px at 20% 0%,rgba(255,255,255,.9),transparent 60%),
        radial-gradient(500px 260px at 80% 100%,rgba(18,181,123,.12),transparent 70%);
}

/* fades laterales adaptados al verde claro */
.partners-carousel .carousel-wrapper::before{
    background:linear-gradient(
        90deg,
        #eefaf4 0%,
        rgba(238,250,244,0) 100%
    );
}

.partners-carousel .carousel-wrapper::after{
    background:linear-gradient(
        270deg,
        #eefaf4 0%,
        rgba(238,250,244,0) 100%
    );
}
/* =====================================================
LOGO CÁMARA DE INDUSTRIAS — DESTACADO
===================================================== */

/* target por src específico */
.primary-logo-box img[src*="cmaradeindustrias_asiqur"]{
    max-width:95%;
    max-height:95%;
    transform:scale(1.15);
}
/* =====================================================
RESOURCES GRID — 4 EN LÍNEA SIN CORRIMIENTOS
===================================================== */

/* .resources-grid{
    display:flex;
    flex-wrap:nowrap;       /* nunca bajan */
    /* justify-content:space-between;
    gap:20px;
} */ */

/* usamos calc para compensar el gap */
/* .resource-card{
    flex:0 0 calc(25% - 15px);
    max-width:calc(25% - 15px);
} */
/* Aumentar separación entre Misión y la siguiente sección */
.section.mision-grid {
    margin-bottom: 80px; /* ajustá el valor según lo que quieras de espacio */
}

/* Alternativa: si querés afectar solo la sección de Misión */
.mision-grid {
    padding-bottom: 80px; /* espacio interno inferior */
}

/* Si la sección siguiente tiene clase, podés usar: */
.section.organismos-internacionales {
    margin-top: 80px; /* espacio desde arriba */
}
/* Separación más amplia entre Misión y la siguiente sección */
.mision-grid {
    margin-bottom: 150px; /* mucho más espacio debajo de Misión */
}

/* Alternativa: si querés afectar la sección siguiente */
.section.organismos-internacionales {
    margin-top: 150px; /* espacio desde arriba de la nueva sección */
}
.btn-primary {
    font-size: 20px; /* tamaño del texto, ajustá según necesites */
    padding: 12px 24px; /* opcional, para que el botón crezca un poco */
}
/* Sección Misión: agrandar texto y lista, dejando el título igual */
.mision-content p {
    font-size: 22px;      /* texto principal más grande */
    line-height: 1.6;     /* mejor lectura */
}

.mision-content ul li {
    font-size: 20px;      /* ítems de la lista más grandes */
    line-height: 1.5;
}

/* Contenedor de logos */
.primary-logos-row {
    display: flex;              /* pone los logos en fila */
    flex-wrap: nowrap;          /* evita que se bajen */
    justify-content: space-between; /* espacio entre logos */
    align-items: center;        /* alinea verticalmente al centro */
    overflow-x: auto;           /* permite scroll horizontal si no entran todos */
    gap: 20px;                  /* espacio entre logos */
    padding: 20px 0;            /* espacio arriba y abajo */
}

/* Cada caja de logo */
.primary-logo-box img {
    max-height: 80px;           /* tamaño máximo de cada logo */
    height: auto;
    width: auto;
}

/* Agrandar todos los logos */
.primary-logo-box img {
    max-height: 120px; /* aumentamos tamaño general */
    height: auto;
    width: auto;
}

/* Ajuste específico para el logo de la Cámara de Industrias */
.primary-logo-box img[src="https://asiqur.org/images/2018/07/22/cmaradeindustrias_asiqur.jpg"] {
    margin-top: 10px; /* baja un poco el logo */
}

/* ===============================
CTA – VER TODAS LAS NOVEDADES
=============================== */

.news-cta{
    margin-top:60px;
    text-align:center;
}

.btn-ver-todas{
    display:inline-block;
    padding:16px 42px;
    border-radius:999px;

    font-family:'Inter', sans-serif;
    font-size:15px;
    font-weight:800;
    letter-spacing:.02em;

    color:#0a3f52;
    text-decoration:none;

    background:linear-gradient(
        135deg,
        #e9f6f1 0%,
        #f6fbf9 100%
    );

    border:2px solid #16c787;

    box-shadow:0 12px 30px rgba(22,199,135,.25);
    transition:all .35s ease;
}

.btn-ver-todas:hover{
    background:linear-gradient(
        135deg,
        #16c787 0%,
        #0faa6f 100%
    );
    color:#ffffff;
    transform:translateY(-3px);
    box-shadow:0 22px 45px rgba(22,199,135,.45);
}

.resources-grid {
  margin-bottom: 60px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --texto: #0f172a;
  --gris: #475569;
  --borde: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--texto);
  padding-top: 130px; /* 🔥 espacio para header fijo */
}

/* ================= HEADER ================= */
.corp-header {
  position: fixed;                 /* 🔥 SIEMPRE FIJO */
  top: 0;
  left: 0;
  width: 100%;
  background: var(--verde-claro-menu); /* 🔥 verde corporativo */
  border-bottom: 4px solid var(--verde);
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(15, 107, 67, 0.15);
}

.corp-inner {
  max-width: 1400px;
  margin: auto;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
}

/* ================= BRAND ================= */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-text {
  display: none;
}

.brand-link img {
  height: 78px;
  width: auto;
}

/* ================= NAV ================= */
.corp-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 44px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.corp-nav a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--texto);
  text-decoration: none;
  padding-bottom: 8px;
  position: relative;
}

/* underline corporativo */
.corp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--verde);
  transition: width 0.25s ease;
}

.corp-nav a:hover::after {
  width: 100%;
}

.corp-nav a:hover {
  color: var(--verde-oscuro);
}

/* ================= CTA SOCIOS ================= */
.cta {
  border: 3px solid var(--verde);
  padding: 10px 20px;
}

.cta::after {
  display: none;
}

.cta:hover {
  background: var(--verde);
  color: #fff !important;
}

/* ================= DROPDOWN ================= */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 320px;
  background: #ffffff;
  border-top: 4px solid var(--verde);
  border-left: 1px solid var(--borde);
  border-right: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
  padding: 14px 0;
  display: none !important;
  z-index: 99999;
}

.dropdown a {
  display: block;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: none;
  color: var(--gris);
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: #eef6f2;
  color: var(--verde-oscuro);
}

.has-dropdown:hover > .dropdown {
  display: block !important;
}

:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --texto: #0f172a;
  --gris: #475569;
  --borde: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--texto);
  padding-top: 130px; /* 🔥 espacio para header fijo */
}

/* ================= HEADER ================= */
.corp-header {
  position: fixed;                 /* 🔥 SIEMPRE FIJO */
  top: 0;
  left: 0;
  width: 100%;
  background: var(--verde-claro-menu); /* 🔥 verde corporativo */
  border-bottom: 4px solid var(--verde);
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(15, 107, 67, 0.15);
}

.corp-inner {
  max-width: 1400px;
  margin: auto;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
}

/* ================= BRAND ================= */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-text {
  display: none;
}

.brand-link img {
  height: 78px;
  width: auto;
}

/* ================= NAV ================= */
.corp-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 44px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.corp-nav a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--texto);
  text-decoration: none;
  padding-bottom: 8px;
  position: relative;
}

/* underline corporativo */
.corp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--verde);
  transition: width 0.25s ease;
}

.corp-nav a:hover::after {
  width: 100%;
}

.corp-nav a:hover {
  color: var(--verde-oscuro);
}

/* ================= CTA SOCIOS ================= */
.cta {
  border: 3px solid var(--verde);
  padding: 10px 20px;
}

.cta::after {
  display: none;
}

.cta:hover {
  background: var(--verde);
  color: #fff !important;
}

/* ================= DROPDOWN ================= */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 320px;
  background: #ffffff;
  border-top: 4px solid var(--verde);
  border-left: 1px solid var(--borde);
  border-right: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
  padding: 14px 0;
  display: none !important;
  z-index: 99999;
}

.dropdown a {
  display: block;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: none;
  color: var(--gris);
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: #eef6f2;
  color: var(--verde-oscuro);
}

.has-dropdown:hover > .dropdown {
  display: block !important;
}

/* ===== REDUCCIÓN DE ALTURA DEL MENÚ ===== */

/* reduce padding general del header */
.corp-inner {
  padding: 18px 40px;   /* antes: 34px 48px */
  gap: 50px;            /* antes: 80px */
}

/* achica el logo */
.brand-link img {
  height: 56px;         /* antes: 78px */
}

/* achica los items del menú */
.corp-nav a {
  font-size: 14px;      /* antes: 16px */
  padding-bottom: 4px; /* antes: 8px */
}

/* reduce separación entre items */
.corp-nav ul {
  gap: 30px;            /* antes: 44px */
}

/* ajusta CTA socios */
.cta {
  padding: 6px 16px;    /* antes: 10px 20px */
  border-width: 2px;   /* antes: 3px */
}

/* dropdown un poco más compacto */
.dropdown a {
  padding: 10px 22px;  /* antes: 12px 26px */
  font-size: 13px;     /* antes: 14px */
}

body {
  padding-top: 95px; /* antes 130px */
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f4f6f8;
}

/* Imagen en alta calidad */
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenido centrado */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

/* Texto principal */
.hero-highlight {
  font-size: 42px;
  font-weight: 700;
  color: #2e8b57;
  margin-bottom: 26px;
}

/* Botón premium */
.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #2e8b57;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Hover innovador SIN transparencia */
/*  */

.hero-btn:hover::after {
  left: 0;
}

.hero-btn {
  position: relative;
  z-index: 1;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f4f6f8;
}

/* Imagen full calidad */
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenido centrado total */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Texto principal — MÁS FUERTE */
.hero-highlight {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2e8b57;
  margin-bottom: 30px;
}

/* Botón institucional potente */
.hero-btn {
  padding: 18px 48px;
  background-color: #2e8b57;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

/* Hover limpio y claro */
 .hero-btn:hover {
  background-color: #4caf74;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
} 

/* Responsive fino */
@media (max-width: 768px) {
  .hero-highlight {
    font-size: 36px;
  }

  .hero-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}
.hero-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

/* Imagen */
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENEDOR CENTRADO REAL */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  width: 100%;
  pointer-events: none;
}

/* Texto fuerte */
.hero-highlight {
  font-size: 48px;
  font-weight: 800;
  color: #2e8b57;
  margin-bottom: 28px;
}

/* Botón */
.hero-btn {
  pointer-events: auto;
  padding: 18px 48px;
  background-color: #2e8b57;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

/* .hero-btn:hover {
  background-color: #4caf74;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
} */
.hero-highlight {
  font-size: 64px;      /* antes 48px */
  font-weight: 900;     /* más presencia */
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

.hero-btn {
  margin-top: -12px;   /* lo sube un poco */
}

  
:root{
  --verde:#0f6b43;
  --verde-oscuro:#0b4f33;
  --verde-claro:#e8f3ee;
  --texto-claro:#f1f5f9;
  --texto-suave:#d1fae5;
}

/* ===== FOOTER ===== */
.corp-footer{
  background:linear-gradient(180deg, var(--verde) 0%, var(--verde-oscuro) 100%);
  color:var(--texto-claro);
  margin-top:120px;
  font-family:"IBM Plex Sans", system-ui, sans-serif;
}

/* CONTENEDOR */
.footer-inner{
  max-width:1400px;
  margin:auto;
  padding:80px 48px 60px;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap:80px;
  align-items:start;
}

/* BRAND */
.footer-brand img{
  height:70px;
  margin-bottom:22px;
}

.footer-brand p{
  font-size:15px;
  line-height:1.7;
  color:var(--texto-suave);
  max-width:420px;
}

/* TITULOS */
.footer-links h4,
.footer-contact h4{
  font-size:14px;
  font-weight:800;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:#ffffff;
}

/* LINKS */
.footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  color:var(--texto-suave);
  text-decoration:none;
  font-size:14px;
  position:relative;
  padding-bottom:4px;
}

.footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#ffffff;
  transition:width .25s ease;
}

.footer-links a:hover::after{
  width:100%;
}

/* CONTACTO */
.footer-contact p{
  font-size:14px;
  margin:10px 0;
  color:var(--texto-suave);
}

.footer-contact a{
  color:#ffffff;
  font-weight:600;
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
}

/* SEPARADOR */
.footer-divider{
  height:1px;
  background:rgba(255,255,255,.18);
  margin:40px 0 0;
}

/* BASE */
.footer-bottom{
  text-align:center;
  padding:26px 20px;
  font-size:13px;
  background:rgba(0,0,0,.15);
  letter-spacing:.5px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:48px;
    padding:64px 32px 48px;
  }

  .footer-brand img{
    height:60px;
  }

  .footer-brand p{
    max-width:none;
  }
}

.partners-section {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.subsection-title {
  font-size: 24px;
  margin: 60px 0 30px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
  transition: transform 0.2s ease;
}

.logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.large-logos .logo-box img {
  max-height: 110px;
}

.logo-box:hover {
  transform: scale(1.05);
}

/* ===============================
   SECCIÓN PARTNERS – NIVEL CORPORATIVO
================================ */

.partners-section {
  padding: 80px 0;
  background: #fafafa;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
  color: #1f2933;
}

.subsection-title {
  font-size: 24px;
  font-weight: 500;
  margin: 80px 0 40px;
  color: #374151;
}

/* FILAS DE LOGOS */
.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 36px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* CONTENEDOR LOGO */
.logo-box {
  background: #ffffff;
  padding: 28px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
}

/* LOGO */
.logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

/* LOGOS MÁS GRANDES (SOCIOS ESTRATÉGICOS) */
.large-logos .logo-box {
  height: 160px;
}

.large-logos .logo-box img {
  max-height: 110px;
}

/* HOVER FINO, CORPORATIVO */
.logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.logo-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
  }

  .subsection-title {
    font-size: 20px;
    margin: 60px 0 30px;
  }

  .logo-box {
    height: 120px;
  }

  .logo-box img {
    max-height: 80px;
  }
}/* ===============================
   PARTNERS – NIVEL INSTITUCIONAL ALTO
================================ */

.partners-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* TITULOS */
.section-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1f2933;
  text-align: center;
}

.subsection-title {
  font-size: 24px;
  font-weight: 500;
  margin: 70px 0 30px;
  color: #374151;
  text-align: center;
}

/* FILA DE LOGOS – TODOS EN UNA LÍNEA */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0 20px;
}

/* CUADRADO LOGO */
.logo-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 24px;
  min-width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
}

/* LOGO ORIGINAL */
.logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* SOCIOS ESTRATÉGICOS MÁS GRANDES */
.large-logos .logo-box {
  height: 160px;
  min-width: 200px;
}

.large-logos .logo-box img {
  max-height: 110px;
}

/* HOVER INSTITUCIONAL */
.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

/* MOBILE – SCROLL ELEGANTE */
@media (max-width: 1024px) {
  .logos-row {
    justify-content: flex-start;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .subsection-title {
    font-size: 20px;
  }

  .logo-box {
    height: 120px;
    min-width: 160px;
  }

  .logo-box img {
    max-height: 80px;
  }
}
/* ===============================
   PARTNERS – IDENTIDAD ASIQUR
   NIVEL INSTITUCIONAL PREMIUM
================================ */

.partners-section {
  padding: 90px 0;
  background: #0f2a44; /* azul institucional profundo */
}

/* TITULOS */
.section-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.4px;
}

.subsection-title {
  font-size: 24px;
  font-weight: 500;
  margin: 80px 0 40px;
  color: #cfd8e3;
  text-align: center;
}

/* FILAS DE LOGOS */
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CAJA LOGO */
.logo-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 24px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.18);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
}

/* LOGO */
.logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

/* SOCIOS ESTRATÉGICOS MÁS GRANDES */
.large-logos .logo-box {
  height: 160px;
}

.large-logos .logo-box img {
  max-height: 110px;
}

/* HOVER SOBRIO */
.logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .logos-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 28px;
  }

  .subsection-title {
    font-size: 20px;
  }
}
/* ===============================
   PARTNERS – ASIQUR PREMIUM FINAL
================================ */

.partners-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0f2a44 0%, #0c2339 100%);
}

/* Línea institucional */
.partners-section::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: #5fb3c3;
  border-radius: 3px;
}

/* Cierre inferior */
.partners-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Títulos */
.section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 60px;
  color: #ffffff;
  text-align: center;
}

.subsection-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin: 90px 0 45px;
  color: #cfd8e3;
  text-align: center;
}

/* Grilla firme, sin scroll */
.logos-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Placas */
.logo-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 26px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

/* Logos en color original */
.logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Socios estratégicos */
.large-logos .logo-box {
  height: 170px;
}

.large-logos .logo-box img {
  max-height: 115px;
}

/* Hover sobrio */
.logo-box:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
  .logos-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .logos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 28px;
  }

  .subsection-title {
    font-size: 20px;
  }
}
/* ===============================
   AJUSTES PREMIUM – TITULOS
================================ */

/* Título principal más grande */
.section-title {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

/* Subtítulo más grande */
.subsection-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.2px;
}


/* ===============================
   CONTORNO VERDE INSTITUCIONAL
================================ */

.logo-box {
  border: 2px solid #2e7d32; /* verde institucional */
  position: relative;
  overflow: hidden;
}


/* ===============================
   HOVER “IR AL SITIO WEB”
   corporativo, elegante
================================ */

.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 68, 0.92); /* azul ASIQUR */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}


/* ===============================
   CENTRADO SOLO PARA
   “RELACIONAMIENTO CON OTROS ORGANISMOS”
================================ */

/* La segunda fila de logos */
.subsection-title + .logos-row {
  justify-items: center;
}

/* Ajuste fino para que no se estire */
.subsection-title + .logos-row .logo-box {
  max-width: 220px;
}


/* ===============================
   HOVER MÁS FIRME CON BORDE
================================ */

.logo-box:hover {
  border-color: #43a047; /* verde más vivo al hover */
}
/* ===============================
   CENTRADO SECCIÓN RELACIONAMIENTO
================================ */

/* Selecciona la fila de logos que sigue al subtítulo */
.subsection-title + .logos-row {
  justify-content: center; /* centra todos los logos */
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* espacio entre logos */
}

/* ===============================
   CUADRADOS CON BORDE VERDE PERMANENTE
================================ */

.subsection-title + .logos-row .logo-box {
  border: 2px solid #2e7d32; /* verde institucional permanente */
  height: 150px;
  width: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
}

/* Mantener el logo dentro del cuadro */
.subsection-title + .logos-row .logo-box img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===============================
   HOVER CORPORATIVO – mensaje
================================ */

.subsection-title + .logos-row .logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.subsection-title + .logos-row .logo-box:hover::after {
  opacity: 1;
}
/* ===============================
   TIPOGRAFÍA UNIFORME PARA TITULOS
================================ */
.section-title,
.subsection-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  letter-spacing: -0.3px;
}

/* ===============================
   TITULOS MÁS GRANDES
================================ */
.section-title {
  font-size: 44px; /* más grande */
  margin-bottom: 50px;
}

.subsection-title {
  font-size: 30px; /* más grande y consistente con título */
  margin: 70px 0 40px;
  color: #cfd8e3;
}

/* ===============================
   GRUPO DE LOGOS – AJUSTE GENERAL
================================ */
.logos-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1150px; /* disminuye margen lateral */
  margin: 0 auto;
  padding: 0 10px; /* menos margen lateral */
}

/* ===============================
   PLACAS LOGOS
================================ */
.logo-box {
  border: 2px solid #2e7d32; /* borde verde permanente */
  height: 160px; /* un poco más alto */
  width: 200px;  /* un poco más ancho */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
}

/* LOGO DENTRO DEL CUADRO */
.logo-box img {
  max-width: 100%;
  max-height: 100px; /* un poco más grande */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ===============================
   HOVER CORPORATIVO – mensaje
================================ */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}

/* ===============================
   CENTRADO PARA RELACIONAMIENTO
================================ */
.subsection-title + .logos-row {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .logos-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .subsection-title {
    font-size: 24px;
  }

  .logo-box {
    height: 140px;
    width: 180px;
  }

  .logo-box img {
    max-height: 80px;
  }
}
/* ===============================
   SECCIÓN LOGOS – SIN PADDING LATERAL
   Y TODO EN UNA LÍNEA
================================ */
.logos-row {
  display: flex;
  justify-content: center; /* centra los logos de la fila */
  align-items: center;
  gap: 30px; /* espacio entre logos */
  padding: 0; /* sin padding lateral */
  margin: 0 auto;
  flex-wrap: nowrap; /* evita que los logos bajen de línea */
  overflow-x: auto; /* permite scroll si no entran en pantalla */
  max-width: 100%; /* ocupa todo el ancho disponible */
}

/* ===============================
   PLACAS LOGOS
================================ */
.logo-box {
  border: 2px solid #2e7d32; /* borde verde permanente */
  height: 160px; 
  width: 200px;  
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  flex-shrink: 0; /* evita que se reduzcan si la pantalla es chica */
}

/* LOGOS */
.logo-box img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* HOVER CORPORATIVO – mensaje */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}

/* TITULOS MÁS GRANDES Y UNIFORMES */
.section-title,
.subsection-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.section-title {
  font-size: 44px;
  margin-bottom: 50px;
}

.subsection-title {
  font-size: 30px;
  margin: 70px 0 40px;
  color: #cfd8e3;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .logo-box {
    width: 180px;
    height: 150px;
  }
  .logo-box img {
    max-height: 90px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  .subsection-title {
    font-size: 24px;
  }
  .logo-box {
    width: 160px;
    height: 140px;
  }
  .logo-box img {
    max-height: 80px;
  }
}
/* ===============================
   LOGOS MÁS GRANDES DENTRO DE LOS CUADROS
================================ */

/* Mantener la fila centrada, sin wrap */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0 auto;
  flex-wrap: nowrap; /* evita que los logos bajen */
  overflow-x: auto; /* scroll solo si no entran */
  max-width: 100%;
}

/* Placa igual tamaño */
.logo-box {
  border: 2px solid #2e7d32;
  height: 160px;
  width: 200px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* LOGOS AGRANDADOS dentro de la placa */
.logo-box img {
  max-width: 90%; /* antes era 100%, ahora ocupa más dentro del cuadro */
  max-height: 140px; /* aumentar altura máxima */
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Hover corporativo */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}

/* TITULOS UNIFORMES Y MÁS GRANDES */
.section-title,
.subsection-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.section-title {
  font-size: 44px;
  margin-bottom: 50px;
}

.subsection-title {
  font-size: 30px;
  margin: 70px 0 40px;
  color: #cfd8e3;
}

/* Responsive */
@media (max-width: 1200px) {
  .logo-box img {
    max-height: 120px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
  .subsection-title {
    font-size: 24px;
  }
  .logo-box img {
    max-height: 100px;
  }
}
/* LOGOS REALMENTE MÁS GRANDES DENTRO DE LOS CUADROS */
.logo-box img {
  max-width: 95%;   /* casi todo el ancho del cuadro */
  max-height: 150px; /* casi toda la altura del cuadro */
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease; /* opcional: efecto sutil al hover */
}

/* Hover corporativo intacto */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}

/* Opcional: efecto sutil al pasar el mouse sobre el logo */
.logo-box:hover img {
  transform: scale(1.05);
}
/* ===============================
   LOGOS AGRANDADOS ESPECÍFICAMENTE
================================ */

/* Cámara de Industrias */
.logo-box img[src*="cmaradeindustrias_asiqur.jpg"] {
  max-width: 95%;
  max-height: 150px;
}

/* MERCOSUR */
.logo-box img[src*="mercosur"] {
  max-width: 95%;
  max-height: 150px;
}

/* Ministerio de Industria */
.logo-box img[src*="resize_d40f34ca981033821b03a29808ca8506a6763762.jpg"] {
  max-width: 95%;
  max-height: 150px;
}

/* Ministerio de Salud Pública */
.logo-box img[src*="logo%20msp.png"] {
  max-width: 95%;
  max-height: 150px;
}
/* ===============================
   LOGOS AGRANDADOS AL MÁXIMO
================================ */

/* Cámara de Industrias */
.logo-box img[src*="cmaradeindustrias_asiqur.jpg"] {
  max-width: 98%;
  max-height: 155px;
}

/* MERCOSUR */
.logo-box img[src*="mercosur"] {
  max-width: 98%;
  max-height: 155px;
}

/* Ministerio de Industria */
.logo-box img[src*="resize_d40f34ca981033821b03a29808ca8506a6763762.jpg"] {
  max-width: 98%;
  max-height: 155px;
}

/* Ministerio de Salud Pública */
.logo-box img[src*="logo%20msp.png"] {
  max-width: 98%;
  max-height: 155px;
}
/* ===============================
   LOGOS AGRANDADOS AL MÁXIMO ABSOLUTO
================================ */

/* Cámara de Industrias */
.logo-box img[src*="cmaradeindustrias_asiqur.jpg"] {
  max-width: 100%;
  max-height: 158px;
}

/* MERCOSUR */
.logo-box img[src*="mercosur"] {
  max-width: 100%;
  max-height: 158px;
}

/* Ministerio de Industria */
.logo-box img[src*="resize_d40f34ca981033821b03a29808ca8506a6763762.jpg"] {
  max-width: 100%;
  max-height: 158px;
}

/* Ministerio de Salud Pública */
.logo-box img[src*="logo%20msp.png"] {
  max-width: 100%;
  max-height: 158px;
}
/* ===============================
   MERCOSUR LOGO MAXIMO
================================ */
.logo-box img[src*="mercosur"] {
  max-width: 100%;
  max-height: 165px; /* aumenta altura dentro del cuadro */
  object-fit: contain;
}
/* ===============================
   MERCOSUR LOGO – VISUAL MAXIMO
================================ */
.logo-box img[src*="mercosur"] {
  width: auto;        /* ancho automático según proporción */
  height: 100%;       /* ocupa toda la altura del cuadro */
  max-height: none;   /* elimina límite anterior */
  object-fit: contain; /* mantiene proporción sin deformar */
  display: block;
  margin: 0 auto;
}
/* ===============================
   MERCOSUR LOGO – ESCALADO FORZADO
================================ */
.logo-box img[src*="mercosur"] {
  width: auto;
  height: 100%;
  max-height: none;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.4); /* aumenta visualmente el logo */
  transform-origin: center center; /* centra el escalado */
  transition: transform 0.3s ease;
}

/* Opcional: mantener efecto hover */
.logo-box img[src*="mercosur"]:hover {
  transform: scale(1.45);
}




/* ===============================
   FONDO DE SECCIÓN
================================ */
.partners-section {
  background-color: #2e7d32; /* verde corporativo atractivo */
  padding: 80px 0; /* espacio arriba y abajo */
  position: relative;
}

/* Quitar cualquier línea arriba del título */
.partners-section .section-title {
  border: none;
  margin-top: 0;
  color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.3px;
  margin-bottom: 50px;
}

/* Subtítulo */
.partners-section .subsection-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  color: #cfd8e3;
  margin: 70px 0 40px;
}

/* ===============================
   CUADRADOS LOGOS – BORDES AZULES
================================ */
.logo-box {
  border: 2px solid #1565c0; /* azul corporativo */
  height: 160px;
  width: 200px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* LOGOS DENTRO DEL CUADRO */
.logo-box img {
  max-width: 95%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Hover corporativo */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(15,42,68,0.92);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.logo-box:hover::after {
  opacity: 1;
}

/* ===============================
   FILA DE LOGOS – CENTRADO Y SIN WRAP
================================ */
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0 auto;
  flex-wrap: nowrap; /* todos en la misma línea */
  overflow-x: auto;
  max-width: 100%;
}

/* ===============================
   CUADRADOS LOGOS – BORDES VERDES MÁS GRUESOS
================================ */
.logo-box {
  border: 4px solid #2e7d32; /* verde más grueso */
  height: 160px;
  width: 200px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* LOGOS DENTRO DEL CUADRO */
.logo-box img {
  max-width: 95%;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* HOVER CORPORATIVO – ahora verde */
.logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.85); /* verde semitransparente */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  letter-spacing: 1px;
  border-radius: 12px; /* mantiene forma */
}

.logo-box:hover::after {
  opacity: 1;
}
/* ===============================
   CUADRADOS LOGOS – RELACIONAMIENTO CON OTROS ORGANISMOS
================================ */
.relacionamiento-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* más espacio entre logos */
  flex-wrap: nowrap; /* todos en la misma línea */
  padding: 0;
  margin: 0 auto;
  overflow-x: auto; /* scroll solo si no entran */
}

/* Cuadrados más grandes con borde verde grueso */
.relacionamiento-row .logo-box {
  border: 4px solid #2e7d32; /* verde corporativo más grueso */
  height: 200px; /* cuadrado más alto */
  width: 220px;  /* cuadrado más ancho */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Logos dentro del cuadro más grandes */
.relacionamiento-row .logo-box img {
  max-width: 95%;
  max-height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Hover corporativo verde */
.relacionamiento-row .logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.85); /* verde semitransparente */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 12px;
}

.relacionamiento-row .logo-box:hover::after {
  opacity: 1;
}

/* Opcional: efecto de zoom sutil al pasar sobre el logo */
.relacionamiento-row .logo-box:hover img {
  transform: scale(1.05);
}
/* ===============================
   CUADRADOS LOGOS – RELACIONAMIENTO CON OTROS ORGANISMOS
================================ */
.relacionamiento-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* más espacio entre logos */
  flex-wrap: nowrap; /* todos en la misma línea */
  padding: 0;
  margin: 0 auto;
  overflow-x: auto; /* scroll solo si no entran */
}

/* Cuadrados más grandes con borde verde grueso */
.relacionamiento-row .logo-box {
  border: 4px solid #2e7d32; /* verde corporativo más grueso */
  height: 200px; /* cuadrado más alto */
  width: 220px;  /* cuadrado más ancho */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* Logos dentro del cuadro más grandes */
.relacionamiento-row .logo-box img {
  max-width: 95%;
  max-height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

/* Hover corporativo verde */
.relacionamiento-row .logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.85); /* verde semitransparente */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 12px;
}

.relacionamiento-row .logo-box:hover::after {
  opacity: 1;
}

/* Opcional: efecto de zoom sutil al pasar sobre el logo */
.relacionamiento-row .logo-box:hover img {
  transform: scale(1.05);
}
/* ===============================
   LOGOS – RELACIONAMIENTO CON OTROS ORGANISMOS
================================ */

/* Selecciona solo la fila de logos que sigue al subtítulo */
.subsection-title + .logos-row .logo-box {
  border: 3px solid #2e7d32 !important; /* borde verde más grueso */
  width: 220px !important;  /* más ancho */
  height: 180px !important; /* más alto */
  border-radius: 14px !important;
  padding: 30px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.25) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

/* Logo dentro del cuadro más grande */
.subsection-title + .logos-row .logo-box img {
  max-height: 120px !important;
}

/* Hover corporativo verde */
.subsection-title + .logos-row .logo-box::after {
  content: "Ir al sitio web";
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.85); /* verde corporativo semitransparente */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 14px;
  transition: opacity 0.25s ease;
}

.subsection-title + .logos-row .logo-box:hover::after {
  opacity: 1;
}

/* Hover más firme y borde más vivo */
.subsection-title + .logos-row .logo-box:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 45px rgba(0,0,0,0.28) !important;
  border-color: #43a047 !important; /* verde más vivo al hover */
}


/* =====================================================
NOVEDADES – REDISEÑO PROFESIONAL
===================================================== */

.news-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 42px;
}

/* CARD */
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,63,82,.15);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0,0,0,.18);
}

/* IMAGEN */
.news-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

/* CONTENIDO */
.news-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px);
}

.news-item-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.35;
  margin-bottom: 16px;
}

.news-text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 26px;
  flex-grow: 1;
}

/* LINK */
.news-link {
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  align-self: flex-start;
}

.news-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}

.news-link:hover::after {
  transform: scaleX(1);
}
:root{
  --news-title-color: #0a3f52; /* mismo tono institucional */
}
/* =====================================================
NOVEDADES – NIVEL INSTITUCIONAL PREMIUM
===================================================== */

.section-title{
  color: var(--news-title-color);
}

/* GRID */
.news-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
}

/* CARD */
.news-card{
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(10,63,82,.18);
  box-shadow: 
    0 18px 38px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition: transform .4s ease, box-shadow .4s ease;
}

.news-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}

/* IMAGEN */
.news-image{
  position: relative;
  height: 240px;
  overflow: hidden;
}

.news-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.35) 100%
  );
}

.news-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .7s ease;
}

.news-card:hover .news-image img{
  transform: scale(1.08);
}

/* CONTENIDO */
.news-content{
  padding: 38px 36px 40px;
  display:flex;
  flex-direction:column;
  height: calc(100% - 240px);
}

/* TITULO NOTICIA */
.news-item-title{
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.35;
  color: var(--news-title-color);
  margin-bottom: 18px;
}

/* TEXTO */
.news-text{
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5f66;
  margin-bottom: 28px;
  flex-grow:1;
}

/* LINK */
.news-link{
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--accent);
  text-decoration:none;
  position:relative;
  padding-bottom: 6px;
}

.news-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin:left;
  transition:.3s ease;
}

.news-link:hover::after{
  transform: scaleX(1);
}

/* =====================================================
AJUSTE GLOBAL – PADDING LATERAL MINIMO
===================================================== */

.container{
  padding-left: 12px !important;
  padding-right: 12px !important;
  max-width: 100% !important;
}

/* =====================================================
FULL WIDTH TOTAL – SIN PADDING LATERAL
===================================================== */

.container{
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

/* Por si hay secciones con padding propio */
.section,
section{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ===============================
   CARROUSEL SOCIOS ESTRATÉGICOS
================================ */

.section-title + .large-logos {
  position: relative;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 60px;
}

/* Ocultar scrollbar */
.section-title + .large-logos::-webkit-scrollbar {
  display: none;
}
.section-title + .large-logos {
  scrollbar-width: none;
}

/* Flechas */
.section-title + .large-logos::before,
.section-title + .large-logos::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  background: #2e7d32;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}

.section-title + .large-logos::before {
  left: 10px;
}

.section-title + .large-logos::after {
  right: 10px;
}
/* ===============================
   SOCIOS ESTRATÉGICOS
   Mostrar solo 4 logos al inicio
================================ */

.section-title + .large-logos {
  padding-left: 140px;
  padding-right: 140px;
}
/* =========================================
   SOCIOS ESTRATÉGICOS
   Mostrar 4 logos manteniendo mismo padding
========================================= */

.section-title + .large-logos {
  max-width: 1100px;     /* controla cuántos logos entran */
  margin: 0 auto;        /* centra dentro de la sección */
}

/* ===============================
   CARRUSEL AUTOMÁTICO
================================ */

.carousel-wrapper {
  max-width: 1100px;   /* 4 logos visibles */
  margin: 0 auto;
  overflow: hidden;
}

.large-logos {
  display: flex;
  gap: 32px;
  overflow-x: scroll;
  scroll-behavior: auto;
}

.large-logos::-webkit-scrollbar {
  display: none;
}
.large-logos {
  scrollbar-width: none;
}
.carousel-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.logos-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.large-logos {
  display: flex;
  gap: 32px;
}


/* contenedor general */
.section {
  width: 100%;
  padding: 96px 0;              /* mismo aire vertical en TODAS */
}

/* contenedor interno */
.section-inner {
  max-width: 1280px;            /* ancho institucional */
  margin: 0 auto;
  padding: 0 40px;              /* márgenes laterales iguales */
}

/* títulos de sección */
.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
  color: #0a3f52;
}

/* subtítulos o texto introductorio */
.section-intro {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 56px;
  color: #475569;
}

/* separación estándar entre bloques */
.section-block {
  margin-bottom: 48px;
}

/* última sección sin espacio extra */
.section-block:last-child {
  margin-bottom: 0;
}

/* fondo alternado */
.section--light {
  background: #ffffff;
}

.section--soft {
  background: #f4f6f8;
}

/* ===============================
   RESPONSIVE FINO
================================ */

@media (max-width: 1024px) {
  .section {
    padding: 72px 0;
  }

  .section-inner {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section-inner {
    padding: 0 20px;
  }

  .section-title {
    font-size: 28px;
  }
}


.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 72px;   /* 🔥 más aire lateral */
}









/* ===============================
   SISTEMA GLOBAL DE ESPACIADO
   Adaptado a TU HTML
================================ */

/* TODAS las secciones principales */
.section,
.partners-section,
.partners-carousel {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* CONTENEDOR UNIFICADO */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 72px;   /* 🔥 aire lateral */
  padding-right: 72px;
}

/* TITULOS DE SECCIÓN */
.section-title {
  margin-bottom: 48px;
}

/* SUBTÍTULOS */
.subsection-title {
  margin-top: 96px;
  margin-bottom: 40px;
}

/* GRILLAS PRINCIPALES */
.resources-grid,
.news-grid,
.logos-row,
.carousel-wrapper {
  margin-top: 48px;
}

/* CTA de novedades */
.news-cta {
  margin-top: 64px;
}

/* PROGRAMA CARD */
.programs-card {
  margin-top: 96px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .container {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (max-width: 768px) {
  .section,
  .partners-section,
  .partners-carousel {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .subsection-title {
    margin-top: 64px;
  }
}


/* ===============================
PROGRAMAS — CORPORATIVO LIMPIO
=============================== */

.programs-card{
  background:#ffffff;
  border-radius:18px;
  padding:48px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:48px;

  border:1px solid rgba(10,63,82,.15);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.prog-left{
  display:flex;
  gap:32px;
  align-items:flex-start;
}

.prog-logo{
  max-width:110px;
}

.prog-texts h4{
  font-size:.8rem;
  letter-spacing:2px;
  font-weight:700;
  color:var(--accent);
  margin-bottom:8px;
}

.prog-title{
  font-size:2rem;
  font-weight:800;
  color:var(--primary);
  margin-bottom:14px;
}

.prog-desc{
  font-size:1.05rem;
  color:var(--gray);
  max-width:520px;
}

.btn-primary{
  padding:16px 36px;
  border-radius:8px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
}

.btn-primary:hover{
  background:var(--accent-dark);
  transform:translateY(-2px);
}
/* ===============================
SOCIOS — INSTITUCIONAL SERIO
=============================== */

.primary-logos-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:48px;
  align-items:center;
  margin-top:60px;
}

.primary-logo-box{
  display:flex;
  justify-content:center;
  align-items:center;
}

.primary-logo-box img{
  max-height:90px;
  max-width:160px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.25s ease;
}

.primary-logo-box img:hover{
  filter:none;
  opacity:1;
}
/* ===============================
SOCIOS — INSTITUCIONAL SERIO
=============================== */

.primary-logos-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:48px;
  align-items:center;
  margin-top:60px;
}

.primary-logo-box{
  display:flex;
  justify-content:center;
  align-items:center;
}

.primary-logo-box img{
  max-height:90px;
  max-width:160px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.25s ease;
}

.primary-logo-box img:hover{
  filter:none;
  opacity:1;
}
/* ===============================
SOCIOS — INSTITUCIONAL SERIO
=============================== */

.primary-logos-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:48px;
  align-items:center;
  margin-top:60px;
}

.primary-logo-box{
  display:flex;
  justify-content:center;
  align-items:center;
}

.primary-logo-box img{
  max-height:90px;
  max-width:160px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.25s ease;
}

.primary-logo-box img:hover{
  filter:none;
  opacity:1;
}
/* ===============================
SOCIOS — INSTITUCIONAL SERIO
=============================== */

.primary-logos-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:48px;
  align-items:center;
  margin-top:60px;
}

.primary-logo-box{
  display:flex;
  justify-content:center;
  align-items:center;
}

.primary-logo-box img{
  max-height:90px;
  max-width:160px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.25s ease;
}

.primary-logo-box img:hover{
  filter:none;
  opacity:1;
}
.programs-card {
  position: relative;
  background: #ffffff;

  border-top: 4px solid #2e8b57;
  border-bottom: 4px solid #2e8b57;

  padding: 28px 32px;
}
.programs-card {
  background: #ffffff;

  border-top: 4px solid #2e8b57;
  border-bottom: 4px solid #2e8b57;

  padding: 32px 48px; /* ↑↓ 32px | ←→ 48px */
}




.section-novedades {
  padding-top: 40px;   /* bajalo o subilo a gusto */
}


.section-novedades .container {
  padding-left: 48px;
  padding-right: 48px;
}
/* ===============================
   SECCIÓN PROGRAMAS
================================ */

#programas-section {
  padding: 6rem 3rem;
  background: #fff;
}

/* Aire fuerte en desktop */
@media (min-width: 1200px) {
  #programas-section {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

/* Aire máximo en pantallas grandes */
@media (min-width: 1600px) {
  #programas-section {
    padding-left: 14rem;
    padding-right: 14rem;
  }
}

/* ===============================
   CONTAINER GENERAL
================================ */

#programas-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===============================
   GRID DE RECURSOS
================================ */

#resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* ===============================
   CARDS DE RECURSOS
================================ */

#resources-grid .resource-card {
  max-width: 280px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#resources-grid .resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

#resources-grid .resource-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===============================
   CUERPO DE LA CARD
================================ */

#resources-grid .rc-body {
  padding: 1.5rem;
  text-align: center;
}

#resources-grid .rc-body h5 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

#resources-grid .rc-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* ===============================
   LINK CARD
================================ */

#resources-grid .rc-link {
  font-weight: 600;
  text-decoration: none;
  color: #1e7f4f;
}

#resources-grid .rc-link:hover {
  text-decoration: underline;
}

/* ===============================
   CARD PROGRAMA
================================ */

#program-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  background: #f8f9fb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LADO IZQUIERDO */
#program-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* LOGO */
.prog-logo {
  width: 90px;
  height: auto;
}

/* TEXTOS */
.prog-texts h4 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.prog-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0.4rem 0;
}

.prog-desc {
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===============================
   BOTÓN
================================ */

.btn-primary {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: #005a9c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  #programas-section {
    padding: 4rem 1.5rem;
  }

  #resources-grid {
    gap: 2rem;
  }

  #program-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  #program-left {
    flex-direction: column;
  }

  .prog-desc {
    max-width: 100%;
  }
}

/* "Ver más" verde */
.rc-link {
  color: #1e7f4f;
}

.rc-link:hover {
  color: #145c38;
}

/* Botón del programa verde */
.btn-primary {
  background: #1e7f4f;
}

.btn-primary:hover {
  background: #145c38;
}




















































/* reduce padding general del header */
.corp-inner {
  padding: 18px 40px;   /* antes: 34px 48px */
  gap: 50px;            /* antes: 80px */
}

/* achica el logo */
.brand-link img {
  height: 56px;         /* antes: 78px */
}

/* achica los items del menú */
.corp-nav a {
  font-size: 14px;      /* antes: 16px */
  padding-bottom: 4px; /* antes: 8px */
}

/* reduce separación entre items */
.corp-nav ul {
  gap: 22px;            /* antes: 44px */
}

/* ajusta CTA socios */
.cta {
  padding: 6px 16px;    /* antes: 10px 20px */
  border-width: 2px;   /* antes: 3px */
}

/* dropdown un poco más compacto */
.dropdown a {
  padding: 10px 22px;  /* antes: 12px 26px */
  font-size: 13px;     /* antes: 14px */
}

body {
  padding-top: 95px; /* antes 130px */
}




:root{
  /* Verde corporativo sobrio (menos saturado) */
  --verde:#1f6a55;
  --verde-oscuro:#164f41;
  --texto-suave:#eef6f3;
}

/* Footer base */
.corp-footer{
  margin-top:64px;
  background:linear-gradient(180deg, var(--verde) 0%, var(--verde-oscuro) 100%);
}

/* Grid principal */
.footer-inner{
  max-width:1280px;
  padding:44px 36px 36px;
  gap:44px;
}

/* Logo */
.footer-brand img{
  height:48px;
  margin-bottom:12px;
}

/* Texto institucional */
.footer-brand p{
  font-size:13.5px;
  line-height:1.55;
  max-width:380px;
}

/* Títulos */
.footer-links h4,
.footer-contact h4{
  font-size:12px;
  margin-bottom:10px;
  letter-spacing:1.4px;
  opacity:.95;
}

/* Links */
.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  font-size:13px;
}

/* Contacto */
.footer-contact p{
  font-size:13px;
  margin:4px 0;
}

/* Separador */
.footer-divider{
  margin-top:22px;
  background:rgba(255,255,255,.14);
}

/* Base inferior */
.footer-bottom{
  padding:14px 12px;
  font-size:12px;
  letter-spacing:.4px;
  background:rgba(0,0,0,.12);
}

/* Mobile */
@media(max-width:900px){
  .footer-inner{
    padding:36px 28px 32px;
    gap:36px;
  }

  .footer-brand img{
    height:44px;
  }
}








/* ===== FOOTER · LOGO CENTRADO Y PROTAGÓNICO ===== */

.footer-brand{
  text-align:center;
}

.footer-brand img{
  height:78px;              /* logo claramente más grande */
  margin:0 auto 18px;       /* centrado y separado del texto */
  display:block;
}

.footer-brand p{
  margin:0 auto;
  max-width:420px;
  text-align:center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  margin-top: 24px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  line-height: 1;
  height: auto;

  border-radius: 8px;
  background-color: #2f8f46; /* verde institucional */
  color: #fff;
  text-decoration: none;

  white-space: nowrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 20px 44px;        /* ↑ más alto y más ancho */
  margin-top: 18px;

  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  line-height: 1;
  border-radius: 10px;

  background-color: #2f8f46;
  color: #fff;
  text-decoration: none;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 28px 56px;        /* ⬅️ MUCHO más alto */
  min-height: 72px;         /* asegura altura sólida */

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  line-height: 1;
  border-radius: 12px;

  background-color: #2f8f46;
  color: #ffffff;
  text-decoration: none;

  transform: translateY(-28px); /* ⬆️ lo sube más */
}

html {
  font-size: 18px;
}

body {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #0b2330;
}

/* Texto corrido */
p,
li,
span,
label,
input,
textarea {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem;
  line-height: 1.8;
}

/* TÍTULO PRINCIPAL */
.section-title,
h1 {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(3.2rem, 4vw, 4.5rem);
  font-weight: 900;
  color: #0a3f52;
  line-height: 1.1;
}

/* SUBTÍTULOS DE SECCIÓN */
h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0a3f52;
}

/* SUBTÍTULOS INTERNOS */
h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0a3f52;
}



/* ===============================
FIX DEFINITIVO ESCALA TIPOGRÁFICA
=============================== */

/* Base real (más chica) */
html {
  font-size: 16px !important;
}

/* Texto general */
body {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;        /* 16px */
  line-height: 1.7 !important;
  color: #0b2330;
}

/* Texto corrido */
p,
li,
span,
label,
input,
textarea {
  font-size: 1rem !important;        /* 16px */
  line-height: 1.7 !important;
}

/* TÍTULO PRINCIPAL */
.section-title,
h1 {
  font-size: clamp(2.6rem, 3.5vw, 3.6rem) !important;
  font-weight: 900;
  line-height: 1.1;
}

/* SUBTÍTULOS DE SECCIÓN */
h2 {
  font-size: 1.5rem !important;      /* ~24px */
  font-weight: 800;
  margin: 32px 0 14px;
}

/* SUBTÍTULOS INTERNOS */
h3 {
  font-size: 1.9rem !important;      /* ~30px */
  font-weight: 900;
}
/* ===============================
AJUSTE FINO DE ESCALA (+1)
=============================== */

html {
  font-size: 16.5px !important;
}

body {
  font-size: 1.03rem !important;
  line-height: 1.72 !important;
}

/* Texto corrido */
p,
li,
span,
label,
input,
textarea {
  font-size: 1.03rem !important;
  line-height: 1.72 !important;
}

.hero-highlight {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.15;
}

.hero-banner .hero-content .hero-highlight {
  font-size: 3.6rem !important;
  line-height: 1.2 !important;
}
/* ===== FIX ALINEACIÓN MENU ===== */
.corp-nav ul {
  display: flex;
  align-items: center;
  gap: 28px; /* ajustá si querés más o menos espacio */
}

.corp-nav ul li {
  white-space: nowrap;
}

.corp-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  text-align: center;
}


.corp-nav ul {
  display: flex;
  align-items: center;
  gap: 22px; /* antes 28px */
}































/* ================= SOCIOS ESTRATÉGICOS ================= */

.partners-section .large-logos .logo-box img{
    max-height:120px !important;
}


/* ================= RELACIONAMIENTO CON OTROS ORGANISMOS ================= */

.partners-section .subsection-title + .logos-row .logo-box img{
    max-height:140px !important;
}



/* ================= RELACIONAMIENTO – SOLO 3 LOGOS GRANDES ================= */

.partners-section .subsection-title + .logos-row .logo-box:nth-child(1) img,
.partners-section .subsection-title + .logos-row .logo-box:nth-child(2) img,
.partners-section .subsection-title + .logos-row .logo-box:nth-child(3) img{
    max-height:100% !important;
    transform: scale(1.75);
}


/* =======================================================
   SOCIOS ESTRATÉGICOS – FORZADO TOTAL (ROMPE TODO)
   ======================================================= */
/* ================= SOCIOS GRANDES – SOLO ESTA FILA ================= */

/* CUADRADOS MÁS GRANDES (solo large-logos) */
.partners-section .logos-row.large-logos .logo-box{
  width: 320px !important;
  height: 210px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;
  border-radius: 16px !important;

  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 28px !important;
}

/* LOGOS MUY GRANDES, PERO CONTROLADOS */
.partners-section .logos-row.large-logos .logo-box img{
  max-width: 90% !important;
  max-height: 90% !important;

  width: auto !important;
  height: auto !important;

  object-fit: contain !important;

  transform: scale(1.75) !important; /* escala máxima */
  transform-origin: center center !important;

  display: block !important;
}
/* ================= SOCIOS GRANDES – AJUSTE FINO ================= */

.partners-section .logos-row.large-logos .logo-box{
  width: 300px !important;   /* un poco más chico */
  height: 195px !important;  /* un poco más chico */

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;
  border-radius: 16px !important;

  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 24px !important;
}

.partners-section .logos-row.large-logos .logo-box img{
  max-width: 88% !important;
  max-height: 88% !important;

  width: auto !important;
  height: auto !important;

  object-fit: contain !important;

  transform: scale(1.6) !important; /* un poco menos que 1.75 */
  transform-origin: center center !important;

  display: block !important;
}







/* ===== LOGOS GRANDES PERO PROLIJOS ===== */

.partners-section .logos-row.large-logos .logo-box img{
  max-width: 78% !important;
  max-height: 78% !important;

  width: auto !important;
  height: auto !important;

  object-fit: contain !important;

  transform: scale(1.3) !important; /* grande pero elegante */
  transform-origin: center center !important;

  display: block !important;
}







/* mennuuuuu hamburguesa------------------------ */




:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --texto: #0f172a;
  --gris: #475569;
  --borde: #e5e7eb;
}

/* TODO el CSS que pasaste va acá */
/* ======================================================
VARIABLES GLOBALES
====================================================== */
:root {
  --verde: #0f6b43;
  --verde-oscuro: #0b4f33;
  --verde-claro-menu: #e8f3ee;
  --gris: #475569;
  --borde: #e5e7eb;
  --texto: #0b2330;
  --texto-suave: #eef6f3;
}

/* ======================================================
RESET BÁSICO
====================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 16.5px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--texto);
  padding-top: 95px;
}

/* ======================================================
HEADER / MENÚ
====================================================== */
.corp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--verde-claro-menu);
  border-bottom: 4px solid var(--verde);
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(15, 107, 67, 0.15);
}

.corp-inner {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 50px;
}

/* LOGO */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  height: 56px;
}

/* ======================================================
NAVEGACIÓN
====================================================== */


.corp-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--texto);
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
}

/* underline */
.corp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--verde);
  transition: width .25s ease;
}

.corp-nav a:hover::after {
  width: 100%;
}

.corp-nav a:hover {
  color: var(--verde-oscuro);
}

/* CTA SOCIOS */
.cta {
  border: 2px solid var(--verde);
  padding: 6px 16px;
}

.cta::after {
  display: none;
}

.cta:hover {
  background: var(--verde);
  color: #fff !important;
}

/* ======================================================
DROPDOWNS
====================================================== */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: #fff;
  border-top: 4px solid var(--verde);
  border: 1px solid var(--borde);
  padding: 14px 0;
  display: none;
  z-index: 99999;
}

.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: none;
  color: var(--gris);
}

.dropdown a:hover {
  background: #eef6f2;
  color: var(--verde-oscuro);
}



/* ======================================================
CONTENIDO
====================================================== */
.site-content {
  max-width: 1200px;
  margin: auto;
  padding: 64px 32px;
}

/* ======================================================
FOOTER
====================================================== */
.corp-footer {
  margin-top: 64px;
  background: linear-gradient(180deg, #1f6a55 0%, #164f41 100%);
  color: var(--texto-suave);
}

.footer-inner {
  max-width: 1280px;
  margin: auto;
  padding: 44px 36px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
}

/* FOOTER BRAND */
.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 78px;
  margin: 0 auto 18px;
  display: block;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 420px;
  margin: auto;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: var(--texto-suave);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* CONTACTO */
.footer-contact p {
  font-size: 13px;
  margin: 4px 0;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 22px 0 0;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  background: rgba(0,0,0,.12);
}

/* ======================================================
UTILIDADES
====================================================== */
.organigrama-img {
  width: 100%;
  max-width: 900px;
  max-height: 500px;
  object-fit: contain;
  margin: auto;
  display: block;
}
/* ===== FIX MENU DROPDOWN ===== */

/* SOLO el menú principal usa flex */
.corp-nav > ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}



/* reduce padding general del header */
.corp-inner {
  padding: 18px 40px;   /* antes: 34px 48px */
  gap: 50px;            /* antes: 80px */
}

/* achica el logo */
.brand-link img {
  height: 56px;         /* antes: 78px */
}

/* achica los items del menú */
.corp-nav a {
  font-size: 14px;      /* antes: 16px */
  padding-bottom: 4px; /* antes: 8px */
}

/* reduce sepa

/* ajusta CTA socios */
.cta {
  padding: 6px 16px;    /* antes: 10px 20px */
  border-width: 2px;   /* antes: 3px */
}

/* dropdown un poco más compacto */
.dropdown a {
  padding: 10px 22px;  /* antes: 12px 26px */
  font-size: 13px;     /* antes: 14px */
}

body {
  padding-top: 95px; /* antes 130px */
}




:root{
  /* Verde corporativo sobrio (menos saturado) */
  --verde:#1f6a55;
  --verde-oscuro:#164f41;
  --texto-suave:#eef6f3;
}

/* Footer base */
.corp-footer{
  margin-top:64px;
  background:linear-gradient(180deg, var(--verde) 0%, var(--verde-oscuro) 100%);
}

/* Grid principal */
.footer-inner{
  max-width:1280px;
  padding:44px 36px 36px;
  gap:44px;
}

/* Logo */
.footer-brand img{
  height:48px;
  margin-bottom:12px;
}

/* Texto institucional */
.footer-brand p{
  font-size:13.5px;
  line-height:1.55;
  max-width:380px;
}

/* Títulos */
.footer-links h4,
.footer-contact h4{
  font-size:12px;
  margin-bottom:10px;
  letter-spacing:1.4px;
  opacity:.95;
}

/* Links */
.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  font-size:13px;
}

/* Contacto */
.footer-contact p{
  font-size:13px;
  margin:4px 0;
}

/* Separador */
.footer-divider{
  margin-top:22px;
  background:rgba(255,255,255,.14);
}

/* Base inferior */
.footer-bottom{
  padding:14px 12px;
  font-size:12px;
  letter-spacing:.4px;
  background:rgba(0,0,0,.12);
}

/* Mobile */
@media(max-width:900px){
  .footer-inner{
    padding:36px 28px 32px;
    gap:36px;
  }

  .footer-brand img{
    height:44px;
  }
}








/* ===== FOOTER · LOGO CENTRADO Y PROTAGÓNICO ===== */

.footer-brand{
  text-align:center;
}

.footer-brand img{
  height:78px;              /* logo claramente más grande */
  margin:0 auto 18px;       /* centrado y separado del texto */
  display:block;
}

.footer-brand p{
  margin:0 auto;
  max-width:420px;
  text-align:center;
}


.corp-nav ul li {
  white-space: nowrap;
}

.corp-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  text-align: center;
}

/* Email del footer en blanco */
.corp-footer .footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.corp-footer .footer-contact a:hover {
  text-decoration: underline;
}




/* FOOTER – columna Institucional centrada */
.footer-links {
  text-align: center;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  list-style: none;
}


























/* ======================================================
   MENU MOBILE DEFINITIVO – ASIQUR
   NO ROMPE DESKTOP
====================================================== */
@media (max-width: 1024px) {

  /* HEADER */
  .corp-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .brand-link img {
    height: 48px;
  }

  /* BOTÓN HAMBURGUESA */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 24px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 10001;
  }

  .menu-toggle span {
    height: 4px;
    width: 100%;
    background: var(--verde);
    border-radius: 2px;
  }

  /* NAV OVERLAY */
  .corp-nav {
    position: fixed;
    inset: 0;
    background: #0a3f52;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 10000;
    padding-top: 90px;
  }

  .corp-nav.is-open {
    transform: translateX(0);
  }

  .corp-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .corp-nav li {
    width: 100%;
  }

  .corp-nav a {
    display: block;
    padding: 18px 24px;
    font-size: 1.1rem;
    color: #ffffff;
  }

  /* SUBMENÚS */
  .dropdown {
    display: none;
    background: #0b4f33; /* verde oscuro sólido */
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .has-dropdown.open > .dropdown {
    display: block;
  }

  
  .dropdown a {
    color: #ffffff;
    opacity: 0.95;
  }

  /* DESACTIVA HOVER DESKTOP */
  .has-dropdown:hover > .dropdown {
    display: none;
  }
}










/* ===============================
   DESKTOP FIX DEFINITIVO
   =============================== */
@media (min-width: 1025px) {

  /* Layout correcto header */
  .corp-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 50px;
  }

  /* Logo alineado */
  .brand-link {
    display: flex;
    align-items: center;
  }

  /* Menú alineado vertical */
  .corp-nav > ul {
    display: flex;
    align-items: center;
  }

  /* OCULTAR hamburguesa EN DESKTOP */
  .menu-toggle {
    display: none !important;
  }
}











/* ======================================================
   MOBILE – SUBMENÚS CON FLECHA + AJUSTES DE ESPACIO
====================================================== */
@media (max-width: 1024px) {

  /* Items principales más respirables */
  .corp-nav a {
    padding: 20px 22px;
    font-size: 1.05rem;
  }

  /* Flecha submenú */
  .submenu-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
  }

  /* Evita que el link dispare el submenú */
  .has-dropdown > a {
    padding-right: 56px;
  }

  /* Submenú */
  .dropdown {
    padding: 6px 0;
  }

  .dropdown a {
    padding: 14px 40px;
    font-size: 0.95rem;
  }

  /* Contenedores generales */
  .corp-nav {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Evita desbordes raros */
  .corp-nav li,
  .corp-nav a {
    box-sizing: border-box;
  }
}



/* ===============================
   FIX CENTRADO GLOBAL
=============================== */

.site-content,
.footer-inner,
.corp-inner {
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 1024px) {
  .site-content {
    padding: 32px 16px;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}





/* === ACTIVADOR REAL DE SUBMENÚ POR FLECHA === */






/* ===============================
   DESKTOP – FLECHA AL COSTADO
=============================== */
@media (min-width: 1025px) {

  .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .submenu-arrow {
    position: static;
    font-size: 0.8rem;
    color: var(--verde-oscuro);
    line-height: 1;
    cursor: pointer;
  }
}


/* ESTADO BASE */
.dropdown {
  display: none;
}



@media (max-width: 1024px) {

  /* hover muerto en mobile */
  .has-dropdown:hover > .dropdown {
    display: none;
  }

  /* JS manda */
  .has-dropdown.open > .dropdown {
    display: block;
  }
}



/* ===============================
   DESKTOP – DROPDOWN FUNCIONAL
=============================== */
@media (min-width: 1025px) {

  /* hover vuelve a vivir */
  .has-dropdown:hover > .dropdown {
    display: block;
  }

  /* la flecha NO captura clicks en desktop */
  .submenu-arrow {
    pointer-events: none;
  }
}






























/* ===== FOOTER · LOGO CENTRADO Y PROTAGÓNICO ===== */

.footer-brand{
  text-align:center;
}

.footer-brand img{
  height:78px;              /* logo claramente más grande */
  margin:0 auto 18px;       /* centrado y separado del texto */
  display:block;
}

.footer-brand p{
  margin:0 auto;
  max-width:420px;
  text-align:center;
}


.corp-nav ul li {
  white-space: nowrap;
}

.corp-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  text-align: center;
}

/* Email del footer en blanco */
.corp-footer .footer-contact a {
  color: #ffffff;
  text-decoration: none;
}

.corp-footer .footer-contact a:hover {
  text-decoration: underline;
}




/* FOOTER – columna Institucional centrada */
.footer-links {
  text-align: center;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  list-style: none;
}


























/* ======================================================
   MENU MOBILE DEFINITIVO – ASIQUR
   NO ROMPE DESKTOP
====================================================== */
@media (max-width: 1024px) {

  /* HEADER */
  .corp-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .brand-link img {
    height: 48px;
  }

  /* BOTÓN HAMBURGUESA */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 34px;
    height: 24px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 10001;
  }

  .menu-toggle span {
    height: 4px;
    width: 100%;
    background: var(--verde);
    border-radius: 2px;
  }

  /* NAV OVERLAY */
  .corp-nav {
    position: fixed;
    inset: 0;
    background: #0a3f52;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 10000;
    padding-top: 90px;
  }

  .corp-nav.is-open {
    transform: translateX(0);
  }

  .corp-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .corp-nav li {
    width: 100%;
  }

  .corp-nav a {
    display: block;
    padding: 18px 24px;
    font-size: 1.1rem;
    color: #ffffff;
  }

  /* SUBMENÚS */
  .dropdown {
    display: none;
    background: #0b4f33; /* verde oscuro sólido */
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .has-dropdown.open > .dropdown {
    display: block;
  }

  
  .dropdown a {
    color: #ffffff;
    opacity: 0.95;
  }

  /* DESACTIVA HOVER DESKTOP */
  .has-dropdown:hover > .dropdown {
    display: none;
  }
}










/* ===============================
   DESKTOP FIX DEFINITIVO
   =============================== */
@media (min-width: 1025px) {

  /* Layout correcto header */
  .corp-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 50px;
  }

  /* Logo alineado */
  .brand-link {
    display: flex;
    align-items: center;
  }

  /* Menú alineado vertical */
  .corp-nav > ul {
    display: flex;
    align-items: center;
  }

  /* OCULTAR hamburguesa EN DESKTOP */
  .menu-toggle {
    display: none !important;
  }
}











/* ======================================================
   MOBILE – SUBMENÚS CON FLECHA + AJUSTES DE ESPACIO
====================================================== */
@media (max-width: 1024px) {

  /* Items principales más respirables */
  .corp-nav a {
    padding: 20px 22px;
    font-size: 1.05rem;
  }

  /* Flecha submenú */
  .submenu-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
  }

  /* Evita que el link dispare el submenú */
  .has-dropdown > a {
    padding-right: 56px;
  }

  /* Submenú */
  .dropdown {
    padding: 6px 0;
  }

  .dropdown a {
    padding: 14px 40px;
    font-size: 0.95rem;
  }

  /* Contenedores generales */
  .corp-nav {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Evita desbordes raros */
  .corp-nav li,
  .corp-nav a {
    box-sizing: border-box;
  }
}



/* ===============================
   FIX CENTRADO GLOBAL
=============================== */

.site-content,
.footer-inner,
.corp-inner {
  margin-left: auto;
  margin-right: auto;
}


@media (max-width: 1024px) {
  .site-content {
    padding: 32px 16px;
  }

  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}





/* === ACTIVADOR REAL DE SUBMENÚ POR FLECHA === */






/* ===============================
   DESKTOP – FLECHA AL COSTADO
=============================== */
@media (min-width: 1025px) {

  .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .submenu-arrow {
    position: static;
    font-size: 0.8rem;
    color: var(--verde-oscuro);
    line-height: 1;
    cursor: pointer;
  }
}


/* ESTADO BASE */
.dropdown {
  display: none;
}



@media (max-width: 1024px) {

  /* hover muerto en mobile */
  .has-dropdown:hover > .dropdown {
    display: none;
  }

  /* JS manda */
  .has-dropdown.open > .dropdown {
    display: block;
  }
}



/* ===============================
   DESKTOP – DROPDOWN FUNCIONAL
=============================== */
@media (min-width: 1025px) {

  /* hover vuelve a vivir */
  .has-dropdown:hover > .dropdown {
    display: block;
  }

  /* la flecha NO captura clicks en desktop */
  .submenu-arrow {
    pointer-events: none;
  }
}




































































/* //////////////////CARDS///////////////////////////////// */


@media (max-width: 768px) {

  .resources-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resource-card{
    width: 100%;
  }

}










/* 
CARDS */



/* ===== FIX MOBILE RECURSOS — DEFINITIVO ===== */
@media (max-width: 768px){

  body{
    overflow-x: hidden;
  }

  .container{
    padding: 0 20px;
  }

  .resources-grid{
    display: block !important;
    margin-top: 48px;
  }

  .resource-card{
    width: 100% !important;
    margin-bottom: 28px;
  }

}


@media (max-width: 1024px) {

  /* HEADER */
  .corp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  /* NAV CONTENEDOR */
  .corp-nav {
    position: fixed;
    inset: 0;
    background: #0a3f52;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 2000;
    overflow-y: auto;
  }

  /* NAV ABIERTO */
  .corp-nav.is-open {
    transform: translateX(0);
  }

  /* LISTA PRINCIPAL */
  .corp-nav > ul {
    list-style: none;
    padding: 90px 24px 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* ITEMS */
  .corp-nav li {
    position: relative;
  }

  /* LINKS */
  .corp-nav a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* FLECHA */
  .submenu-arrow {
    margin-left: 10px;
    font-size: 14px;
  }

  /* DROPDOWN */
  .dropdown {
    display: none;
    margin-top: 10px;
    padding-left: 14px;
    background: #0b4f33;
    border-left: 3px solid #2fa36b;
  }

  /* DROPDOWN ABIERTO */
  .has-dropdown.open > .dropdown {
    display: block;
  }

  /* CTA */
  .corp-nav .cta {
    background: #2fa36b;
    padding: 12px 18px;
    border-radius: 6px;
    justify-content: center;
  }
}



/* ================= FIX DROPDOWN MOBILE (SOLO COLOR) ================= */
@media (max-width: 768px) {
  .dropdown {
    background: var(--verde) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
  }

  .dropdown a {
    color: #ffffff !important;
  }

  .dropdown a:hover {
    background: rgba(255,255,255,0.12) !important;
    color: #ffffff !important;
  }
}




/* ======================================================
   AJUSTE FINO FINAL – DESKTOP MENU (ULTRA COMPACTO)
====================================================== */
@media (min-width: 1025px) {

  /* Espacio entre items al mínimo usable */
  .corp-nav > ul {
    gap: 7px !important;
  }

  /* Links lo más chicos posible sin verse mal */
  .corp-nav > ul > li > a {
    font-size: 13px !important;
    padding: 6px 4px !important;
    white-space: nowrap;
  }

  /* CTA Socios compacta pero clara */
  .corp-nav > ul > li > a.cta {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }

  /* Alineación vertical */
  .corp-nav > ul > li {
    display: flex;
    align-items: center;
  }
}



/* === AJUSTE FINO: MENU MÁS CERCA DEL LOGO (DESKTOP) === */
@media (min-width: 1025px) {

  /* reduce el espacio entre logo y menú */
  .corp-inner {
    gap: 24px;   /* antes 50px */
  }

  /* opcional: que el menú no se vaya tan a la derecha */
  .corp-nav > ul {
    justify-content: flex-start;
  }
}
