/* ============================================
   PUBLIC THEME — Tierra Resiliente
   Namespace: trs-
   ============================================ */

/* ── TRS Variables ── */
:root {
  --trs-green-dark:   #1a3a0a;
  --trs-green-mid:    #2D5016;
  --trs-green-light:  #7ab648;
  --trs-orange:       #d4621a;
  --trs-orange-light: #e07020;
  --trs-cream:        #f5f0e8;
  --trs-bg-dark:      #0f1f08;
  --trs-text-dark:    #1a1a0f;
  --trs-text-light:   rgba(255,255,255,0.8);
  --trs-radius:       12px;
  --trs-radius-lg:    18px;
}

/* ── Navbar flotante transparente ── */
.trs-navbar {
  background: var(--trs-green-mid);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  padding: 8px 24px;
  padding-left: 10%;
  padding-right: 6%;
  margin-top: 7px;
  overflow: visible;
  transition: transform 0.35s ease;
}

.trs-navbar.trs-navbar-hidden {
  transform: translateY(calc(-100% - 160px));
}

/* Medallón circular del logo — anclado al navbar, flota sobre el hero */
.trs-navbar-brand {
  position: relative;
  z-index: 1001;
  width: 170px;
  height: auto;
  padding: 0;
}

.trs-logo-circle {
  position: absolute;
  top: -8px;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  padding: 12px;
}

.trs-logo-img {
  width: 136px;
  height: 136px;
  object-fit: contain;
}

/* Links blancos sobre hero oscuro */
.trs-navbar .nav-link,
.trs-navbar .navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.trs-navbar .nav-link:hover {
  color: #c8e6a0 !important;
}

/* Botones login/carrito más a la izquierda */
.trs-navbar .d-flex {
  margin-right: auto;
  margin-left: 0;
}

.navbar .nav-link {
  font-weight: var(--font-weight-regular);
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.navbar .nav-link:hover {
  color: var(--trs-orange-light) !important;
}

.badge.bg-warning {
  background-color: var(--trs-orange) !important;
  color: #fff !important;
}

/* ── Shared section styles ── */
.trs-section-title {
  font-size: 2.2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-dark);
  margin-bottom: 0.5rem;
}

.trs-section-title-light {
  color: #fff;
}

.trs-section-subtitle {
  color: var(--color-slate);
  font-weight: var(--font-weight-light);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.trs-section-subtitle-light {
  color: var(--trs-text-light);
}

.trs-btn-organic {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }


/* ══════════════════════════════════════
   1. HERO
   ══════════════════════════════════════ */
.trs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      170deg,
      rgba(15,31,8,0.88) 0%,
      rgba(26,58,10,0.75) 40%,
      rgba(45,80,22,0.65) 100%
    ),
    url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.trs-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(122,182,72,0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  transform: translateY(var(--trs-parallax, 0));
}

.trs-hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 4rem;
  max-width: 800px;
}

.trs-hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--trs-green-light);
  background: rgba(122,182,72,0.12);
  border: 1px solid rgba(122,182,72,0.25);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

.trs-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.05;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--trs-green-light) 50%, var(--trs-orange-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: trs-gradient-shift 6s ease infinite;
}

@keyframes trs-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.trs-hero-subtitle {
  font-size: 1.4rem;
  font-weight: var(--font-weight-light);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.trs-hero-text {
  font-size: 1.05rem;
  font-weight: var(--font-weight-light);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.trs-hero-actions .btn {
  padding: 0.85rem 2.25rem;
}

/* Leaves particles */
.trs-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.trs-leaf {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--trs-green-light);
  opacity: 0.15;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
}

.trs-leaf-1 { top: 15%; left: 10%; animation: trs-leaf-fall 12s linear infinite; }
.trs-leaf-2 { top: 8%;  left: 30%; animation: trs-leaf-fall 15s linear infinite 2s; width: 8px; height: 8px; }
.trs-leaf-3 { top: 12%; left: 65%; animation: trs-leaf-fall 18s linear infinite 4s; }
.trs-leaf-4 { top: 5%;  left: 80%; animation: trs-leaf-fall 14s linear infinite 6s; width: 10px; height: 10px; }
.trs-leaf-5 { top: 10%; left: 50%; animation: trs-leaf-fall 16s linear infinite 8s; width: 6px; height: 6px; }

@keyframes trs-leaf-fall {
  0%   { transform: rotate(45deg) translate(0, 0); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.1; }
  100% { transform: rotate(405deg) translate(80px, 100vh); opacity: 0; }
}

/* Scroll indicator */
.trs-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.trs-scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.trs-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--trs-green-light);
  animation: trs-scroll-pulse 2s ease-in-out infinite;
}

@keyframes trs-scroll-pulse {
  0%   { top: -50%; }
  100% { top: 100%; }
}


/* ══════════════════════════════════════
   SEPARADORES ORGÁNICOS
   ══════════════════════════════════════ */
.trs-separator {
  line-height: 0;
  overflow: hidden;
}

.trs-separator svg {
  width: 100%;
  display: block;
}

.trs-separator-forest { background: transparent; margin-top: -1px; }
.trs-separator-to-cream { background: var(--trs-bg-dark); }
.trs-separator-to-dark { background: var(--trs-cream); }
.trs-separator-to-cream2 { background: var(--trs-bg-dark); }
.trs-separator-to-cream3 { background: var(--trs-bg-dark); }


/* ══════════════════════════════════════
   2. PROPÓSITO
   ══════════════════════════════════════ */
.trs-proposito {
  background: var(--trs-bg-dark);
  color: #fff;
  padding: 5rem 0;
}

.trs-proposito-icon {
  margin-bottom: 1.5rem;
}

.trs-proposito-number {
  font-size: 4rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trs-proposito-title {
  font-size: 1.3rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-light);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trs-proposito-text {
  font-size: 0.95rem;
  color: var(--trs-text-light);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}


/* ══════════════════════════════════════
   3. SERVICIOS
   ══════════════════════════════════════ */
.trs-servicios {
  background: var(--trs-cream);
  padding: 5rem 0;
}

.trs-service-card {
  background: #fff;
  border-radius: var(--trs-radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(26,58,10,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.trs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45,80,22,0.15);
}

.trs-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.trs-service-icon-green {
  background: rgba(122,182,72,0.12);
  color: var(--trs-green-mid);
}

.trs-service-icon-orange {
  background: rgba(212,98,26,0.1);
  color: var(--trs-orange);
}

.trs-service-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-dark);
  margin-bottom: 0.6rem;
}

.trs-service-desc {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
  flex-grow: 1;
}

.trs-service-link {
  font-size: 0.85rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

.trs-service-link:hover {
  color: var(--trs-orange-light);
}

.trs-service-link i {
  transition: transform 0.2s ease;
}

.trs-service-link:hover i {
  transform: translateX(4px);
}


/* ══════════════════════════════════════
   4. TIMELINE
   ══════════════════════════════════════ */
.trs-timeline-section {
  background: var(--trs-bg-dark);
  background-image: radial-gradient(rgba(122,182,72,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 5rem 0;
  color: #fff;
}

.trs-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}

.trs-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--trs-green-mid);
  transform: translateX(-50%);
  transform-origin: top;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.5s ease;
}

.trs-timeline-line.trs-line-drawn {
  clip-path: inset(0 0 0 0);
}

.trs-timeline-item {
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
}

.trs-timeline-left {
  flex-direction: row;
  padding-right: calc(50% + 30px);
  text-align: right;
}

.trs-timeline-right {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
  text-align: left;
}

.trs-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--trs-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.9rem;
  color: #fff;
}

.trs-timeline-content {
  flex: 1;
}

.trs-timeline-year {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-orange);
  display: block;
  margin-bottom: 0.25rem;
}

.trs-timeline-text {
  font-size: 0.95rem;
  color: var(--trs-text-light);
  line-height: 1.65;
  margin: 0;
}


/* ══════════════════════════════════════
   5. PRODUCTOS
   ══════════════════════════════════════ */
.trs-productos {
  background: var(--trs-cream);
  padding: 5rem 0;
}

.trs-producto-card {
  background: #fff;
  border-radius: var(--trs-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(26,58,10,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trs-producto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.12);
}

.trs-producto-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(122,182,72,0.1);
  color: var(--trs-green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
}

.trs-producto-title {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-dark);
  margin-bottom: 0.75rem;
}

.trs-producto-desc {
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}


/* ══════════════════════════════════════
   6. FARO AGROECOLÓGICO
   ══════════════════════════════════════ */
.trs-faro {
  background: linear-gradient(135deg, var(--trs-green-mid) 0%, #3a6e1e 100%);
  color: #fff;
  padding: 5rem 0;
}

.trs-faro-title {
  font-size: 2.2rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.trs-faro-text {
  font-size: 1.1rem;
  font-weight: var(--font-weight-light);
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

.trs-faro-stat {
  margin-bottom: 0.5rem;
}

.trs-faro-number {
  font-size: 3.5rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

.trs-faro-unit {
  font-size: 1.2rem;
  font-weight: var(--font-weight-light);
  margin-left: 0.25rem;
  opacity: 0.8;
}

.trs-faro-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}


/* ══════════════════════════════════════
   7. VOLUNTARIADOS
   ══════════════════════════════════════ */
.trs-voluntariado {
  background: var(--trs-bg-dark);
  color: #fff;
  padding: 5rem 0;
}

.trs-voluntariado-text {
  font-size: 1.05rem;
  color: var(--trs-text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.trs-donacion-box {
  background: rgba(122,182,72,0.08);
  border: 1px solid rgba(122,182,72,0.2);
  border-radius: var(--trs-radius-lg);
  padding: 2.5rem;
}

.trs-donacion-title {
  font-size: 1.4rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: var(--trs-green-light);
}

.trs-donacion-text {
  font-size: 0.95rem;
  color: var(--trs-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


/* ══════════════════════════════════════
   8. BLOG
   ══════════════════════════════════════ */
.trs-blog {
  background: var(--trs-cream);
  padding: 5rem 0;
}

.trs-blog-card-link {
  text-decoration: none;
  color: inherit;
}

.trs-blog-card {
  background: #fff;
  border-radius: var(--trs-radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 8px rgba(26,58,10,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trs-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.12);
}

.trs-blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--trs-cream);
}

.trs-blog-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--trs-green-mid);
  opacity: 0.3;
}

.trs-blog-body {
  padding: 1.5rem;
}

.trs-blog-date {
  font-size: 0.78rem;
  color: var(--color-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trs-blog-title {
  font-size: 1.05rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-dark);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.trs-blog-excerpt {
  font-size: 0.88rem;
  color: var(--color-slate);
  line-height: 1.6;
  margin: 0;
}

.trs-link-arrow {
  font-size: 0.95rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

.trs-link-arrow:hover {
  color: var(--trs-orange-light);
}


/* ══════════════════════════════════════
   9. CONTACTO
   ══════════════════════════════════════ */
.trs-contacto {
  background: var(--trs-green-dark);
  color: #fff;
  padding: 5rem 0;
}

.trs-contacto-text {
  font-size: 1.05rem;
  color: var(--trs-text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.trs-contacto-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trs-contacto-info li {
  font-size: 0.95rem;
  color: var(--trs-text-light);
  padding: 0.5rem 0;
}

.trs-contacto-info li i {
  color: var(--trs-green-light);
}

.trs-contacto-form-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--trs-radius-lg);
  padding: 2rem;
}

.trs-input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: var(--trs-radius) !important;
}

.trs-input::placeholder {
  color: rgba(255,255,255,0.4) !important;
}

.trs-input:focus {
  background: rgba(255,255,255,0.12) !important;
  border-color: var(--trs-green-light) !important;
  box-shadow: 0 0 0 0.2rem rgba(122,182,72,0.2) !important;
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer.footer {
  background: var(--trs-bg-dark) !important;
  color: rgba(255,255,255,0.6);
  border-top: none !important;
  padding: 2.5rem 0 !important;
}

footer.footer .footer-brand {
  font-weight: var(--font-weight-semibold);
  color: #fff;
  font-size: 1rem;
}

footer.footer .footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--trs-orange-light);
}

.footer-sep {
  color: rgba(255,255,255,0.2);
  margin: 0 0.75rem;
}


/* ══════════════════════════════════════
   WHATSAPP FLOTANTE
   ══════════════════════════════════════ */
.trs-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.trs-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  color: #fff;
}


/* ══════════════════════════════════════
   ANIMACIONES
   ══════════════════════════════════════ */

/* Fade-up */
.trs-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trs-fade-up.trs-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.trs-fade-up:nth-child(2) { transition-delay: 0.1s; }
.trs-fade-up:nth-child(3) { transition-delay: 0.2s; }
.trs-fade-up:nth-child(4) { transition-delay: 0.3s; }
.trs-fade-up:nth-child(5) { transition-delay: 0.15s; }
.trs-fade-up:nth-child(6) { transition-delay: 0.25s; }
.trs-fade-up:nth-child(7) { transition-delay: 0.35s; }


/* ══════════════════════════════════════
   PRODUCT CARDS (tienda, reused)
   ══════════════════════════════════════ */
.product-card {
  border-radius: var(--trs-radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(26,58,10,0.06);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,80,22,0.12);
}

.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.product-card .product-price {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-mid);
}

.product-card .btn-add-cart {
  background-color: var(--trs-green-mid);
  color: #fff;
  border: none;
  border-radius: var(--trs-radius);
  font-weight: var(--font-weight-semibold);
  transition: background-color 0.2s ease;
}

.product-card .btn-add-cart:hover {
  background-color: var(--trs-green-dark);
}

/* Section title reuse */
.section-title {
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--trs-green-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-slate);
  font-weight: var(--font-weight-light);
  margin-bottom: 2.5rem;
}

/* Login page */
.form-signin .card {
  border-radius: var(--trs-radius-lg);
  box-shadow: 0 8px 32px rgba(26,58,10,0.1);
}

.form-signin .btn-primary {
  background-color: var(--trs-green-mid);
  border-color: var(--trs-green-mid);
}

.form-signin .btn-primary:hover {
  background-color: var(--trs-green-dark);
  border-color: var(--trs-green-dark);
}

/* Cart button */
.btn-cart {
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-base);
  padding: 0.35rem 0.75rem;
  transition: var(--transition-base);
}

.btn-cart:hover {
  color: var(--trs-orange-light);
  border-color: var(--trs-orange-light);
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .trs-navbar-brand {
    width: 110px;
  }

  .trs-logo-circle {
    width: 110px;
    height: 110px;
    padding: 8px;
  }

  .trs-logo-img {
    width: 94px;
    height: 94px;
  }

  .trs-hero-content {
    padding: 4rem 1rem 3rem;
  }

  .trs-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .trs-hero-subtitle {
    font-size: 1.15rem;
  }

  .trs-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .trs-hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .trs-hero-actions .ms-3 { margin-left: 0 !important; }

  .trs-section-title,
  .trs-faro-title {
    font-size: 1.75rem;
  }

  .trs-proposito-number {
    font-size: 3rem;
  }

  .trs-faro-number {
    font-size: 2.5rem;
  }

  /* Timeline mobile: single column */
  .trs-timeline-left,
  .trs-timeline-right {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
    flex-direction: row;
  }

  .trs-timeline-line {
    left: 20px;
  }

  .trs-timeline-dot {
    left: 20px;
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .trs-contacto-form-box {
    padding: 1.5rem;
  }

  .trs-donacion-box {
    padding: 1.75rem;
  }
}

@media (max-width: 375px) {
  .trs-hero-badge {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  .trs-hero-title {
    font-size: 2.2rem;
  }
}
