/* ---- Layout base ---- */
body {
  background:#000;           /* fondo negro como en la imagen */
  color:#e7f6eb;             /* texto claro verdoso */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  margin:0;
}

.wrap{
  max-width: 1100px;
  margin: 24px auto 32px;
  padding: 0 16px;
}

/* ---- Panel superior: ¿Quiénes somos...? ---- */
.panel{
  background: #0c2b12;                            /* verde oscuro */
  border: 2px solid #1f6b30;                      /* borde verde */
  color:#eaf7ee;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.6),     /* borde interior oscuro */
              0 6px 18px rgba(0,0,0,.6);          /* sombra exterior */
}

.panel h2{
  margin:0 0 12px;
  font-size: 28px;
  font-weight: 800;
}

/* ---- Banda central ---- */
.band{
  margin: 16px 0;
  background:#0d3516;
  border: 2px solid #1f6b30;
  color:#dff3e5;
  padding: 16px 20px;
  border-radius: 14px;
  text-align:center;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.55),
              0 6px 18px rgba(0,0,0,.55);
}

.band h3{
  margin:0;
  font-size: 26px;
  font-weight: 900;
}
.band p{
  margin: 4px 0 0;
  font-style: italic;
  opacity:.9;
}

/* ---- Tarjetas inferiores ---- */
.cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card{
  background:#0c2b12;
  border: 2px solid #1f6b30;
  color:#eaf7ee;
  padding: 20px 22px;
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.6),
              0 6px 18px rgba(0,0,0,.6);
  min-height: 190px; /* da cuerpo similar a la imagen */
}

.card h4{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
}

/* ---- Accesibilidad y detalles ---- */
.panel p, .card p{ 
  margin:0; 
  text-align: justify; 
  hyphens: auto;
}
a{ color:#9be7b5; }


.plane { color: #c31930; }   /* pon el color que quieras al avión*/
.plane { width: 60px; height: 60px; }  /* Tamaño del avión */




/* ---- Responsive ---- */
@media (max-width: 800px){
  .cards{ grid-template-columns: 1fr; }
  .panel, .band, .card{ padding: 18px; }
  .panel h2{ font-size:24px; }
  .band h3{ font-size:22px; }
}

/* Colores de la lista (puedes ajustar) */
#EquipoBio .side h3 { color: #ffffff; }
#EquipoBio .team-list li strong { color: #e6fff4; }
#EquipoBio .team-list li span { color: #b6e9d2; }

/* Avatares en el globo y en la tarjeta */
#EquipoBio .marker img.av {
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover; display: block;
}
#EquipoBio .info-card .info-head { display:flex; gap:10px; align-items:center; }
#EquipoBio .info-card img.av-sm {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}

/* Texto negro en el renglón ACTIVO de la lista */
#EquipoBio .team-list li.active { background: #eafff6; }
#EquipoBio .team-list li.active strong,
#EquipoBio .team-list li.active span {
  color: #000 !important;   /* o #0f172a si prefieres */
}

/* Bio dentro de la tarjeta del globo */
#EquipoBio .info-card .bio{
  color:#334155; font-size:12.5px; line-height:1.35; margin-top:8px;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:visible;
}

.site-footer{
  --bg1:#00160a; --bg2:#002812; --fg:#eafcf4; --muted:#b6e9d2; --accent:#19c37d;
  background: radial-gradient(120% 120% at 0% 0%, var(--bg2), var(--bg1) 60%);
  color: var(--fg);
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .footer-wrap{ max-width:1200px; margin:0 auto; padding:28px 16px; }
.site-footer .footer-grid{
  display:grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap:24px;
}
@media (max-width:980px){ .site-footer .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .site-footer .footer-grid{ grid-template-columns:1fr; } }

.site-footer h4{ margin:0 0 8px; font-size:20px; }
.site-footer h5{ margin:0 0 10px; font-size:14px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; }
.site-footer .f-about{ margin:0 0 8px; color:var(--fg); opacity:.9; }
.site-footer .f-meta{ margin:0; color:var(--muted); font-size:13px; }

.site-footer .f-links{ list-style:none; padding:0; margin:0; }
.site-footer .f-links li{ margin:6px 0; }
.site-footer a{ color:var(--fg); text-decoration:none; }
.site-footer a:hover{ color:var(--accent); }

.site-footer .f-contacts{ list-style:none; padding:0; margin:0 0 8px; }
.site-footer .f-contacts li{ margin:4px 0; }
.site-footer .f-social{ display:flex; gap:10px; }
.site-footer .f-social .ico{ color:var(--muted); padding:8px; border-radius:10px; background:rgba(255,255,255,.06); }
.site-footer .f-social .ico:hover{ color:#fff; background:rgba(25,195,125,.18); }

.site-footer .f-divider{
  border:0; border-top:1px solid rgba(255,255,255,0.08); margin:22px 0;
}
.site-footer .f-bottom{
  display:flex; gap:14px; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.site-footer .copy{ margin:0; }
.site-footer .legal-note{ margin:0; color:var(--muted); font-size:12px; max-width:760px; }
.site-footer .to-top{ color:var(--muted); }
.site-footer .to-top:hover{ color:#fff; }

/* Resaltado de campos con error para WhatsApp */
/* Asegura que el borde cuente dentro del ancho */
.c-input, .c-select, .c-textarea { box-sizing: border-box; }

/* Error: borde y sombra INTERNA (no se sale del cuadro) */
.c-input.field-error,
.c-select.field-error,
.c-textarea.field-error,
#consent.field-error{
  border-color:#c62828 !important;
  box-shadow: inset 0 0 0 2px rgba(198,40,40,.85) !important;
  outline: none;
}

/* Bonus: foco bonito también dentro del cuadro */
.c-input:focus, .c-select:focus, .c-textarea:focus{
  border-color: var(--verde);
  box-shadow: inset 0 0 0 2px rgba(0,128,0,.25);
  outline: none;
}

.saf-detail{
  margin:6px 0 18px;
  border:1px solid var(--saf-line);
  background:var(--saf-panel); /* oscuro, no verde */
  border-radius:14px;
  padding:14px
}
.saf-detail h3{margin:0 0 6px;color:var(--saf-accent)}
.saf-detail p,
.saf-detail li{
  color:var(--saf-muted);
  line-height:1.55
}
.saf-detail p,
.saf-detail ul {
  background: transparent !important;
}
.saf-detail li {
  margin-bottom: 6px;
}
.highlight { color: var(--saf-accent); font-weight: bold; }

.saf-references .ref-title {
  font-size: 22px !important;
  font-weight: bold !important;
  color: #19c37d !important;
  margin-bottom: 20px !important;
}

.saf-references li {
  font-weight: normal !important;  /* Quita negrilla */
  font-style: normal !important;   /* Quita cursiva */
}

.saf-section p {
  font-style: normal !important;   /* desactiva cursiva */
  font-weight: normal !important;  /* desactiva negrilla */
}

.saf-section[data-section="contextoglobal"] h3 {
  font-size: 22px;
  font-weight: bold;
  color: #19c37d;  /* verde metálico */
  margin-bottom: 15px;
}

.saf-section[data-section="contextonacional"] h3 {
  font-size: 22px;
  font-weight: bold;
  color: #19c37d;  /* verde metálico */
  margin-bottom: 15px;
}


.agave-icon {
  display: inline-flex;
  width: 50px;  /* ajusta el tamaño como quieras */
  height: 50px;
  vertical-align: middle;
}
.agave-icon svg { width: 100%; height: 100%; }


.mx-emoji {
  display: inline-flex;
  width: 50px;  /* ajusta el tamaño como quieras */
  height: 50px;
  vertical-align: middle;
}
.mx-emoji svg { width: 100%; height: 100%; }

.refinery-emoji {
  display: inline-flex;
  width: 50px;   /* ajusta tamaño */
  height: 50px;
  vertical-align: middle;
}
.refinery-emoji svg { width: 100%; height: 100%; }

.bandera-emoji {
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;  /* alinea con texto */
}

.global-emoji {
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;  /* alinea con texto */
}

.negocio-emoji {
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;  /* alinea con texto */
}

.acuerdo-emoji {
  display: inline-block;
  font-size: 30px;
  vertical-align: middle;  /* alinea con texto */
}



