/* Banner principal estilos */
.banner-bg {
  background: linear-gradient(135deg, #233a5e 0%, #3b82f6 100%);
  padding: 0;
}
.banner-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 480px;
}
.banner-content {
  flex: 1;
  min-width: 340px;
  padding: 56px 40px 56px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-title {
  font-size: 2.7em;
  color: #fff;
  margin-bottom: 0.6em;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.banner-title-highlight {
  color: #a5c7ff;
  font-weight: 800;
}
.banner-desc {
  font-size: 1.18em;
  color: #e3eafc;
  margin-bottom: 2.2em;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
}
.banner-desc-highlight {
  color: #a5c7ff;
  font-weight: 600;
}
.banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.banner-btn-cotizacion {
  background: #2a3a5e;
  color: #fff;
  font-size: 1.08em;
  padding: 0.7em 2em;
  border-radius: 10px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(42,58,94,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1.08em;
  padding: 0.7em 2em;
  border-radius: 10px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.banner-whatsapp-icon {
  font-size: 1.2em;
  margin-right: 4px;
}
.banner-whatsapp-text {
  display: flex;
  align-items: center;
}
.banner-image-container {
  flex: 1;
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.banner-image {
  max-width: 600px;
  width: 100%;
  object-fit: contain;
  padding: 16px;
}
.banner-conozcanos {
  text-align: center;
  margin-top: -24px;
}
.banner-conozcanos-btn {
  font-size: 1.08em;
  color: #fff;
  background: none;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 0.5em 2em;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.banner-conozcanos-btn:hover {
  background: #fff;
  color: #233a5e;
}

@media screen and (max-width: 1000px) {
  .banner-content {
    padding: 20px 4vw 10px 4vw;
  }
  .banner-title {
    line-height: 1.18;
  }
  .banner-desc {
    font-size: 1.15em;
  }
  .banner-image-container {
    display: none !important;
  }
  .banner-btn-cotizacion, .banner-btn-whatsapp {
    font-size: 1.08em;
    padding: 0.9em 0;
    width: 100%;
    min-width: 180px;
    max-width: 350px;
    margin: 0 auto;
    box-sizing: border-box;
    justify-content: center;
  }
  .banner-buttons {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .banner-conozcanos-btn {
    font-size: 1.08em;
    padding: 0.5em 1.2em;
  }
}
