/**
 * Estilos para Homepage Rediseñado
 * Basado en referencia visual de la screenshot
 */

/* ==========================================
   SECCIÓN HERO - AZUL INSTITUCIONAL
   ========================================== */

section.home-hero--blue {
  background: linear-gradient(135deg, #003d82 0%, #002557 60%, #001a3a 100%);
  padding: var(--spacing-3xl) var(--spacing-xl);
  min-height: 85vh;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.home-hero--blue.home-hero--split .home-hero__content {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  align-items: center;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.home-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--font-size-sm);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-weight-semibold);
}

.home-hero--blue .home-hero__text h1 {
  font-size: clamp(2.6rem, 3vw, 3.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
}

.home-hero--blue .home-hero__text h1 span {
  color: var(--color-secondary);
}

.home-hero--blue .home-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  font-weight: 600;
}

.home-hero--blue .home-hero__description {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  line-height: 1.6;
}

.home-hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.feature-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.feature-pill--accent {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

.home-hero__cta-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.home-hero__cta-note {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  line-height: 1.4;
}

.home-hero__image-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.home-hero__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero__tag {
  position: absolute;
  top: var(--spacing-lg);
  left: var(--spacing-lg);
  background: rgba(0, 61, 130, 0.92);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.home-hero__floating-card {
  position: absolute;
  left: var(--spacing-lg);
  bottom: var(--spacing-lg);
  background: rgba(0, 21, 49, 0.82);
  color: #fff;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  max-width: 78%;
}

.home-hero__floating-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.home-hero__floating-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
}

.home-hero__floating-card li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--color-secondary);
  font-size: 1.1rem;
  top: -2px;
}

.home-hero__image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }
  section.home-hero--blue {
    padding: var(--spacing-3xl) var(--spacing-lg);
  }
  .home-hero__image-card {
    min-height: 360px;
    order: -1;
  }
  .home-hero__features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hero__features {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .home-hero__cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-hero__image-card {
    min-height: 300px;
  }
}

/* ==========================================
   SECCIÓN CRÉDITO A LA MEDIDA
   ========================================== */

/* ==========================================
   SECCIÓN CRÉDITO A LA MEDIDA
   ========================================== */

.home-credit-section {
  background: white;
  padding: 50px 0;
}

.home-credit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-credit-text h2 {
  font-size: 2.2rem;
  color: #003d82;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.home-credit-intro {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 600;
}

.home-credit-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-credit-needs {
  color: #003d82;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 16px;
}

.home-credit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.home-credit-list li {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.home-credit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 1.2rem;
}

.home-credit-closing {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.home-credit-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-credit-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 61, 130, 0.1);
}

.btn--credit-cta {
  font-size: 1rem;
  padding: 14px 40px !important;
  background: #FF6B35 !important;
  color: white !important;
  border: none !important;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 24px;
}

.btn--credit-cta:hover {
  background: #FF8C52 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
}
}

.home-credit-image img {
  width: 100%;
  border-radius: 8px;
}

@media (max-width: 968px) {
  .home-credit-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SECCIÓN BLOQUES RÁPIDOS - CRÉDITO
   ========================================== */

.home-credit-highlights {
  background: #ffffff;
  padding: 60px 0 50px;
}

.home-credit-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.credit-highlight-card {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
  color: #333;
}

.credit-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.credit-highlight-card--primary {
  background: #FF6B35;
  color: white;
  border-color: rgba(255, 107, 53, 0.5);
}

.credit-highlight-card--primary h3,
.credit-highlight-card--primary p {
  color: inherit;
}

.credit-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.4);
  color: #003d82;
}

.credit-highlight-card--primary .credit-highlight-icon {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.credit-highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: inherit;
}

.credit-highlight-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: inherit;
}

@media (max-width: 768px) {
  .home-credit-highlights {
    padding: 50px 0 40px;
  }
}

/* ==========================================
   SECCIÓN ¿POR QUÉ SER BROKER?
   ========================================== */

.home-why-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.home-why-section h2 {
  color: #003d82;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.home-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.home-why-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.why-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.home-why-image img {
  width: 100%;
  border-radius: 8px;
}

.home-why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FF6B35;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 968px) {
  .home-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SECCIÓN HERRAMIENTAS Y PROCESOS
   ========================================== */

.home-tools-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f9ff 100%);
  padding: 80px 0 60px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.tools-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.tools-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003d82;
  margin: 0 0 12px;
  line-height: 1.2;
}

.tools-subtitle {
  font-size: 1.6rem;
  color: #FF6B35;
  font-weight: 700;
  margin: 0;
}

.tools-timeline-horizontal {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Línea horizontal central */
.tools-timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #FF6B35, #003d82, #FF6B35);
  z-index: 0;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.timeline-item--top {
  flex-direction: column;
}

.timeline-item--top .timeline-card {
  margin-bottom: 0;
  order: -1;
}

.timeline-item--bottom {
  flex-direction: column;
}

.timeline-item--bottom .timeline-card {
  margin-top: 0;
  order: 1;
}

.timeline-dot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  border: 4px solid #FF6B35;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0, 61, 130, 0.2);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
  background: #FF6B35;
}

.timeline-item:hover .timeline-dot .timeline-number {
  color: white;
}

.timeline-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FF6B35;
  transition: color 300ms ease;
}

.timeline-card {
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 10px 28px rgba(0, 61, 130, 0.08);
  border: 1px solid rgba(0, 61, 130, 0.08);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: all 300ms ease;
  max-width: 220px;
}

.timeline-card:hover {
  box-shadow: 0 16px 40px rgba(0, 61, 130, 0.12);
  transform: translateY(-6px);
  border-color: #FF6B35;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FF6B35, #FF8C52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.timeline-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #003d82;
  margin: 0;
  line-height: 1.4;
}

.tools-cta {
  text-align: center;
}

.tools-cta .btn {
  padding: 16px 48px !important;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .tools-timeline-horizontal {
    flex-wrap: wrap;
  }

  .tools-timeline-horizontal::before {
    display: none;
  }

  .timeline-item {
    width: calc(50% - 10px);
    margin: 20px 5px;
  }

  .timeline-dot {
    margin: 12px 0;
  }

  .timeline-card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .tools-header h2 {
    font-size: 2rem;
  }

  .tools-subtitle {
    font-size: 1.3rem;
  }

  .timeline-item {
    width: 100%;
    margin: 20px 0;
  }

  .timeline-item--top {
    flex-direction: column-reverse;
  }

  .timeline-item--top .timeline-card {
    order: 1;
    margin-bottom: 16px;
  }

  .timeline-item--bottom .timeline-card {
    order: -1;
    margin-top: 16px;
  }

  .timeline-dot {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  .timeline-number {
    font-size: 1.8rem;
  }

  .timeline-card {
    max-width: 100%;
    min-height: auto;
    padding: 20px 16px;
  }

  .timeline-card h3 {
    font-size: 0.95rem;
  }

  .timeline-icon {
    width: 48px;
    height: 48px;
  }
}

/* ==========================================
   SECCIÓN CONFIANZA Y EXCELENCIA
   ========================================== */

.home-trust-section {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-trust-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-trust-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 8px;
  color: white;
}

.home-trust-overlay h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

/* ==========================================
   SECCIÓN CHECKLIST DOCUMENTOS
   ========================================== */

.home-checklist-section {
  background: white;
  padding: 80px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.home-checklist-section h2 {
  color: #003d82;
  margin-bottom: 60px;
}

.home-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
}

.checklist-card {
  background: white;
  border: 2px solid #E8EAF4;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 10px 28px rgba(0, 61, 130, 0.08);
  transition: all 300ms ease;
}

.checklist-card:hover {
  border-color: #FF6B35;
  box-shadow: 0 14px 40px rgba(0, 61, 130, 0.12);
  transform: translateY(-3px);
}

.checklist-card__icon {
  position: absolute;
  top: -24px;
  left: 32px;
  font-size: 3.5rem;
  background: white;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 61, 130, 0.12);
  color: #FF6B35;
}

.checklist-card h3 {
  font-size: 1.4rem;
  color: #003d82;
  margin: 24px 0 24px;
  font-weight: 700;
}

.checklist-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist-card__list li {
  font-size: 0.95rem;
  color: #555;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  line-height: 1.6;
}

.checklist-card__list li:last-child {
  border-bottom: none;
}

.checklist-card__list li:before {
  content: "✓ ";
  color: #FF6B35;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 968px) {
  .home-checklist-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-checklist-section {
    padding: 60px 20px;
  }

  .checklist-card {
    padding: 32px 24px;
  }

  .checklist-card h3 {
    font-size: 1.2rem;
  }

  .checklist-card__list li {
    font-size: 0.9rem;
  }
}

/* ==========================================
   SECCIÓN ALIADOS
   ========================================== */

@keyframes slideCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-allies-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #002d63 0%, #003d82 50%, #0d5fa3 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-allies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.home-allies-section h2 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.home-allies-section .home-section__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1760px);
  max-width: 1760px;
  padding: 0 clamp(20px, 3vw, 36px);
}

.home-allies-carousel {
  position: relative;
  width: 100%;
  z-index: 1;
}

.home-allies-layout {
  display: grid;
  gap: clamp(18px, 2vw, 32px);
}

.home-allies-row {
  overflow: hidden;
}

.home-allies-track {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 1.5vw, 28px);
  width: max-content;
  animation: allies-marquee 36s linear infinite;
}

.ally-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 9vw, 180px);
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
  border-radius: 16px;
  padding: 15px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: relative;
}

.ally-logo:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #FF7B4D 0%, #FF9570 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.ally-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

@keyframes allies-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-allies-row:nth-child(2) .home-allies-track {
  animation-direction: reverse;
  animation-duration: 40s;
}

/* ==========================================
   SECCIÓN CONTACTO
   ========================================== */

.home-contact-section {
  background: linear-gradient(135deg, #001f46 0%, #0d5fa3 80%);
  padding: 120px 0;
  color: white;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card__info {
  background: linear-gradient(180deg, #0c3d78 0%, #0f60a3 100%);
  color: #ffffff;
  padding: 46px 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.contact-card__info::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.contact-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.contact-card__info h2 {
  margin: 0;
  color: #fff;
  font-size: 1.9rem;
}

.contact-card__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 560px;
}

.contact-card__chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 16px;
}

.contact-chip {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.contact-chip__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.contact-chip__label {
  margin: 0 0 4px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-chip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.contact-chip a:hover {
  text-decoration: underline;
}

.contact-card__highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.highlight-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF6B35;
  box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.25);
}

.contact-card__highlight strong {
  color: #fff;
  font-size: 1rem;
}

.contact-card__form {
  background: #f9fafb;
  padding: 42px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #0f60a3;
  background: rgba(255, 255, 255, 0.9);
}

.contact-action--primary {
  background: #FF6B35;
  color: #fff;
  border-color: #ff7b4f;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35);
}

.contact-action--ghost:hover,
.contact-action--primary:hover {
  transform: translateY(-2px);
}

.home-contact-section .form-container {
  width: 100%;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.home-contact-section .form {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.home-contact-section .form__title {
  color: #003d82;
  margin-bottom: 8px;
}

.home-contact-section .form__description {
  color: #4a5568;
  margin-bottom: 18px;
}

.home-contact-section .form__fields {
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.home-contact-section .form__fields .form-field--textarea {
  grid-column: 1 / -1;
}

.home-contact-section .btn--secondary {
  background: #FF6B35 !important;
  color: #fff !important;
  border: none !important;
}

@media (max-width: 1100px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card__form {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .home-contact-section {
    padding: 70px 0;
  }

  .contact-card {
    border-radius: 20px;
  }

  .contact-card__info {
    padding: 32px 28px;
  }

  .home-contact-section .form__fields {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTENEDOR GENERAL
   ========================================== */

.home-section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  .home-hero--blue .home-hero__text h1 {
    font-size: 2rem;
  }

  .home-hero--blue .home-hero__subtitle {
    font-size: 1.2rem;
  }

  .home-credit-grid,
  .home-why-grid,
  .home-tools-grid,
  .home-checklist-grid,
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-credit-text h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .home-credit-intro {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .home-credit-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .home-credit-needs {
    font-size: 0.95rem;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .home-credit-list li {
    font-size: 0.85rem;
    padding-left: 20px;
    margin-bottom: 6px;
  }

  .home-credit-closing {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .btn--credit-cta {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 12px 32px !important;
  }

  .home-credit-text h2,
  .home-credit-section h2,
  .home-why-section h2,
  .home-tools-section h2,
  .home-allies-section h2,
  .home-contact-section h2 {
    font-size: 1.5rem;
  }

  .ally-logo {
    min-height: 100px;
    padding: 12px;
  }

  .ally-logo:hover {
    transform: scale(1.08);
  }
}

@media (max-width: 520px) {
  .home-allies-track {
    gap: 14px;
  }
}
