.footer-left {
  background: var(--blue);
  color: var(--white);
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 2.25rem 4rem 2.25rem 5rem;
}

.footer-left-container {
  display: flex;
  justify-content: flex-start;
}

.footer-brand-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5.56rem;
  border-left: 1px solid var(--white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  padding-left: 1.25rem;
  min-height: auto;
  border-left: 1px solid var(--white);
  overflow-x: visible;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 251px;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
}

.footer-tagline {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  line-height: 120%;
}

.footer-cta-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 100%;
  overflow-x: visible;
  margin-top: 8rem; /* Alinear con checkbox y botón del formulario */
}

.footer-cta-icon {
  width: 16px;
  height: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-phone-label {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0;
}

.footer-phone-number {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
  color: var(--white);
  margin: 0;
}



@media (max-width: 768px) {
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    width: 100%;
    
  }
  }
  
  .footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    padding: 3.25rem 1.25rem;
  }
  
  .footer-brand {
    border-left: none;
    padding-left: 0;
    min-height: auto;
    align-items: flex-start;
    gap: 4rem;
  }
  
  .footer-logo {
    gap: 1rem;
  }
  
  .footer-logo-img {
    max-width: 138px;
  }
  
  .footer-tagline {
    vertical-align: bottom;
  }
  
  .footer-cta-icon {
    width: 8px;
    height: 8px;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-phone-number {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    text-decoration-thickness: 5%;
    text-decoration-color: var(--white);
    text-decoration-style: solid;
    color: var(--white);
  }
  
  .footer-cta-link {
    margin-top: 0; /* Reset margin en móvil */
  }
}

@media (max-width: 1024px) {
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1.25rem;
    width: 100%;
  }
  
  .footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    padding: 3.25rem 1.25rem;
  }
  
  .footer-brand {
    border-left: none;
    padding-left: 0;
    min-height: auto;
    align-items: flex-start;
    gap: 4rem;
  }
  
  .footer-logo {
    gap: 1rem;
  }
  
  .footer-logo-img {
    min-width: 12.5rem;
    min-height: 2.89rem;
    margin-top: 2rem;
  }
  
  .footer-tagline {
    vertical-align: bottom;
  }
  
  .footer-cta-icon {
    width: 8px;
    height: 8px;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-phone-number {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    text-decoration-thickness: 5%;
    text-decoration-color: var(--white);
    text-decoration-style: solid;
    color: var(--white);
  }
  
  .footer-cta-link {
    margin-top: 0; /* Reset margin en tablet */
  }
}