/* =====================================================================
   3 GARRAFAS NEVERÍA — cotizar.css
   Estilos exclusivos de "Venta al mayoreo"
   ===================================================================== */

/* ═════ FUENTES ═════ */
@font-face {
  font-family: 'MidcentDisco';
  src: url('../fonts/MidcentDisco-Regular.woff2') format('woff2'),
       url('../fonts/MidcentDisco-Regular.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('../fonts/Grift-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('../fonts/Grift-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('../fonts/Grift-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.page-cotizar { padding-top: 0; }

.cot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 22px 15px 26px;
  border: none;
  border-radius: 100px;
  font-family: 'Grift', 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .3s ease, background-color .2s ease;
  white-space: nowrap;
}
.cot-btn--primary { background: #6b4023; color: #fcf1d8; }
.cot-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(107,64,35,0.55); }
.cot-btn--ghost {
  background: transparent;
  color: #6b4023;
  border: 2px solid #6b4023;
}
.cot-btn--ghost:hover { background: #6b4023; color: #fcf1d8; transform: translateY(-2px); }
.cot-btn--submit { padding: 17px 28px 17px 32px; font-size: 15px; align-self: flex-start; margin-top: 8px; }
.cot-btn--wa {
  background: #25d366;
  color: #fff;
  padding: 17px 30px 17px 34px;
  font-size: 15px;
}
.cot-btn--wa:hover { transform: translateY(-2px); background: #22c05c; box-shadow: 0 14px 28px -10px rgba(37,211,102,0.5); }
.cot-btn-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #ffd400;
  color: #6b4023;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cot-btn:hover .cot-btn-arrow { transform: translateX(2px) rotate(-12deg); }
.cot-btn--submit .cot-btn-arrow { background: #ffd400; }

/* ═════ HERO ═════ */
/* ═════ HERO ═════ */
.cot-hero {
  position: relative;
  padding: 160px 0 120px;
  background: #ffd400;
  overflow: hidden;
}
.cot-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.cot-hero-text {
  padding-left: 40px;
  position: relative;
  z-index: 3;
}
.cot-hero-title {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.05;
  color: #6b4023;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  max-width: 14ch;
}
.cot-hero-sub {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6b4023;
  opacity: 0.85;
  margin: 0 0 32px;
  max-width: 40ch;
}
.cot-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #fcf1d8;
  background: #6b4023;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cot-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107, 64, 35, 0.3);
}

.cot-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  margin-right: -160px;
}
.cot-hero-disco {
  position: absolute;
  width: clamp(340px, 34vw, 500px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #5448dd;
  z-index: 1;
}
.cot-hero-visual img {
  width: auto;
  max-height: 900px;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: cotHeroFloat 6s ease-in-out infinite;
}
@keyframes cotHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Círculos decorativos flotantes */
.cot-hero-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.cot-hero-circle--purple-right {
  width: clamp(110px, 12vw, 180px);
  aspect-ratio: 1/1;
  background: #5448dd;
  top: 8%;
  right: 6%;
}
.cot-hero-circle--purple-left {
  width: clamp(70px, 8vw, 110px);
  aspect-ratio: 1/1;
  background: #5448dd;
  top: 62%;
  left: 42%;
}
.cot-hero-circle--purple-mid {
  width: clamp(60px, 7vw, 90px);
  aspect-ratio: 1/1;
  background: #5448dd;
  top: 38%;
  left: 44%;
}
.cot-hero-circle--coral-top {
  width: clamp(80px, 9vw, 130px);
  aspect-ratio: 1/1;
  background: #e95068;
  top: 12%;
  left: 50%;
}
.cot-hero-circle--coral-mid {
  width: clamp(60px, 7vw, 90px);
  aspect-ratio: 1/1;
  background: #e95068;
  top: 44%;
  left: 34%;
}
.cot-hero-circle--cream-right {
  width: clamp(70px, 8vw, 110px);
  aspect-ratio: 1/1;
  background: #fcf1d8;
  bottom: 12%;
  right: 4%;
}

@media (max-width: 900px) {
  .cot-hero { padding: 120px 0 90px; }
  .cot-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 24px;
  }
  .cot-hero-text { padding-left: 0; }
  .cot-hero-title { font-size: clamp(38px, 10vw, 52px); max-width: none; }
  .cot-hero-visual { min-height: 360px; }
  .cot-hero-visual img { max-height: 500px; }
  .cot-hero-circle--purple-right { top: 4%; right: 4%; }
  .cot-hero-circle--cream-right { bottom: 6%; right: -20px; }
}


/* ═════ SECTION HEADERS ═════ */
.cot-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.cot-eyebrow {
  display: inline-block;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e95068;
  margin: 0 0 14px;
}
.cot-eyebrow--onyellow { color: #6b4023; }
.cot-eyebrow--oncream { color: #e95068; }
.cot-section-title {
  font-family: 'MidcentDisco', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1;
  letter-spacing: -1px;
  color: #6b4023;
  margin: 0 0 18px;
}
.cot-section-title--sm { font-size: clamp(32px, 4vw, 44px); }
.cot-section-sub {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #6b4023;
  opacity: 0.75;
  margin: 0;
}

/* ═════ IDEAL PARA ═════ */
/* ═════ CÓMO FUNCIONA (rediseñado con tarjetas de color) ═════ */
.cot-como {
  background: #fcf1d8;
  padding: 320px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Goteo amarillo del hero cayendo sobre .cot-como cream */
.cot-hero-goteo {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 32vh;
  display: block;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 900px) {
  .cot-hero-goteo { height: 18vh; }
  .cot-como { padding: 240px 0 60px; }
}
.cot-como-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.cot-como-step {
  position: relative;
  padding: 36px 32px 40px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cot-como-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(107, 64, 35, 0.15);
}
.cot-como-step--yellow { background: #ffd400; }
.cot-como-step--purple { background: #5448dd; }
.cot-como-step--coral  { background: #e95068; }

.cot-como-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 96px;
  height: 96px;
  z-index: 1;
}
.cot-como-icon img { width: 100%; height: 100%; display: block; }

.cot-como-num {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
}
.cot-como-step--yellow .cot-como-num { color: #e95068; }
.cot-como-step--purple .cot-como-num { color: #ffd400; }
.cot-como-step--coral  .cot-como-num { color: #5448dd; }

.cot-como-step h3 {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  max-width: 12ch;
  position: relative;
  z-index: 2;
}
.cot-como-step--yellow h3 { color: #6b4023; }
.cot-como-step--purple h3 { color: #fcf1d8; }
.cot-como-step--coral  h3 { color: #fcf1d8; }

.cot-como-step p {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 2;
}
.cot-como-step--yellow p { color: #6b4023; }
.cot-como-step--purple p { color: #fcf1d8; opacity: 0.9; }
.cot-como-step--coral  p { color: #fcf1d8; opacity: 0.95; }

@media (max-width: 900px) {
  .cot-como-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 24px;
  }
  .cot-como-icon { width: 76px; height: 76px; top: 20px; right: 20px; }
  .cot-como-num { font-size: 58px; }
  .cot-como-step h3 { font-size: 24px; }
}

/* ═════ FORMULARIO B2B ═════ */
.cot-form-section {
  background: var(--cream, #fcf1d8);
  padding: 100px 0 120px;
  position: relative;
}
.cot-form-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.cot-form-header {
  text-align: center;
  margin-bottom: 56px;
}
.cot-form-header .cot-eyebrow {
  display: inline-block;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e95068;
  margin: 0 0 14px;
}
.cot-form-heading {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: #6b4023;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.cot-form-lead {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #6b4023;
  opacity: 0.75;
  margin: 0 auto;
  max-width: 60ch;
}

.cot-form-notice {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #6b4023;
  background: rgba(233, 80, 104, 0.08);
  border-left: 3px solid #e95068;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 20px auto 0;
  max-width: 60ch;
  text-align: left;
}

/* ═════ SELECTOR DE 2 TARJETAS ═════ */
.cot-selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.cot-selector-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  padding: 32px 28px;
  background: transparent;
  border: 2px solid #f5e6c0;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: 'Grift', 'Manrope', sans-serif;
  position: relative;
  color: #6b4023;
}
.cot-selector-card:hover {
  border-color: #e95068;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(233, 80, 104, 0.12);
  background: rgba(255, 255, 255, 0.4);
}
.cot-selector-card:focus-visible {
  outline: none;
  border-color: #e95068;
  box-shadow: 0 0 0 4px rgba(233, 80, 104, 0.18);
}
.cot-selector-title {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  color: #6b4023;
  letter-spacing: -0.4px;
}
.cot-selector-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #6b4023;
  opacity: 0.72;
}
.cot-selector-arrow {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffd400;
  color: #6b4023;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
}
.cot-selector-card:hover .cot-selector-arrow {
  transform: translateX(4px) rotate(-8deg);
}

/* ═════ BACKLINK "Volver a elegir tipo" ═════ */
.cot-form-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0 0 24px;
  cursor: pointer;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 14px;
  color: #6b4023;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.cot-form-backlink:hover {
  opacity: 1;
  color: #e95068;
}

/* ═════ Wrapper animado del form activo ═════ */
.cot-form-wrapper {
  animation: cotFormFadeIn 0.35s ease;
}

/* ═════ TARJETAS DE PRODUCTO (sección 4 form eventos) ═════ */
.cot-producto-card {
  border: 1.5px solid #f5e6c0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cot-producto-card:has(input[type="checkbox"]:checked),
.cot-producto-card.is-active {
  border-color: #e95068;
  background: rgba(255, 255, 255, 0.7);
}

.cot-producto-check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-family: 'Grift', 'Manrope', sans-serif;
}
.cot-producto-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #e95068;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}
.cot-producto-title {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: 22px;
  color: #6b4023;
  letter-spacing: -0.3px;
  flex: 1;
}
.cot-producto-unit {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 13px;
  color: #6b4023;
  opacity: 0.55;
  white-space: nowrap;
}

.cot-producto-panel {
  padding: 4px 22px 22px 58px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px dashed #f5e6c0;
  animation: cotCondSlide 0.3s ease;
}

/* Garrafas Cake — Próximamente */
.cot-producto-card--coming {
  background: rgba(84, 72, 221, 0.05);
  border-color: rgba(84, 72, 221, 0.3);
  border-style: dashed;
}
.cot-producto-coming {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cot-producto-coming-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cot-producto-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #5448dd;
  color: #fcf1d8;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
}
.cot-producto-desc {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #6b4023;
  opacity: 0.75;
  margin: 0;
}
.cot-check--interes {
  font-size: 14px;
  color: #6b4023;
  padding: 4px 0;
}

/* Aviso amarillo no bloqueante (validación de mínimos) */
.cot-form-warning {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 8px;
  background: rgba(255, 212, 0, 0.15);
  color: #6b4023;
  border-left: 4px solid #ffd400;
}
.cot-form-warning strong { font-weight: 700; }
.cot-form-warning ul { margin: 6px 0 0; padding-left: 20px; }
.cot-form-warning li { margin: 2px 0; }

/* Espaciado entre tarjetas dentro del fieldset */
.cot-section .cot-producto-card + .cot-producto-card {
  margin-top: 0;
}

@media (max-width: 780px) {
  .cot-producto-check { padding: 14px 16px; gap: 10px; }
  .cot-producto-title { font-size: 18px; }
  .cot-producto-unit { font-size: 12px; }
  .cot-producto-panel { padding: 4px 16px 18px 44px; }
  .cot-producto-coming { padding: 16px; }
}

@media (max-width: 780px) {
  .cot-selector-grid { grid-template-columns: 1fr; gap: 14px; }
  .cot-selector-card { padding: 24px 22px; }
  .cot-selector-title { font-size: 22px; }
  .cot-form-notice { font-size: 12px; }
}

/* Container animation */
.cot-form-container {
  animation: cotFormFadeIn 0.35s ease;
}
@keyframes cotFormFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form base */
.cot-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: 'Grift', 'Manrope', sans-serif;
}
.cot-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Sección fieldset con borde */
.cot-section {
  border: 1.5px solid #f5e6c0;
  border-radius: 16px;
  padding: 28px 32px 32px;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cot-section-legend {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: 22px;
  color: #6b4023;
  padding: 0 12px;
  letter-spacing: -0.3px;
}
.cot-legend-optional {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b4023;
  opacity: 0.5;
  margin-left: 4px;
}

/* Sección condicional (acordeón) */
.cot-section-cond {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 20px 4px;
  margin-top: 4px;
  border-left: 3px solid #e95068;
  background: rgba(233, 80, 104, 0.05);
  border-radius: 8px;
  animation: cotCondSlide 0.3s ease;
}
@keyframes cotCondSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Field */
.cot-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.cot-field > label {
  font-size: 14px;
  font-weight: 500;
  color: #6b4023;
  opacity: 0.9;
}

.cot-field input[type="text"],
.cot-field input[type="email"],
.cot-field input[type="tel"],
.cot-field input[type="url"],
.cot-field input[type="date"],
.cot-field select,
.cot-field textarea {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 16px;
  color: #6b4023;
  background: #ffffff;
  border: 1.5px solid #f5e6c0;
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.cot-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
  font-family: 'Grift', 'Manrope', sans-serif;
}
.cot-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b4023' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.cot-field input:focus,
.cot-field select:focus,
.cot-field textarea:focus {
  outline: none;
  border-color: #e95068;
  box-shadow: 0 0 0 3px rgba(233, 80, 104, 0.12);
}
.cot-field input::placeholder,
.cot-field textarea::placeholder {
  color: #6b4023;
  opacity: 0.4;
}

/* Row de 2 columnas */
.cot-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Counter y hint */
.cot-field-counter {
  font-size: 12px;
  color: #6b4023;
  opacity: 0.5;
  align-self: flex-end;
  margin-top: -2px;
}
.cot-field-counter.is-near-limit { color: #e95068; opacity: 0.9; }
.cot-field-counter.is-over-limit { color: #d62828; opacity: 1; font-weight: 500; }
.cot-field-hint {
  font-size: 12px;
  color: #6b4023;
  opacity: 0.55;
  line-height: 1.4;
}

/* Radios */
.cot-field-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.cot-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #6b4023;
  cursor: pointer;
  user-select: none;
  padding: 6px 0;
}
.cot-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #e95068;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

/* Checkboxes */
.cot-field-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 4px;
}
.cot-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #6b4023;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
}
.cot-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #e95068;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

/* Privacy checkbox */
.cot-field-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.cot-field-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #e95068;
  cursor: pointer;
  flex-shrink: 0;
}
.cot-field-check label {
  font-size: 14px;
  line-height: 1.5;
  color: #6b4023;
  opacity: 0.85;
  cursor: pointer;
}
.cot-field-check a {
  color: #e95068;
  text-decoration: underline;
}

/* Estados error */
.cot-field.has-error input,
.cot-field.has-error select,
.cot-field.has-error textarea {
  border-color: #d62828;
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.10);
}
.cot-field-error {
  font-size: 13px;
  color: #d62828;
  margin-top: 2px;
}

/* Submit */
.cot-form-submit {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fcf1d8;
  background: #e95068;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  cursor: pointer;
  margin-top: 16px;
  align-self: flex-start;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-width: 260px;
}
.cot-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 80, 104, 0.25);
}
.cot-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mensaje de error global */
.cot-form-msg {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 8px;
  line-height: 1.5;
}
.cot-form-msg--err {
  background: rgba(214, 40, 40, 0.08);
  color: #d62828;
  border: 1px solid rgba(214, 40, 40, 0.2);
}

/* Vista de éxito */
.cot-form-success {
  text-align: center;
  padding: 60px 20px;
  animation: cotFormFadeIn 0.4s ease;
}
.cot-form-success-title {
  font-family: 'MidcentDisco', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  color: #6b4023;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.cot-form-success-msg {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #6b4023;
  opacity: 0.8;
  margin: 0 auto 36px;
  max-width: 52ch;
}
.cot-form-back {
  display: inline-block;
  padding: 14px 28px;
  background: #e95068;
  color: #fcf1d8;
  border: none;
  border-radius: 999px;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cot-form-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 80, 104, 0.25);
}

/* Responsive */
@media (max-width: 780px) {
  .cot-form-section { padding: 70px 0 90px; }
  .cot-form-inner { padding: 0 20px; }
  .cot-form { gap: 24px; }
  .cot-section { padding: 20px 20px 24px; }
  .cot-section-legend { font-size: 19px; }
  .cot-field-row { grid-template-columns: 1fr; gap: 20px; }
  .cot-field-checks { grid-template-columns: 1fr; }
  .cot-form-submit { width: 100%; min-width: auto; }
  .cot-form-heading { font-size: clamp(30px, 8vw, 44px); }
  .cot-form-lead { font-size: 16px; }
}

/* Media queries del hero + como funciona (preservadas) */
@media (max-width: 560px) {
  .page-cotizar { padding-top: 0; }
}

