/* styles.css (añadido bloque de logo + sinónimos ya presentes) */
:root {
  --blue: #0a3d62;
  --green: #1e5631;
  --sand: #f4e9d8;
  --white: #ffffff;
  --charcoal: #1b1b1b;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}
h1,
h2,
h3,
.brand {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}
.muted {
  color: #666;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem;
  background: #000;
  color: #fff;
}

/* LOGO */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
@media (min-width: 992px) {
  .brand-logo {
    height: 48px;
  }
}

.header-simple .brand {
  color: var(--charcoal);
}

.hero {
  position: relative;
  padding: 7rem 0;
  background: url("assets/fondo-hero.jpg") center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 61, 98, 0.65),
    rgba(10, 61, 98, 0.7)
  );
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 8px 0 38px;
}
.hero-sub {
  font-size: 1.15rem;
  opacity: 0.98;
  margin-bottom: 32px;
}
.hero-bullets {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
}
.hero-bullets li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
}
.badge-launch {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--sand);
  color: #3a2a1a;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero-note {
  opacity: 0.9;
  margin-top: 0.75rem;
  font-size: 12px;
}

.section-padding {
  padding: 4.75rem 0;
}
.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.bg-light {
  background: #fafafa;
}

.manifesto .manifesto-points div {
  margin: 0.4rem 0;
}
.manifesto .manifesto-points span {
  color: var(--green);
  font-weight: 700;
  margin-right: 0.4rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.95rem;
  background: #fff;
}
.pill-grid.small .pill {
  font-size: 0.9rem;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.benefit-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  box-shadow: var(--shadow);
  background: #fff;
}
.benefit-card .benefit-ico {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  box-shadow: var(--shadow);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.edition-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  box-shadow: var(--shadow);
}
.edition-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.5rem;
}
.edition-foot {
  font-size: 0.9rem;
}

.producer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.guarantees {
  background: linear-gradient(180deg, #fff, #f7f7f7);
}
.checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0.6rem 0;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.form-zone {
  scroll-margin-top: 80px;
}
.form-container {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-title {
  font-weight: 700;
}
.form-sub {
  color: #555;
}
.disclaimer {
  color: #666;
  font-size: 0.95rem;
}

/* BOTONES — máxima legibilidad */
.btn-primary-custom {
  background: var(--blue) !important;
  /* border-color:var(--blue) !important; */
  color: #fff !important;
  border-radius: 80px;
  padding: 12px 24px;
  border: 1px solid white;
}
.btn-primary-custom:hover {
  filter: brightness(0.95);
}
.btn-primary-custom:focus {
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}

.btn-outline-custom {
  background: #fff;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.btn-outline-custom:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-outline-custom:focus {
  outline: 2px solid var(--sand);
  outline-offset: 2px;
}

/* CTA fijo */
.btn-fixed-cta {
  position: fixed;
  z-index: 999;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--blue);
  color: #fff !important;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(10, 61, 98, 0.25);
  font-weight: 700;
  min-width: 205px;
  text-align: center;
}
.btn-fixed-cta:hover {
  filter: brightness(0.95);
}
@media (max-width: 576px) {
  .btn-fixed-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}


/* ===== POR QUÉ MAR DA TERRA (iconos de Bootstrap Icons) ===== */
.why-mdt {
  --card-bg: #ffffff;
  --card-br: var(--radius);
  --card-bd: 1px solid #eee;
}

.why-mdt .why-head {
  text-align: center;
  margin-bottom: 2.25rem;
}
.why-mdt .why-sub { margin-top: .25rem; }

.why-mdt .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .why-mdt .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .why-mdt .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-mdt .why-item {
  position: relative;
  background: var(--card-bg);
  border: var(--card-bd);
  border-radius: var(--card-br);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-mdt .why-item:hover,
.why-mdt .why-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10, 61, 98, .12);
  border-color: rgba(10, 61, 98, .25);
}

.why-mdt .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  color: var(--blue);
  background:
    radial-gradient(120px 60px at 30% 20%, rgba(10,61,98,.08), transparent 60%),
    linear-gradient(180deg, #fff, #f9fbfd);
  border: 1px solid rgba(10,61,98,.12);
}
.why-mdt .why-icon .bi {
  font-size: 28px;
  line-height: 1;
}

.why-mdt h3 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 14px;
}
.why-mdt p {
  margin: 0 0 .75rem;
  color: #444;
}

.why-mdt .why-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--sand);
  color: #3a2a1a;
  border: 1px solid rgba(58, 42, 26, .1);
}

/* toque de fondo sutil para integrarlo con la landing */
.why-mdt {
  background:
    radial-gradient(600px 200px at 10% -10%, rgba(30,86,49,.05), transparent 60%),
    radial-gradient(600px 200px at 90% 110%, rgba(10,61,98,.06), transparent 60%),
    #fff;
}


/* ===== CÓMO SELECCIONAMOS (editorial, sin logística) ===== */
.how-select {
  --card-bg: #fff;
  --card-bd: 1px solid #eee;
  --card-br: var(--radius);
}

.how-select .how-head { margin-bottom: 2.25rem; }
.how-select .how-sub { margin-top: .25rem; }

.how-select .how-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .how-select .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .how-select .how-grid { grid-template-columns: repeat(5, 1fr); }
}

.how-select .step-item {
  position: relative;
  background: var(--card-bg);
  border: var(--card-bd);
  border-radius: var(--card-br);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.how-select .step-item:hover,
.how-select .step-item:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(10,61,98,.12);
  border-color: rgba(10,61,98,.25);
}

.how-select .step-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(10,61,98,.18);
}

.how-select .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  color: var(--blue);
  background:
    radial-gradient(120px 60px at 30% 20%, rgba(10,61,98,.08), transparent 60%),
    linear-gradient(180deg, #fff, #f9fbfd);
  border: 1px solid rgba(10,61,98,.12);
}
.how-select .step-icon .bi { font-size: 28px; line-height: 1; }

.how-select h3 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 14px;
}
.how-select p {
  margin: 0 0 .75rem;
  color: #444;
}

.how-select .step-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--sand);
  color: #3a2a1a;
  border: 1px solid rgba(58,42,26,.1);
}

/* Pie con chips de estado/ejemplo de edición */
.how-select .how-foot {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.25rem;
}
.how-select .foot-chip {
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #333;
}

/* Fondo sutil para encajar con tu landing */
.how-select {
  background:
    radial-gradient(600px 200px at 5% -10%, rgba(30,86,49,.05), transparent 60%),
    radial-gradient(600px 200px at 95% 110%, rgba(10,61,98,.06), transparent 60%),
    #fff;
}


/* ===== FORM — estilo alineado con las nuevas secciones ===== */

/* Contenedor como tarjeta */
.form-container {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem;
  background:
    radial-gradient(1200px 240px at 10% -10%, rgba(30,86,49,.05), transparent 60%),
    radial-gradient(1200px 240px at 90% 110%, rgba(10,61,98,.06), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
}

/* Títulos y subtítulo */
.form-title {
  font-weight: 700;
  margin-bottom: .25rem;
}
.form-sub {
  color: #555;
  margin-bottom: 1.25rem;
}

/* Inputs y selects */
.form-control,
.form-select {
  border: 1px solid #e7e7e7;
  border-radius: 14px; /* un poco menos que var(--radius) para inputs */
  padding: .75rem .9rem;
  background-color: #fff;
  box-shadow: 0 0 0 0 rgba(10,61,98,0);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-control:hover,
.form-select:hover {
  border-color: rgba(10,61,98,.25);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10,61,98,.08);
}

/* Labels */
.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: .4rem;
}

/* Estados de validación nativos */
.was-validated .form-control:invalid,
.form-control.is-invalid,
.was-validated .form-select:invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220,53,69,.08);
}
.was-validated .form-control:valid,
.form-control.is-valid,
.was-validated .form-select:valid,
.form-select.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40,167,69,.08);
}
.invalid-feedback { font-size: .9rem; }

/* Checkboxes (intereses) */
.form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  margin-top: .25rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  cursor: pointer;
  accent-color: var(--blue); /* fallback moderno */
}
.form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(10,61,98,.10);
  border-color: var(--blue);
}
.form-check-input:checked {
  border-color: var(--blue);
}
.form-check-label {
  cursor: pointer;
  font-weight: 500;
}

/* Grupo de intereses en grid cómodo */
#form-lead .row .form-check {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: .6rem .7rem;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
#form-lead .row .form-check:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10,61,98,.06);
  border-color: rgba(10,61,98,.2);
}

/* Textarea */
#notes.form-control {
  min-height: 120px;
  resize: vertical;
  border-radius: 14px;
}

/* Botón: ya tienes .btn-primary-custom, sólo ajuste de tamaño y sombra al hover */
.btn-primary-custom {
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 80px;
  padding: 14px 24px;
  border: 1px solid #ffffff;
  box-shadow: 0 12px 24px rgba(10,61,98,.20);
}
.btn-primary-custom:hover {
  filter: brightness(0.96);
  box-shadow: 0 16px 36px rgba(10,61,98,.22);
}

/* Mensaje de éxito en clave “chip” */
#success-message.alert-success {
  border: 1px solid rgba(40,167,69,.15);
  color: #155724;
  background:
    linear-gradient(180deg, #fff, #f6fff7);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(40,167,69,.08);
}

/* Disclaimer */
.disclaimer {
  color: #666;
  font-size: .95rem;
  margin-top: .75rem;
}

/* Zona de formulario: margen para anclar desde el CTA fijo */
.form-zone { scroll-margin-top: 96px; }

/* Ajustes responsivos finos */
@media (max-width: 576px) {
  .form-container { padding: 1.25rem; }
}


/* ===== Footer mini ===== */
.footer-mini {
  padding: 1rem 0;
  border-top: 1px solid #eee;
  background: #fff;
  font-size: .9rem;
  padding-bottom: 90px;
}
.footer-mini .footer-link {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.footer-mini .footer-link:hover {
  color: var(--blue);
}
.footer-mini .footer-sep {
  margin: 0 .5rem;
  color: #aaa;
}
