/* ==========================================================================
   MONICA LLACH Y CIA LTDA. - ASEGURADORAS
   Hoja de estilos oficial para la página interna de Aseguradoras Aliadas
   ========================================================================== */

:root {
  --color-primary: #052149;
  --color-secondary: #C9994F;
  --color-secondary-hover: #B3843E;
  --navy-deep: #052149;
  --navy-dark: #0A192F;
  --gold-primary: #C9994F;
  --gold-light: #DFBE82;
  --gold-hover: #B3843E;
  
  --bg-primary: #FAF5EE;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFBF7;
  
  --text-dark: #1A1F26;
  --text-body: #3E4551;
  --text-muted: #7E8594;
  --border-light: #E8DECF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 18px rgba(5, 33, 73, 0.05);
  --shadow-hover: 0 16px 36px rgba(5, 33, 73, 0.12);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Breadcrumb Bar
   ========================================================================== */
.breadcrumb-bar {
  background: var(--bg-primary);
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-light);
  margin-top: 80px; /* Offset for fixed header */
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  font-size: 0.88rem;
  margin: 0;
  padding: 0;
}

.breadcrumb-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--gold-primary);
}

.breadcrumb-separator {
  color: var(--text-muted);
  opacity: 0.6;
}

.breadcrumb-current {
  color: var(--text-dark);
  font-weight: 600;
}

/* ==========================================================================
   Hero Section: Aseguradoras
   ========================================================================== */
.aseguradoras-hero-section {
  background: var(--bg-primary);
  padding: clamp(2.8rem, 5vw, 4.5rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.aseguradoras-hero-section::before {
  content: "M";
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(16rem, 26vw, 26rem);
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.aseguradoras-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.aseguradoras-hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  background: rgba(201, 153, 79, 0.12);
  border: 1px solid rgba(201, 153, 79, 0.32);
  border-radius: var(--radius-full);
  color: var(--color-secondary-hover);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.aseguradoras-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.gold-gradient-text {
  color: var(--gold-primary);
  font-style: italic;
}

.aseguradoras-hero-desc {
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 0.85rem;
}

.aseguradoras-hero-desc:last-of-type {
  margin-bottom: 0;
}

/* Trust Pills Strip */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 1.8rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(5, 33, 73, 0.04);
  transition: var(--transition-smooth);
}

.trust-pill:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 33, 73, 0.08);
}

.trust-pill-icon {
  font-size: 0.95rem;
}

/* Action Buttons */
.aseguradoras-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--gold-primary);
  color: #FFFFFF !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(201, 153, 79, 0.35);
}

.btn-hero-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 153, 79, 0.45);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: var(--text-dark) !important;
  border: 1.5px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-hero-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary) !important;
  background: rgba(201, 153, 79, 0.05);
  transform: translateY(-2px);
}

.aseguradoras-hero-media {
  position: relative;
  width: 100%;
}

.aseguradoras-hero-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 33, 73, 0.12), 0 4px 14px rgba(201, 153, 79, 0.08);
  border: 1.5px solid rgba(232, 222, 207, 0.9);
  background: #E8DECF;
  aspect-ratio: 16 / 10;
  position: relative;
  transition: var(--transition-smooth);
}

.aseguradoras-hero-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(5, 33, 73, 0.16), 0 6px 18px rgba(201, 153, 79, 0.15);
}

.aseguradoras-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aseguradoras-hero-frame:hover img {
  transform: scale(1.03);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 28px rgba(5, 33, 73, 0.14);
  z-index: 2;
}

.badge-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 153, 79, 0.15);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-info strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.badge-info span {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* ==========================================================================
   Grilla Editorial de las 8 Aseguradoras
   ========================================================================== */
.aseguradoras-grid-section {
  background: #FFFFFF;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border-light);
}

.aseguradoras-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.aseguradora-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.aseguradora-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.aseguradora-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.aseguradora-card:hover::before {
  background: var(--gold-primary);
}

.aseguradora-logo-wrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
}

.aseguradora-logo-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.35s ease;
  display: block;
}

.aseguradora-card:hover .aseguradora-logo-img {
  transform: scale(1.05);
}

/* Tamaños ajustados ópticos para cada logo */
.logo-sura { max-height: 52px; }
.logo-bolivar { max-height: 54px; }
.logo-allianz { max-height: 46px; }
.logo-hdi { max-height: 68px; }
.logo-axa { max-height: 64px; }
.logo-estado { max-height: 48px; }
.logo-mapfre { max-height: 42px; }
.logo-skandia { max-height: 44px; }

/* Fila de Asistencia Telefónica */
.aseguradora-asistencia {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 222, 207, 0.7);
  font-size: 0.95rem;
}

.asistencia-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.asistencia-num {
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.asistencia-num:hover {
  color: var(--gold-primary);
  transform: scale(1.05);
}

/* ==========================================================================
   Sección Dual: Cómo seleccionamos & Red de aliados
   ========================================================================== */
.aseguradoras-dual-section {
  background: var(--bg-primary);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--border-light);
}

.dual-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.dual-col-header {
  margin-bottom: 2rem;
}

.dual-col-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Proceso: 4 Pasos */
.proceso-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.proceso-step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(201, 153, 79, 0.12);
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.proceso-step-item:hover .step-icon-circle {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.step-icon-circle svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* Red de Aliados: 3 Pilares */
.aliados-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.aliado-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.aliado-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy-deep);
  transition: var(--transition-smooth);
}

.aliado-pillar-card:hover .pillar-icon-box {
  background: var(--navy-deep);
  color: var(--gold-primary);
  border-color: var(--navy-deep);
}

.pillar-icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pillar-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ==========================================================================
   Banner Final CTA: "Estamos aquí para ayudarte a tomar decisiones..."
   ========================================================================== */
.aseguradoras-cta-section {
  background: var(--bg-primary);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.aseguradoras-cta-card {
  background: var(--navy-deep);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.8rem, 4vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 16px 40px rgba(5, 33, 73, 0.25);
  position: relative;
  overflow: hidden;
}

.aseguradoras-cta-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 153, 79, 0.15) 0%, rgba(201, 153, 79, 0) 70%);
  pointer-events: none;
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-calendar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 153, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.cta-calendar-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-text-wrap {
  display: flex;
  flex-direction: column;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.cta-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.5;
}

.cta-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-primary);
  color: #FFFFFF;
  padding: 0.95rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(201, 153, 79, 0.35);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.cta-btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 153, 79, 0.45);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .dual-features-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 992px) {
  .aseguradoras-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .aseguradoras-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .aseguradoras-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-btn-gold {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .proceso-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .aliados-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .aseguradoras-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proceso-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .cta-left-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   Sección Noticias del Sector Asegurador (Fasecolda)
   ========================================================================== */
.fasecolda-noticias-section {
  position: relative;
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  background-color: #06224B;
  background-image: 
    linear-gradient(135deg, rgba(6, 34, 75, 0.90) 0%, rgba(3, 20, 48, 0.94) 100%),
    url('../assets/noticias/fasecolda_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fasecolda-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.fasecolda-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(141, 198, 63, 0.18);
  border: 1px solid rgba(141, 198, 63, 0.45);
  border-radius: var(--radius-full);
  color: #B5E86E;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.fasecolda-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

/* Two-tone accent bar from Fasecolda (lime green + cyan) */
.fasecolda-accent-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 4px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  overflow: hidden;
}

.fasecolda-accent-bar .bar-green {
  width: 50%;
  height: 100%;
  background: #8DC63F;
}

.fasecolda-accent-bar .bar-cyan {
  width: 50%;
  height: 100%;
  background: #0CBCCC;
}

.fasecolda-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.fasecolda-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.fasecolda-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fasecolda-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
}

.fasecolda-card-imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E8EEF5;
}

.fasecolda-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fasecolda-card:hover .fasecolda-card-imgwrap img {
  transform: scale(1.05);
}

.fasecolda-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #8DC63F;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.02em;
  z-index: 2;
}

.fasecolda-card-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fasecolda-date {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #708090;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.fasecolda-date svg {
  color: #8DC63F;
  flex-shrink: 0;
}

.fasecolda-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.42;
  margin-bottom: 1.4rem;
  flex-grow: 1;
  transition: color 0.2s ease;
}

.fasecolda-card:hover .fasecolda-card-title {
  color: #0066CC;
}

.fasecolda-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0066CC;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.fasecolda-readmore svg {
  transition: transform 0.2s ease;
}

.fasecolda-card:hover .fasecolda-readmore {
  color: #004B99;
}

.fasecolda-card:hover .fasecolda-readmore svg {
  transform: translateX(4px);
}

.fasecolda-footer-action {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-fasecolda-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-fasecolda-more:hover {
  background: #FFFFFF;
  color: #06224B !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .fasecolda-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fasecolda-cards-grid {
    grid-template-columns: 1fr;
  }
}
