/*--------------------------------------------------------------
# CFP "Fray Luis Beltrán" - San Francisco (Córdoba)
# Hoja de estilos principal
--------------------------------------------------------------*/

:root {
  --green-900: #123a1c;
  --green-800: #175226;
  --green-700: #1c5f2d;
  --green-600: #246e38;
  --green-500: #3d844c;   /* verde de marca (extraído del logo) */
  --green-400: #57a065;
  --green-300: #83bd8e;
  --green-100: #e7f3e9;
  --green-50: #f4faf5;
  --amber-500: #d9922e;
  --amber-600: #c17f22;
  --ink: #1c231e;
  --ink-soft: #4a564d;
  --paper: #ffffff;
  --border: #e1e9e2;
  --shadow-sm: 0 2px 10px rgba(18, 58, 28, .08);
  --shadow-md: 0 10px 30px rgba(18, 58, 28, .12);
  --shadow-lg: 0 20px 50px rgba(18, 58, 28, .18);
  --radius: 14px;
  --font-head: "Raleway", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--green-900);
  font-weight: 700;
}

a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--amber-600); }

img { max-width: 100%; }

.text-amber { color: var(--amber-500); }

::selection { background: var(--green-300); color: var(--green-900); }

/*--------------------------------------------------------------
# Utilidades de sección
--------------------------------------------------------------*/
.section { padding: 90px 0; }
.section-alt { background: var(--green-50); }
@media (max-width: 767px) { .section { padding: 60px 0; } }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag i { font-size: 14px; }

.section-title {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 720px;
  margin-bottom: 0;
}
.section-header { margin-bottom: 48px; }
.section-header.text-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-header.text-center .section-lead { margin-left: auto; margin-right: auto; }

/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/
.btn-cfp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cfp-primary {
  background: var(--amber-500);
  color: #241a08;
  box-shadow: 0 8px 20px rgba(217, 146, 46, .35);
}
.btn-cfp-primary:hover { background: var(--amber-600); color: #241a08; transform: translateY(-2px); }
.btn-cfp-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-cfp-outline:hover { background: #fff; color: var(--green-800); border-color: #fff; }
.btn-cfp-solid {
  background: var(--green-600);
  color: #fff;
}
.btn-cfp-solid:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }
.btn-cfp-ghost {
  background: var(--green-100);
  color: var(--green-700);
}
.btn-cfp-ghost:hover { background: var(--green-300); color: var(--green-900); }

/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 16px 0;
  transition: all .35s ease;
  background: linear-gradient(to bottom, rgba(18, 58, 28, .55), rgba(18, 58, 28, 0));
}
#header.header-scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
#header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}
#header .navbar-brand img { height: 52px; width: auto; transition: height .3s ease; }
#header.header-scrolled .navbar-brand img { height: 42px; }
#header .brand-text { line-height: 1.15; }
#header .brand-text strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
  transition: color .3s ease;
}
#header .brand-text span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .3s ease;
}
#header.header-scrolled .brand-text strong { color: var(--green-900); }
#header.header-scrolled .brand-text span { color: var(--ink-soft); }

.cfp-nav { display: flex; align-items: center; gap: 4px; }
.cfp-nav a {
  color: #fff;
  font-weight: 600;
  font-size: .93rem;
  padding: 10px 16px;
  border-radius: 30px;
  transition: all .2s ease;
}
.cfp-nav a:hover, .cfp-nav a.active { background: rgba(255,255,255,.16); color: #fff; }
#header.header-scrolled .cfp-nav a { color: var(--ink); }
#header.header-scrolled .cfp-nav a:hover,
#header.header-scrolled .cfp-nav a.active { background: var(--green-100); color: var(--green-700); }

.cfp-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
#header.header-scrolled .cfp-nav-toggle { color: var(--green-800); }

@media (max-width: 991px) {
  .cfp-nav-toggle { display: block; }
  .cfp-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--green-900);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 26px 26px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.25);
  }
  .cfp-nav.open { transform: translateX(0); }
  .cfp-nav a { color: #fff; padding: 14px 16px; font-size: 1.02rem; }
  .cfp-nav a:hover, .cfp-nav a.active { background: rgba(255,255,255,.12); }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 14, .55);
  z-index: 996;
}
.nav-overlay.open { display: block; }

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../img/hero.jpg") center center / cover no-repeat fixed;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,58,28,.78) 0%, rgba(18,58,28,.72) 45%, rgba(12,40,19,.92) 100%);
}
@media (max-width: 767px) {
  .hero { background-attachment: scroll; min-height: auto; padding: 150px 0 80px; }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  color: var(--amber-500);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.9);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(4px);
}
.hero-badge i { font-size: 1.4rem; color: var(--amber-500); }
.hero-badge strong { display: block; font-size: 1.05rem; color: #fff; line-height: 1.1; }
.hero-badge span { font-size: .78rem; color: rgba(255,255,255,.75); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  font-size: 1.6rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/*--------------------------------------------------------------
# Franja de estadísticas
--------------------------------------------------------------*/
.stats-strip {
  background: var(--green-800);
  color: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}
.stat-item { text-align: center; padding: 10px 12px; }
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--amber-500);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .stat-label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
}

/*--------------------------------------------------------------
# Institución
--------------------------------------------------------------*/
.inst-media { position: relative; }
.inst-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.inst-media-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.inst-media-badge i { font-size: 1.8rem; color: var(--green-600); }
.inst-media-badge strong { display: block; font-size: 1.15rem; color: var(--green-900); }
.inst-media-badge span { font-size: .8rem; color: var(--ink-soft); }
@media (max-width: 767px) { .inst-media-badge { left: 12px; bottom: -18px; padding: 12px 16px; } }

.inst-text p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 18px; }
.inst-points { list-style: none; padding: 0; margin: 26px 0; }
.inst-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.inst-points li:last-child { border-bottom: none; }
.inst-points i { color: var(--green-600); font-size: 1.2rem; margin-top: 2px; }
.inst-points strong { display: block; color: var(--green-900); font-size: .98rem; }
.inst-points span { font-size: .88rem; color: var(--ink-soft); }

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-700);
  margin-top: 6px;
}
.video-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.1rem;
}
.video-link:hover i { background: var(--green-600); color: #fff; }

/*--------------------------------------------------------------
# Requisitos
--------------------------------------------------------------*/
.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}
.req-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.req-card .req-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 800;
  font-family: var(--font-head);
  margin-bottom: 18px;
  font-size: 1.15rem;
}
.req-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.req-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

.req-cta {
  background: linear-gradient(120deg, var(--green-700), var(--green-900));
  border-radius: var(--radius);
  padding: 34px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.req-cta h3 { color: #fff; margin-bottom: 6px; font-size: 1.3rem; }
.req-cta p { color: rgba(255,255,255,.85); margin: 0; }

/*--------------------------------------------------------------
# Cursos
--------------------------------------------------------------*/
.cursos-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.cursos-filter-btn {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink-soft);
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s ease;
}
.cursos-filter-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.cursos-filter-btn.active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

.curso-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, opacity .2s ease, transform .2s ease;
}
.curso-card:hover { box-shadow: var(--shadow-md); }
.curso-card.cap-hidden { display: none; }

.curso-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  background: #fff;
}
.curso-head:hover { background: var(--green-50); }
.curso-head-left { display: flex; align-items: center; gap: 16px; }
.curso-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.curso-titles h3 { font-size: 1.08rem; margin: 0 0 4px; }
.curso-cat-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--amber-500);
  color: #241a08;
}
.curso-toggle-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  transition: transform .3s ease, background .2s ease;
}
.curso-card.open .curso-toggle-icon { transform: rotate(180deg); background: var(--green-600); color: #fff; border-color: var(--green-600); }

.curso-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  border-top: 1px solid transparent;
}
.curso-card.open .curso-body { border-top: 1px solid var(--border); }
.curso-body-inner { padding: 8px 26px 30px; }

.curso-block { margin-top: 22px; }
.curso-block h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-700);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.curso-block h4 i { font-size: 1rem; }
.curso-block p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 10px; }
.curso-block ul { padding-left: 20px; margin: 0 0 10px; color: var(--ink-soft); font-size: .94rem; }
.curso-block ul li { margin-bottom: 6px; }
.curso-block h5 {
  font-size: .92rem;
  color: var(--green-900);
  margin: 14px 0 6px;
  font-weight: 700;
}

.curso-fotos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.curso-fotos .cf-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  position: relative;
}
.curso-fotos .cf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.curso-fotos .cf-item:hover img { transform: scale(1.08); }

/*--------------------------------------------------------------
# Galería
--------------------------------------------------------------*/
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 991px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gal-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-item:hover img { transform: scale(1.1); }
.gal-item::after {
  content: "\f52a";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(18, 58, 28, 0);
  transition: background .3s ease;
}
.gal-item:hover::after { background: rgba(18, 58, 28, .45); }

.gal-more {
  text-align: center;
  margin-top: 34px;
}

/*--------------------------------------------------------------
# Lightbox
--------------------------------------------------------------*/
.cfp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cfp-lightbox.active { display: flex; }
.cfp-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 22, 12, .92);
}
.cfp-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cfp-lightbox-content img {
  max-width: 90vw;
  max-height: 74vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cfp-lightbox-footer {
  color: #fff;
  margin-top: 14px;
  font-size: .9rem;
  opacity: .85;
}
.cfp-lightbox-close, .cfp-lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .2s ease;
  z-index: 3;
}
.cfp-lightbox-close:hover, .cfp-lightbox-nav:hover { background: var(--green-600); }
.cfp-lightbox-close { top: -8px; right: -8px; }
.cfp-lightbox-prev { left: -60px; top: 50%; transform: translateY(-50%); }
.cfp-lightbox-next { right: -60px; top: 50%; transform: translateY(-50%); }
@media (max-width: 767px) {
  .cfp-lightbox-close { top: -50px; right: 0; }
  .cfp-lightbox-prev { left: 4px; }
  .cfp-lightbox-next { right: 4px; }
}

/*--------------------------------------------------------------
# Ubicación / Contacto
--------------------------------------------------------------*/
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.contact-info-card i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 34px;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card .form-control {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: .94rem;
}
.contact-form-card .form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 .2rem rgba(61, 132, 76, .15);
}
.contact-form-card .loading,
.contact-form-card .error-message,
.contact-form-card .sent-message { display: none; font-size: .9rem; padding: 10px 0; }
.contact-form-card .loading.d-block { display: block; color: var(--green-700); }
.contact-form-card .error-message.d-block { display: block; color: #b3261e; }
.contact-form-card .sent-message.d-block { display: block; color: var(--green-700); font-weight: 700; }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  padding: 60px 0 26px;
}
#footer .footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
#footer .footer-brand img { height: 54px; }
#footer .footer-brand strong { display: block; color: #fff; font-size: 1.05rem; }
#footer .footer-brand span { display: block; font-size: .8rem; color: rgba(255,255,255,.6); }
#footer p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.65); }
#footer h4 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
#footer ul { list-style: none; padding: 0; margin: 0; }
#footer ul li { margin-bottom: 10px; }
#footer ul a { color: rgba(255,255,255,.72); font-size: .9rem; }
#footer ul a:hover { color: var(--amber-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.75); }

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--green-600);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all .3s ease;
  box-shadow: var(--shadow-md);
}
.back-to-top.active { visibility: visible; opacity: 1; }
.back-to-top:hover { background: var(--green-800); color: #fff; transform: translateY(-4px); }

/*--------------------------------------------------------------
# Breadcrumb-like divider chip (badges institucionales)
--------------------------------------------------------------*/
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-700);
}
.trust-chip i { font-size: 1rem; color: var(--amber-500); }
