.contact-section {
  display: flex;
  gap: 40px;
  padding: 40px;
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-form-box {
  margin-top: 20px;
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.contact-form-box textarea {
  height: 100px;
}

.contact-form-box button {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.contact-right {
  flex: 1;
}

.contact-right h3 {
  margin-bottom: 20px;
}

.contact-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.icon {
  font-size: 20px;
}
/* ALINEAR CONTACTO CON HEADER */
.contact-section {
  width: 78% !important;
  max-width: 1400px !important;
  margin: 26px auto !important;
  padding: 0 !important;
}
/* CONTENEDOR GENERAL */
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

/* TARJETAS DERECHA */
.contact-info-box {
  display: flex;
  align-items: center;
  gap: 14px;

  background: white;
  padding: 16px 18px;
  border-radius: 12px;

  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  margin-bottom: 14px;
}

/* ICONOS */
.contact-info-box .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eef4ff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

/* TEXTO */
.contact-info-box h4 {
  margin: 0;
  font-size: 15px;
}

.contact-info-box p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

/* WHATSAPP DESTACADO */
.contact-info-box.whatsapp {
  justify-content: space-between;
}

.contact-info-box.whatsapp span {
  color: #22c55e;
  font-weight: 600;
}
.contact-card.contact-pro {
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e7eb;
}

.contact-card.contact-pro .icon {
  width: 48px;
  height: 48px;
  background: #eef5ff;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.contact-card.contact-pro p {
  color: #64748b;
  font-size: 13px;
  margin-top: 4px;
}

.contact-value {
  margin-left: auto;
  color: #0d6efd;
  font-weight: 800;
  font-size: 13px;
}
.contact-section {
  align-items: flex-start;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card.contact-pro {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;

  background: white;
  border-radius: 16px;
  padding: 16px 18px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.contact-card.contact-pro .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef5ff;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.contact-card.contact-pro strong {
  font-size: 16px;
}

.contact-card.contact-pro p {
  margin: 3px 0 0;
  font-size: 14px;
  color: #475569;
}

.contact-value {
  display: block;
  margin-left: 0;
  margin-top: 4px;
  color: #0d6efd;
  font-weight: 800;
  font-size: 14px;
}
.contact-card.contact-pro {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: white !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05) !important;
}

.contact-text {
  flex: 1 !important;
}

.contact-text p {
  margin: 3px 0 0 !important;
  font-size: 13px !important;
  color: #64748b !important;
}

.contact-card .icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #eef5ff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

.contact-value {
  color: #0d6efd !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  white-space: nowrap !important;
}

.contact-value.whatsapp {
  color: #22c55e !important;
}
/* Separar contacto del header/nav */
.contact-section {
  margin-top: 65px !important;
}
/* CONTACTO ESTILO PRO */
.contact-section {
  background: white !important;
  padding: 28px !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08) !important;
  gap: 40px !important;
}

.contact-left h2 {
  font-size: 30px !important;
  font-weight: 900 !important;
  color: #061224 !important;
}

.contact-left > p {
  max-width: 420px !important;
  color: #334155 !important;
  line-height: 1.6 !important;
  font-size: 15px !important;
}

.contact-form-box {
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06) !important;
}

.contact-form-box h3,
.contact-right h3 {
  color: #061224 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  position: relative;
  margin-bottom: 22px !important;
}

.contact-form-box h3::after,
.contact-right h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: #0d6efd;
  border-radius: 999px;
  margin-top: 10px;
}

.contact-form-box input,
.contact-form-box textarea {
  border: 1px solid #dbe3ef !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
}

.contact-form-box textarea {
  height: 125px !important;
}

.contact-form-box button {
  height: 48px !important;
  border-radius: 10px !important;
  background: #0d6efd !important;
  font-weight: 800 !important;
}

.contact-form-box small {
  color: #64748b !important;
  font-size: 12px !important;
}

.contact-card.contact-pro {
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 14px 16px !important;
}

.contact-card .icon {
  background: #eef5ff !important;
  color: #0d6efd !important;
}

.contact-text strong {
  font-size: 15px !important;
  font-weight: 900 !important;
  color: #061224 !important;
}

.contact-text p {
  color: #475569 !important;
  font-size: 12.5px !important;
}

.contact-value {
  font-size: 13px !important;
}
/* GRID GENERAL BIEN ALINEADO */
.contact-section {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* COLUMNA DERECHA */
.contact-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

/* TARJETAS */
.contact-card.contact-pro {
  display: grid !important;
  grid-template-columns: 50px 1fr auto !important;
  align-items: center !important;
  gap: 14px !important;
}

/* ICONO */
.contact-card .icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* TEXTO CENTRAL */
.contact-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* VALOR DERECHA */
.contact-value {
  text-align: right !important;
}

/* TITULOS BIEN ALINEADOS */
.contact-right h3 {
  margin-bottom: 10px !important;
}
.contact-form-box h3 {
  color: #0d6efd !important;
}
.send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;

  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-weight: 600;
  font-size: 14px;

  cursor: pointer;
  transition: 0.3s;
}

.send-btn svg {
  width: 18px;
  height: 18px;
}

.send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
/* SOLUCIÓN GLOBAL PARA TODAS LAS PÁGINAS */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* TODO el contenido principal crece */
main,
.products-section,
.contact-section {
  flex: 1;
}

/* footer se pega abajo */
.footer {
  margin-top: auto;
}
/* CONTACTO RESPONSIVE */
@media (max-width: 768px) {

  .contact-section {
    display: block !important;
    padding: 20px 14px !important;
  }

  .contact-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .contact-left,
  .contact-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-card,
  .contact-form {
    width: 100% !important;
    padding: 20px !important;
    border-radius: 18px !important;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
  }

  .contact-form button {
    width: 100% !important;
  }

}
/* CONTACTO MOBILE PRO */
@media (max-width: 768px) {
  .contact-section {
    width: 100% !important;
    padding: 22px 14px !important;
    margin: 0 !important;
  }

  .contact-container,
  .contact-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-card {
    padding: 24px 18px !important;
    border-radius: 22px !important;
  }

  .contact-card h2 {
    font-size: 30px !important;
    line-height: 1.1 !important;
  }

  .contact-form {
    width: 100% !important;
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-options {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-item {
    width: 100% !important;
    min-height: auto !important;
    padding: 18px !important;

    display: grid !important;
    grid-template-columns: 48px 1fr !important;
    gap: 14px !important;
    align-items: start !important;

    border-radius: 18px !important;
  }

  .contact-icon {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
  }

  .contact-item h3,
  .contact-item p,
  .contact-item a {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .contact-item h3 {
    font-size: 17px !important;
    margin-bottom: 4px !important;
  }

  .contact-item p {
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  .contact-item a {
    display: inline-block !important;
    margin-top: 8px !important;
    font-size: 14px !important;
  }
}
/* SEPARAR "OTRAS FORMAS DE CONTACTO" */
.contact-right h3 {
  margin-top: 30px !important;
}
/* CENTRAR TEXTO CONTACTO */
.contact-left {
  text-align: center !important;
}

.contact-left h2 {
  text-align: center !important;
}

.contact-left > p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}