/* ============================================================
   COOTRACOLTA — CSS Principal del Diseño
   ============================================================ */

:root {
  --g900: #071410; --g800: #0d2616; --g700: #0f3620;
  --g500: #1a6b34; --g400: #22883f; --g300: #2ea84e;
  --g200: #5fcf78; --g100: #9eeaae; --g50: #e6f9ec;
  --accent: #00e676; --adim: rgba(0,230,118,0.15); --aglow: rgba(0,230,118,0.30);
  --white: #fff; --off: #f4f9f5; --tdark: #0d1f13; --tmid: #2d4a35; --tlight: #6b9375;
  --r: 16px; --rsm: 8px; --rlg: 24px; --tr: 0.3s cubic-bezier(.4,0,.2,1);
  --sh-md: 0 8px 32px rgba(10,26,15,0.12); --sh-lg: 0 20px 60px rgba(10,26,15,0.18);
  --sh-green: 0 8px 40px rgba(0,230,118,0.25);
}

/* ---- NAV ---- */
#coo-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
  padding: 1rem 0; transition: background 0.4s, padding 0.3s;
}
#coo-nav.scrolled {
  background: rgba(7,20,16,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.6rem 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.coo-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.coo-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.coo-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #2ea84e, #00e676);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: #071410;
}
.coo-logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.12em; color: #fff; }
.coo-navlinks { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.coo-navlink {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: all 0.25s; cursor: pointer;
}
.coo-navlink:hover, .coo-navlink.active { color: #fff; background: rgba(255,255,255,0.08); }
.coo-navlink.active { color: #00e676; }
.coo-btn-nav {
  background: linear-gradient(135deg, #2ea84e, #00e676); color: #071410;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em;
  text-decoration: none; padding: 0.6rem 1.3rem; border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
}
.coo-btn-nav:hover { transform: translateY(-2px); box-shadow: var(--sh-green); }
.coo-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.coo-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.coo-mobile-menu { display: none; flex-direction: column; background: rgba(7,20,16,0.98); padding: 1rem 2rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.coo-mobile-menu.open { display: flex; }
.coo-mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.8rem 0; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }

/* ---- HERO ---- */
.coo-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.coo-hero-bg { position: absolute; inset: 0; }
.coo-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.coo-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,20,16,0.93) 0%, rgba(14,54,32,0.8) 50%, rgba(0,0,0,0.6) 100%); }
.coo-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.coo-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.coo-badge { display: inline-flex; align-items: center; background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3); color: #00e676; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 50px; margin-bottom: 1.8rem; }
.coo-hero-title { font-family: 'Syne', sans-serif; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 1.2rem; animation: coo-fadeup 0.7s ease both; }
.coo-hero-accent { background: linear-gradient(135deg, #5fcf78, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.coo-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 550px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.75; }
.coo-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.coo-btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #2ea84e, #00e676); color: #071410; font-weight: 700; font-size: 0.875rem; text-decoration: none; padding: 0.9rem 1.7rem; border-radius: 50px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.coo-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-green); color: #071410; }
.coo-btn-outline { display: inline-flex; align-items: center; background: transparent; color: #fff; font-weight: 500; font-size: 0.875rem; text-decoration: none; padding: 0.9rem 1.7rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.3); transition: all 0.25s; }
.coo-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }
.coo-scroll-ind { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.coo-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: coo-scroll 2s ease infinite; }

/* ---- STATS ---- */
.coo-stats { background: #0d2616; border-bottom: 1px solid rgba(255,255,255,0.05); }
.coo-stats-inner { display: flex; align-items: center; justify-content: center; padding: 2.2rem 2rem; }
.coo-stat { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 3rem; flex: 1; }
.coo-stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, #5fcf78, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.3rem; display: block; }
.coo-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; display: block; }
.coo-stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ---- CONTAINERS & SECTIONS ---- */
.coo-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.coo-section { padding: 6rem 0; background: var(--off); }
.coo-section-dark { padding: 6rem 0; background: #071410; }
.coo-section-green { padding: 6rem 0; background: linear-gradient(135deg, #0f3620 0%, #0d2616 60%, #071410 100%); position: relative; }
.coo-section-green::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(0,230,118,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,230,118,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }

/* ---- TAGS & TITLES ---- */
.coo-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #22883f; margin-bottom: 0.8rem; }
.coo-tag::before { content: ''; display: block; width: 20px; height: 2px; background: #2ea84e; border-radius: 2px; }
.coo-tag-light { color: #5fcf78; }
.coo-tag-light::before { background: #5fcf78; }
.coo-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #0d1f13; line-height: 1.15; margin-bottom: 1.2rem; display: block; }
.coo-title-light { color: #fff; }
.coo-title-center { text-align: center; }
.coo-g-accent { background: linear-gradient(135deg, #22883f, #5fcf78); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.coo-w-accent { background: linear-gradient(135deg, #9eeaae, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---- QUIÉNES SOMOS ---- */
.coo-quienes { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.coo-quienes-text p { color: #2d4a35; line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.coo-link-text { display: inline-flex; align-items: center; gap: 0.4rem; color: #22883f; font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-top: 0.5rem; transition: all 0.25s; }
.coo-link-text:hover { color: #2ea84e; }
.coo-visual { position: relative; }
.coo-main-card { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; position: relative; box-shadow: var(--sh-lg); }
.coo-main-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.coo-main-card:hover img { transform: scale(1.04); }
.coo-mini-card { position: absolute; bottom: -1.5rem; left: -2rem; background: #0d2616; border: 1px solid rgba(0,230,118,0.2); border-radius: 16px; padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.7rem; box-shadow: var(--sh-md); }
.coo-mini-icon { width: 40px; height: 40px; background: rgba(0,230,118,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #00e676; }
.coo-mini-card span { font-size: 0.8rem; font-weight: 600; color: #fff; white-space: nowrap; }

/* ---- SERVICIOS ---- */
.coo-servicios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.coo-servicio { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 2.2rem; transition: all 0.3s; position: relative; overflow: hidden; opacity: 0; transform: translateY(20px); }
.coo-servicio.visible { opacity: 1; transform: translateY(0); }
.coo-servicio:hover { border-color: rgba(0,230,118,0.25); background: rgba(255,255,255,0.07); }
.coo-servicio.feat { border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.06); opacity: 1; transform: translateY(0); }
.coo-serv-icon { width: 60px; height: 60px; background: rgba(0,230,118,0.12); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #00e676; margin-bottom: 1.5rem; }
.coo-servicio h3 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.7rem; }
.coo-servicio p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.coo-serv-link { color: #00e676; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: letter-spacing 0.25s; }
.coo-serv-link:hover { letter-spacing: 0.04em; color: #00e676; }

/* ---- TRANS STRIP ---- */
.coo-strip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
.coo-strip-text p { color: rgba(255,255,255,0.65); line-height: 1.75; }
.coo-strip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.coo-tcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 1.3rem; display: flex; align-items: center; gap: 0.75rem; transition: all 0.25s; }
.coo-tcard:hover { background: rgba(0,230,118,0.08); border-color: rgba(0,230,118,0.25); }
.coo-tcard svg { color: #00e676; flex-shrink: 0; }
.coo-tcard span { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* ---- PAGE HERO (pequeño) ---- */
.coo-phero { position: relative; height: 58vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.coo-phero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,20,16,0.96) 0%, rgba(7,20,16,0.65) 50%, rgba(0,0,0,0.3) 100%); }
.coo-phero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2rem 3.5rem; width: 100%; }
.coo-phero-content h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 0.7rem; }
.coo-phero-content p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ---- TIMELINE ---- */
.coo-historia { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.coo-tl { display: flex; flex-direction: column; }
.coo-tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; opacity: 0; transform: translateX(-20px); transition: all 0.4s; }
.coo-tl-item.visible { opacity: 1; transform: translateX(0); }
.coo-tl-item::after { content: ''; position: absolute; left: 38px; top: 30px; bottom: 0; width: 1px; background: rgba(34,136,63,0.2); }
.coo-tl-item:last-child::after { display: none; }
.coo-tl-year { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem; color: #00e676; text-align: right; padding-top: 4px; position: relative; }
.coo-tl-year::after { content: ''; position: absolute; right: -22px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: #2ea84e; border: 2px solid var(--off); box-shadow: 0 0 0 2px #2ea84e; }
.coo-tl-body h4 { font-family: 'Syne', sans-serif; font-weight: 700; color: #0d1f13; margin-bottom: 0.4rem; }
.coo-tl-body p { font-size: 0.88rem; color: #2d4a35; line-height: 1.7; }
.coo-hist-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.coo-hist-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.coo-hist-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(7,20,16,0.95), transparent); padding: 2.5rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.2rem; }
.coo-big-num { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800; background: linear-gradient(135deg, #5fcf78, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; display: block; }
.coo-hist-overlay span:last-child { color: rgba(255,255,255,0.7); font-size: 0.88rem; display: block; }

/* ---- MISIÓN/VISIÓN ---- */
.coo-mv { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 3rem; align-items: stretch; }
.coo-mv-div { background: linear-gradient(to bottom, transparent, rgba(0,230,118,0.3), transparent); }
.coo-mv-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 3rem; transition: all 0.3s; }
.coo-mv-card:hover { border-color: rgba(0,230,118,0.2); background: rgba(0,230,118,0.04); }
.coo-mv-icon { width: 60px; height: 60px; background: rgba(0,230,118,0.12); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #00e676; margin-bottom: 1.5rem; }
.coo-mv-card h3 { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.coo-mv-card p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.93rem; }

/* ---- VALORES ---- */
.coo-valores { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.coo-valor { background: #fff; border: 1px solid rgba(34,136,63,0.15); border-radius: 16px; padding: 2rem; transition: all 0.3s; opacity: 0; transform: translateY(20px); }
.coo-valor.visible { opacity: 1; transform: translateY(0); }
.coo-valor:hover { border-color: #2ea84e; box-shadow: var(--sh-md); }
.coo-val-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 900; color: #e6f9ec; line-height: 1; margin-bottom: 0.5rem; display: block; transition: color 0.3s; }
.coo-valor:hover .coo-val-num { color: rgba(34,136,63,0.1); }
.coo-valor h4 { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: #145228; margin-bottom: 0.4rem; }
.coo-valor p { font-size: 0.86rem; color: #6b9375; line-height: 1.65; }

/* ---- BENEFICIOS ---- */
.coo-benef { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; margin-top: 2rem; }
.coo-benef-item { display: flex; align-items: flex-start; gap: 1.2rem; background: #fff; border: 1px solid rgba(34,136,63,0.15); border-radius: 16px; padding: 1.7rem; transition: all 0.3s; opacity: 0; transform: translateY(15px); }
.coo-benef-item.visible { opacity: 1; transform: translateY(0); }
.coo-benef-item:hover { border-color: #2ea84e; box-shadow: 0 4px 20px rgba(10,26,15,0.08); }
.coo-ben-ico { width: 48px; height: 48px; background: #e6f9ec; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #1a6b34; flex-shrink: 0; transition: all 0.3s; }
.coo-benef-item:hover .coo-ben-ico { background: #2ea84e; color: #fff; }
.coo-benef-item h4 { font-family: 'Syne', sans-serif; font-size: 0.93rem; font-weight: 700; color: #0d1f13; margin-bottom: 0.3rem; }
.coo-benef-item p { font-size: 0.85rem; color: #6b9375; line-height: 1.6; }

/* ---- DASHBOARD ---- */
.coo-dash { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 1rem; }
.coo-dash-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 2.2rem; transition: all 0.3s; opacity: 0; transform: translateY(20px); }
.coo-dash-card.visible { opacity: 1; transform: translateY(0); }
.coo-dash-card:hover { border-color: rgba(0,230,118,0.2); background: rgba(255,255,255,0.06); }
.coo-dash-card.hl { border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.05); opacity: 1; transform: translateY(0); }
.coo-dch { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.coo-dico { width: 50px; height: 50px; background: rgba(0,230,118,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #00e676; }
.coo-dbadge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); padding: 0.3rem 0.7rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); }
.coo-dbadge.on { background: rgba(0,230,118,0.15); color: #00e676; border-color: rgba(0,230,118,0.3); }
.coo-dash-card h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
.coo-dash-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.2rem; }
.coo-dl { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.8rem; }
.coo-dl li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.coo-dl li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2ea84e; flex-shrink: 0; }
.coo-btn-dash { display: inline-flex; align-items: center; color: #00e676; font-weight: 600; font-size: 0.85rem; text-decoration: none; cursor: pointer; transition: letter-spacing 0.2s; background: transparent; border: none; }
.coo-btn-dash:hover { letter-spacing: 0.04em; }
.coo-btn-dash.pr { background: linear-gradient(135deg, #2ea84e, #00e676); color: #071410; padding: 0.7rem 1.4rem; border-radius: 50px; letter-spacing: normal; }
.coo-btn-dash.pr:hover { transform: translateY(-1px); box-shadow: var(--sh-green); }

/* ---- TRANSPARENCIA ---- */
.coo-trans-cats { display: flex; flex-direction: column; gap: 2.5rem; }
.coo-trans-cat { background: #fff; border: 1px solid rgba(34,136,63,0.15); border-radius: 24px; overflow: hidden; }
.coo-trans-cat.red { border-color: rgba(220,38,38,0.2); }
.coo-cat-head { display: flex; align-items: center; gap: 1rem; padding: 1.8rem 2rem; background: #f4f9f5; border-bottom: 1px solid rgba(34,136,63,0.1); }
.coo-trans-cat.red .coo-cat-head { background: rgba(220,38,38,0.03); border-bottom-color: rgba(220,38,38,0.08); }
.coo-cat-ico { width: 48px; height: 48px; background: #e6f9ec; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #1a6b34; flex-shrink: 0; }
.coo-cat-ico.red { background: rgba(220,38,38,0.08); color: #dc2626; }
.coo-cat-head h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: #0d1f13; flex: 1; }
.coo-cat-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(220,38,38,0.08); color: #dc2626; padding: 0.3rem 0.7rem; border-radius: 50px; border: 1px solid rgba(220,38,38,0.15); }
.coo-doc-lib { padding: 1rem 2rem 1.5rem; }
.coo-doc-item { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem; border-radius: 10px; transition: all 0.25s; opacity: 0; transform: translateX(-10px); }
.coo-doc-item.visible { opacity: 1; transform: translateX(0); }
.coo-doc-item:hover { background: #f4f9f5; }
.coo-doc-ico { width: 40px; height: 40px; background: #f4f9f5; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #6b9375; flex-shrink: 0; }
.coo-doc-ico.pdf { background: rgba(220,38,38,0.07); color: #dc2626; }
.coo-doc-info { flex: 1; }
.coo-doc-info h5 { font-weight: 600; font-size: 0.9rem; color: #0d1f13; margin-bottom: 0.2rem; }
.coo-doc-info span { font-size: 0.78rem; color: #6b9375; display: block; }
.coo-doc-dl { width: 36px; height: 36px; background: transparent; border: 1px solid rgba(34,136,63,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #6b9375; text-decoration: none; transition: all 0.25s; flex-shrink: 0; }
.coo-doc-dl:hover { background: #1a6b34; border-color: #1a6b34; color: #fff; }
.coo-sarlaft-info { padding: 1.5rem 2rem; background: rgba(220,38,38,0.03); border-bottom: 1px solid rgba(220,38,38,0.08); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.coo-sarlaft-info p { font-size: 0.9rem; color: #2d4a35; line-height: 1.7; flex: 1; min-width: 280px; }
.coo-btn-sarlaft { display: inline-flex; align-items: center; gap: 0.6rem; background: #dc2626; color: #fff; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-decoration: none; padding: 0.9rem 1.5rem; border-radius: 50px; cursor: pointer; border: none; transition: all 0.25s; white-space: nowrap; }
.coo-btn-sarlaft:hover { background: #b91c1c; transform: translateY(-1px); color: #fff; }

/* ---- FOOTER ---- */
.coo-footer { background: #071410; border-top: 1px solid rgba(255,255,255,0.05); padding: 4.5rem 0 0; }
.coo-footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.coo-footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.coo-fbrand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 1.2rem; }
.coo-fsoc { display: flex; gap: 0.75rem; }
.coo-fsoc a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); text-decoration: none; transition: all 0.25s; }
.coo-fsoc a:hover { color: #00e676; border-color: rgba(0,230,118,0.3); background: rgba(0,230,118,0.1); }
.coo-flinks { display: flex; flex-direction: column; }
.coo-flinks h4, .coo-fcontact h4 { font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.coo-flinks a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; padding: 0.4rem 0; transition: all 0.25s; border-bottom: 1px solid rgba(255,255,255,0.04); display: block; }
.coo-flinks a:hover { color: #00e676; padding-left: 0.4rem; }
.coo-fcontact { display: block; }
.coo-fci { display: flex; align-items: flex-start; gap: 0.6rem; color: rgba(255,255,255,0.55); font-size: 0.86rem; margin-bottom: 0.9rem; line-height: 1.5; }
.coo-fci svg { color: #2ea84e; flex-shrink: 0; margin-top: 2px; }
.coo-fbot { padding: 1.4rem 0; }
.coo-fbot-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.76rem; color: rgba(255,255,255,0.28); }

/* ---- ANIMATIONS ---- */
@keyframes coo-fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes coo-scroll { 0%,100% { opacity: 0.4; } 50% { opacity: 0.85; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .coo-servicios-grid { grid-template-columns: 1fr; }
  .coo-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .coo-strip-grid { grid-template-columns: 1fr; gap: 3rem; }
  .coo-mv { grid-template-columns: 1fr; gap: 2rem; }
  .coo-mv-div { display: none; }
  .coo-historia { grid-template-columns: 1fr; }
  .coo-dash { grid-template-columns: 1fr; }
  .coo-quienes { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .coo-navlinks, .coo-btn-nav { display: none; }
  .coo-hamburger { display: flex; }
  .coo-valores { grid-template-columns: repeat(2,1fr); }
  .coo-benef { grid-template-columns: 1fr; }
  .coo-strip-cards { grid-template-columns: 1fr 1fr; }
  .coo-footer-inner { grid-template-columns: 1fr; }
  .coo-fbot-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .coo-stats-inner { flex-direction: column; }
  .coo-stat-div { width: 60px; height: 1px; }
  .coo-stat { padding: 1rem 0; }
  .coo-sarlaft-info { flex-direction: column; }
  .coo-btn-sarlaft { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .coo-hero-btns { flex-direction: column; }
  .coo-btn-primary, .coo-btn-outline { width: 100%; justify-content: center; }
  .coo-valores { grid-template-columns: 1fr; }
  .coo-strip-cards { grid-template-columns: 1fr; }
}
