@import url('https://fonts.gstatic.com/s/merriweather/v33/u-4e0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiSeqqJ-mXrVGjziE.woff2');

:root {

  /* ── Colores principales ── */
  --bs-primary: #D11F43;
  --bs-primary-rgb: 209, 31, 67;
  /*--bs-secondary: #4caf50;
  --bs-secondary-rgb: 76, 175, 80;*/
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;

  /* ── Fuentes ── */
  --bs-font-sans-serif: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Merriweather, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;

  /* ── Botones ── */
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;

  /* ── Utilidades propias ── */
  --white: #FFFFFF;
  --gray-light: #f5f5f5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html {
  scroll-padding-top: 80px;
}

* { box-sizing: border-box; }

body {
  /*font-family: 'Inter', system-ui, -apple-system, sans-serif;*/
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ==================== Navbar ==================== */

.navbar-custom {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-custom.navbar-shrink {
  padding: 0.25rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand img {
  width: 320px;
}

@media (max-width: 991.98px) {
  .navbar-custom .navbar-brand img {
    width: 220px;
  }
}

.navbar-custom .navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.3px;
  transition: font-size var(--transition);
}

.navbar-custom.navbar-shrink .navbar-brand {
  font-size: 1.1rem;
}

.navbar-custom .navbar-brand .brand-highlight {
  color: var(--secondary);
}

.navbar-custom .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem !important;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.navbar-custom .nav-link:hover {
  color: var(--primary);
  background: rgba(22, 78, 99, 0.05);
}

.navbar-custom .nav-link.active {
  color: var(--primary);
  background: rgba(22, 78, 99, 0.08);
}

.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.btn-nav-cta {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.45rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: var(--white);
}

.navbar-toggler {
  border: 1px solid var(--bs-secondary);
  border-radius: 6px;
  padding: 0.95rem 0.75rem;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon-custom {
  width: 20px; height: 2px;
  background: var(--bs-secondary);
  display: block;
  position: relative;
  transition: background 0.2s;
}
.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  width: 20px; height: 2px;
  background: var(--bs-secondary);
  display: block;
  position: absolute;
  transition: transform 0.2s;
}
.navbar-toggler-icon-custom::before { top: -7px; }
.navbar-toggler-icon-custom::after { top: 7px; }

.dropdown-toggle::after {
  border-top: 0;
}

/* ─── Submenu ─── */
.has-submenu { position: relative; }
.submenu-icon { font-size: .7rem; margin-left: 4px; transition: transform var(--transition); }
.has-submenu:hover .submenu-icon { transform: rotate(180deg); }
.submenu {
    display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: #fff; border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,.12); border: 1px solid var(--border);
    padding: 8px 0; min-width: 220px; z-index: 200;
}
.has-submenu:hover .submenu { display: block; }
.submenu li { white-space: nowrap; }
.submenu a {
    display: block; padding: 10px 20px; font-size: .9rem;
    color: var(--text); transition: all var(--transition);
}
.submenu a::after { display: none; }
.submenu a:hover { background: var(--bg-alt); color: var(--primary); padding-left: 24px; }
.submenu a.active { color: var(--accent-dark); font-weight: 600; background: rgba(201,168,76,.08); padding-left: 24px; }
.submenu a.active::after { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--text);
    margin: 5px 0; transition: var(--transition); border-radius: 2px;
}
.dropdown-toggle::after {
  display: none;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

/* ==================== Botones ==================== */

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 78, 99, 0.25);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
}

.btn-outline-facebook {
  --bs-btn-color: #1877F2;
  --bs-btn-border-color: #1877F2;
}

.btn-outline-instagram {
  --bs-btn-color: #e56969;
  --bs-btn-border-color: #e56969;
}
/* ==================== Hero ==================== */

.hero-section {
  background: var(--bg);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22,78,99,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-graphic {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
}

.hero-graphic .graphic-bar {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  animation: barPulse 2s ease-in-out infinite;
}

.hero-graphic .graphic-bar:nth-child(1) { width: 80%; background: var(--primary); animation-delay: 0s; }
.hero-graphic .graphic-bar:nth-child(2) { width: 60%; background: var(--secondary); animation-delay: 0.3s; }
.hero-graphic .graphic-bar:nth-child(3) { width: 90%; background: var(--accent); animation-delay: 0.6s; }
.hero-graphic .graphic-bar:nth-child(4) { width: 45%; background: var(--gray); animation-delay: 0.9s; }
.hero-graphic .graphic-bar:nth-child(5) { width: 70%; background: var(--primary); animation-delay: 1.2s; }

.hero-graphic .graphic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 1rem;
}

.hero-graphic .graphic-dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--gray-light);
}

.hero-graphic .graphic-dot:nth-child(1) { background: var(--primary); }
.hero-graphic .graphic-dot:nth-child(3) { background: var(--secondary); }
.hero-graphic .graphic-dot:nth-child(6) { background: var(--accent); }

@keyframes barPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ==================== Section headers ==================== */

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ==================== Cards ==================== */

.card-service {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-service .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.icon-primary { background: var(--primary); }
.icon-secondary { background: var(--secondary); }
.icon-accent { background: var(--accent); }
.icon-gray { background: var(--gray); }

.card-service h5 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.card-service p {
  font-size: 0.92rem;
  color: var(--gray);
  margin-bottom: 0;
}

.card-service ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.card-service ul li {
  font-size: 0.88rem;
  color: var(--gray);
  padding: 0.2rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.card-service ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.card-service .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.8rem;
  transition: gap var(--transition);
}

.card-service .card-link:hover {
  gap: 8px;
  color: var(--primary-light);
}

/* ==================== Caso de uso ==================== */

.caso-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  border-top: 4px solid var(--gray-light);
}

.caso-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.caso-card.border-primary { border-top-color: var(--primary); }
.caso-card.border-secondary { border-top-color: var(--secondary); }
.caso-card.border-accent { border-top-color: var(--accent); }

.caso-card h5 { font-weight: 700; margin-bottom: 0.8rem; }
.caso-card .label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 0.2rem; }
.caso-card .value { font-size: 0.92rem; color: var(--text); }
.caso-card .divider { height: 1px; background: var(--gray-light); margin: 0.8rem 0; }

.caso-card .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}

.caso-card .card-link:hover { gap: 8px; }

/* ==================== Timeline ==================== */

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-num {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-item h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.timeline-item .result-box {
  background: rgba(58, 125, 90, 0.06);
  border-left: 3px solid var(--secondary);
  padding: 0.6rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
}

/* ==================== Stats ==================== */

.stats-section {
  background: var(--primary);
  padding: 4rem 0;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.counter { display: inline-block; }
.counter::after { content: '+'; }

/* ==================== CTA block ==================== */

.cta-section {
  background: var(--primary);
  padding: 4.5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary-custom {
  background: var(--white);
  color: var(--primary);
}

.cta-section .btn-primary-custom:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ==================== Page header ==================== */

.page-header {
  background: var(--primary);
  padding: 3.5rem 0;
}

.page-header h1 {
  color: var(--white);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 0;
}

/* ==================== Footer ==================== */

.footer {
  background: var(--text);
  color: rgba(0,0,0,0.7);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer .brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer .brand .brand-highlight { color: var(--secondary); }

.footer .tagline {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer h6 {
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.footer a {
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.2rem 0;
  transition: color var(--transition);
}

.footer a:hover { color: var(--bs-primary); }

.footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}

/* ==================== Contact form ==================== */

.contact-form-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 78, 99, 0.1);
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form-card .btn-primary-custom {
  width: 100%;
  padding: 0.8rem;
}

.contact-sidebar .info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-sidebar .info-icon {
  width: 42px;
  height: 42px;
  background: rgba(22, 78, 99, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-sidebar h6 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-sidebar p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

/* ==================== Sobre nosotros ==================== */

.about-profile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.about-profile .icon-big {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.about-profile h5 {
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.about-profile p {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 0;
}

.about-mission {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

/* ==================== Recursos ==================== */

.recurso-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.recurso-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.recurso-card .cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.recurso-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.recurso-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.recurso-card .meta {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ==================== Back to top ==================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  z-index: 1040;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  color: var(--white);
}

/* ==================== Lazy + reveal ==================== */

img[data-src] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

img[data-src].loaded {
  opacity: 1;
  transform: scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── Cookie Banner ─── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--primary-dark); color: rgba(255,255,255,.85);
    padding: 16px 24px; display: none;
    align-items: center; justify-content: center; gap: 24px;
    flex-wrap: wrap; font-size: .9rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn { padding: 8px 20px; font-size: .85rem; }
.cookie-banner .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.1); }


/* ==================== Responsive ==================== */

@media (max-width: 991.98px) {
  .navbar-custom .nav-link.active::after { display: none; }
  .navbar-custom .nav-link.active {
    background: rgba(22, 78, 99, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
  }
  .hero-section h1 { font-size: 2rem; }
  .hero-visual { margin-top: 2.5rem; }
}

@media (max-width: 767.98px) {
  .hero-section { padding: 3rem 0 4rem; }
  .hero-section h1 { font-size: 1.7rem; }
  .page-header { padding: 2.5rem 0; }
  .page-header h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .cta-section h2 { font-size: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .timeline { padding-left: 2.5rem; }
  .about-mission { padding: 1.5rem; }
}



/*LUALCA*/
hr.divider {
  height: 0.2rem;
  max-width: 3.25rem;
  margin: 1.5rem auto;
  background-color: var(--bs-primary);
  color: var(--bs-primary);
  opacity: 1;
}

hr.divider-light {
  background-color: #fff;
  color: #fff;
}

.page-hero {
  padding: 6rem 0 3rem;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

/* ── Botones Bootstrap overrides ── */

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #D11F43;
  --bs-btn-border-color: #D11F43;
}

.btn:hover {
  background-color: #b5b4b4;
  border-color: #ccc;
}

/* ── Tipografías ── */

body {
  font-family: "Merriweather", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  line-height: 1.2;
}

.btn {
  display: inline-block;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ── Formularios ── */

.form-control, .form-select {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
}

/*AÑADIDO*/

.social_icon span{
font-size: 60px;
margin-left: 10px;
color: #D11F43;
}

.social_icon span:hover{
color: white;
cursor: pointer;
}


.social_icon{
position: absolute;
right: 20px;
top: -45px;
}

.input-group-prepend span{
width: 50px;
background-color: #D11F43;
color: black;
border:0 !important;
}

input:focus{
outline: 0 0 0 0  !important;
box-shadow: 0 0 0 0 !important;

}

.remember{
color: white;
}

.remember input
{
width: 20px;
height: 20px;
margin-left: 15px;
margin-right: 5px;
}

.login_btn{
color: #212529;
  text-align: center;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
width: 100px;
}

.login_btn:hover{
color: black;
background-color: white;
}

a.obf-email {
  color: var(--bs-primary);
  text-decoration: underline;
}
a.obf-email:hover {
  color: var(--bs-primary-hover);
}