/* ===================================
   RESET SOLO PARA COTIZAR
   =================================== */
#cotizar-lock {
  isolation: isolate;
}
.layout-cotizacion,
.layout-cotizacion * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===================================
   CONTENEDOR GENERAL
   =================================== */

.layout-cotizacion {
  min-height: 100vh;
  width: 100%;
  background: #f4f6f8;

  display: grid;
  grid-template-columns: 320px minmax(320px, 520px) 320px;
  align-items: center;
  justify-content: center;
  gap: 40px;

  padding: 40px;
  isolation: isolate;
}

/* ===================================
   LADOS (GUARDIAS)
   =================================== */

.lado {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lado img {
  max-height: 670px;
  width: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

/* ===================================
   TARJETA DEL FORMULARIO
   =================================== */

.cotizacion-contenido {
  background: #ffffff;              /* 👈 tarjeta blanca */
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  width: 100%;
}

/* LOGO */
.logo-iztli {
  max-width: 160px;
  margin-bottom: 16px;
}

/* TITULO */
.cotizacion-contenido h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* ===================================
   FORMULARIO
   =================================== */

.form-cotizar {
  display: flex;
  flex-direction: column;
  gap: 0px; /* 👈 espacio limpio entre campos */
}

/* INPUTS */
.form-cotizar input,
.form-cotizar select,
.form-cotizar textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #999;
  border-radius: 4px;
  background: #fff;
  outline: none;
}
/* separación mínima entre campos (sin franja blanca) */
.form-cotizar input:not(:last-child),
.form-cotizar select:not(:last-child),
.form-cotizar textarea:not(:last-child) {
  margin-bottom: 1px;
}

/* TEXTAREA */
.form-cotizar textarea {
  resize: none;
  min-height: 110px;
}

/* ===================================
   BOTÓN
   =================================== */

.form-cotizar button {
  margin-top: 12px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  background: #0b4f6c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-cotizar button:hover {
  background: #093b52;
}
