/* =========================
   FORSÉNTICO — LANDING AUTOMOTOR
   ========================= */

.page-auto {
  background: #f3f5f9;
}

.auto-container {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.auto-hero {
  padding: 5.4rem 0 5rem;
  background:
    radial-gradient(circle at 16% 20%, rgba(39, 93, 225, 0.09), transparent 32%),
    linear-gradient(180deg, #f7f9fd 0%, #edf2f8 100%);
}

.auto-hero-grid,
.auto-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.auto-feature-grid-reverse {
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
}

.auto-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.7rem 1rem 0.65rem;
  border: 1px solid rgba(39, 93, 225, 0.18);
  border-radius: 0 14px 14px 14px;
  background: rgba(39, 93, 225, 0.05);
  color: #275de1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auto-label-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.auto-hero h1,
.page-auto h2 {
  color: #061956;
  letter-spacing: -0.05em;
}

.auto-hero h1 {
  max-width: 11ch;
  margin: 1rem 0 1rem;
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  line-height: 0.95;
}

.auto-hero p,
.auto-copy p,
.auto-feature-content p {
  color: #465784;
  font-size: 1.05rem;
  line-height: 1.75;
}

.auto-hero p {
  max-width: 52ch;
  margin: 0 0 1.4rem;
}

.auto-hero-image,
.auto-feature-image {
  overflow: hidden;
  border-radius: 0 26px 26px 26px;
  border: 1px solid rgba(6, 25, 86, 0.08);
  background: #dfe7f5;
  box-shadow: 0 22px 48px rgba(6, 25, 86, 0.12);
}

.auto-hero-image {
  height: 500px;
}

.auto-feature-image {
  height: 420px;
}

.auto-hero-image img,
.auto-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-section {
  padding: 4.8rem 0;
}

.auto-section-light {
  background: #ffffff;
}

.auto-context {
  background: #ffffff;
}

.auto-two-columns {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: center;
}

.page-auto h2 {
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(2.1rem, 3.3vw, 3.5rem);
  line-height: 1;
}

.auto-copy {
  max-width: 820px;
  padding-top: 0rem;
}

.auto-feature-content p {
  margin: 1rem 0 1.2rem;
  max-width: 58ch;
}

.auto-feature-content ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.auto-feature-content li {
  position: relative;
  padding-left: 1.35rem;
  color: #061956;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 700;
}

.auto-feature-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #275de1;
}

.auto-audience {
  background: #f3f5f9;
}

.auto-audience h2 {
  max-width: 16ch;
}

.auto-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.auto-card-grid article {
  min-height: 150px;
  padding: 1.3rem;
  border-radius: 0 20px 20px 20px;
  background: #ffffff;
  border: 1px solid rgba(6, 25, 86, 0.08);
  box-shadow: 0 14px 32px rgba(6, 25, 86, 0.06);
  color: #061956;
  font-weight: 800;
  line-height: 1.3;
}

.auto-cta {
  padding: 5rem 0;
  background:
    linear-gradient(rgba(6, 25, 86, 0.92), rgba(6, 25, 86, 0.92)),
    url("../images/patterns/brand-texture.png");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.auto-cta-content {
  max-width: 820px;
}

.auto-cta h2 {
  max-width: 15ch;
  margin: 1rem auto;
  color: #ffffff;
}

.auto-cta p {
  max-width: 58ch;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.03rem;
  line-height: 1.7;
}

.auto-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.auto-cta .btn-primary {
  background: #ffffff;
  color: #061956;
  border-color: #ffffff;
}

.auto-cta .btn-secondary--light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1100px) {
  .auto-hero-grid,
  .auto-feature-grid,
  .auto-feature-grid-reverse,
  .auto-two-columns {
    grid-template-columns: 1fr;
  }

  .auto-hero-image,
  .auto-feature-image {
    height: 380px;
  }

  .auto-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auto-copy {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .auto-hero {
    padding: 4rem 0 3rem;
  }

  .auto-section {
    padding: 3.2rem 0;
  }

  .auto-hero h1,
  .page-auto h2 {
    max-width: 100%;
  }

  .auto-hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.2rem);
  }

  .auto-hero-image,
  .auto-feature-image {
    height: 300px;
  }

  .auto-card-grid {
    grid-template-columns: 1fr;
  }

  .auto-cta {
    padding: 4rem 0;
  }

  .auto-cta-actions .btn-primary,
  .auto-cta-actions .btn-secondary--light {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   AUTOMOTOR — AJUSTES VISUALES V1
   ========================= */

.page-auto .auto-section {
  padding: 3.6rem 0;
}

.page-auto .auto-hero {
  padding: 4.6rem 0 4.2rem;
}

.page-auto .auto-hero h1 {
  max-width: 13ch;
}

.page-auto h2 {
  max-width: 15ch;
}

.page-auto .auto-context h2 {
  max-width: 11ch;
}

.page-auto .auto-copy {
  padding-top: 1.2rem;
}

.page-auto .auto-feature-image {
  height: 380px;
}

.page-auto .auto-feature-content p {
  margin: 0.85rem 0 1rem;
}

.page-auto .auto-feature-content ul {
  gap: 0.65rem;
}

.page-auto .auto-card-grid article {
  min-height: 110px;
  padding: 1.15rem;
}

.page-auto .auto-audience h2 {
  max-width: 18ch;
}

.page-auto .auto-cta {
  padding: 4rem 0;
}

.page-auto .auto-cta h2 {
  max-width: 17ch;
}
.page-auto .auto-context {
  background: #ffffff;
}
/* TEXTO — AHORA SÍ RESPIRA */
.page-auto .auto-context p {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 100%;
}

/* AJUSTE DEL TÍTULO */
.page-auto .auto-context h2 {
  max-width: 9ch;
}
.page-auto .auto-context h2 {
  max-width: 10ch;
}
.page-auto .auto-context {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.page-auto .auto-context p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}
.page-auto .auto-feature:nth-child(even) {
  background-color: #f7f9fc;
  border-radius: 18px;
  padding: 2rem;
}
.page-auto .auto-card-grid article {
  min-height: auto;
  padding: 1.4rem;
  border: 1px solid #e6e9ef;
  transition: all 0.25s ease;
}

.page-auto .auto-card-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.page-auto .auto-card-grid h3 {
  font-size: 0.95rem;
  line-height: 1.4;
}
.page-auto .auto-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
/* CONTEXTO — EXPANDIR ANCHO REAL */
.page-auto .auto-context .container {
  max-width: 1200px; /* o 1300px si quieres más aire */
}
/* =========================
   AUTOMOTOR — CONTEXTO REDISEÑADO
   ========================= */

.page-auto .auto-context-block {
  padding: 6rem 0;
  background: #ffffff;
}

.page-auto .auto-context-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 4rem;
  align-items: center;
}

.page-auto .auto-context-content h2 {
  max-width: 11ch;
  margin: 1rem 0 1rem;
  color: #061956;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-auto .auto-context-content p {
  max-width: 56ch;
  margin: 0 0 1.3rem;
  color: #465784;
  font-size: 1.05rem;
  line-height: 1.72;
}

.page-auto .auto-context-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.page-auto .auto-context-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #061956;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.page-auto .auto-context-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #275de1;
  font-weight: 900;
}

.page-auto .auto-context-image {
  height: 460px;
  overflow: hidden;
  border-radius: 0 32px 32px 32px;
  border: 1px solid rgba(6, 25, 86, 0.08);
  background: #dfe7f5;
  box-shadow: 0 24px 52px rgba(6, 25, 86, 0.12);
}

.page-auto .auto-context-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .page-auto .auto-context-block {
    padding: 3.5rem 0;
  }

  .page-auto .auto-context-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-auto .auto-context-content h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-auto .auto-context-image {
    height: 320px;
    border-radius: 0 24px 24px 24px;
  }
}
/* =========================
   AUTOMOTOR — DIRIGIDO A REDISEÑADO
   ========================= */

.page-auto .auto-audience-block {
  padding: 5rem 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(39, 93, 225, 0.06), transparent 28%),
    #f3f5f9;
}

.page-auto .auto-audience-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.page-auto .auto-audience-heading h2 {
  max-width: 15ch;
  margin: 1rem 0 1rem;
  color: #061956;
  font-size: clamp(2.3rem, 3.4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-auto .auto-audience-heading p {
  max-width: 62ch;
  margin: 0;
  color: #465784;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-auto .auto-audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.page-auto .auto-audience-card {
  min-height: 190px;
  padding: 1.35rem;
  border-radius: 0 22px 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(6, 25, 86, 0.08);
  box-shadow: 0 14px 32px rgba(6, 25, 86, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-auto .auto-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(6, 25, 86, 0.09);
}

.page-auto .auto-audience-card h3 {
  margin: 0 0 0.75rem;
  color: #061956;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 900;
}

.page-auto .auto-audience-card p {
  margin: 0;
  color: #465784;
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .page-auto .auto-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-auto .auto-audience-block {
    padding: 3.5rem 0;
  }

  .page-auto .auto-audience-grid {
    grid-template-columns: 1fr;
  }

  .page-auto .auto-audience-card {
    min-height: auto;
  }

  .page-auto .auto-audience-heading h2 {
    max-width: 100%;
  }
}
/* Cards - mejora jerarquía */
.auto-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.auto-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5c6b80;
}

/* Hover elegante */
.auto-card {
  transition: all 0.3s ease;
}

.auto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Espaciado */
.auto-grid-5 {
  gap: 1.8rem;
  margin-top: 2rem;
}

/* Intro */
.auto-dirigido-intro {
  max-width: 600px;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .auto-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .auto-grid-5 {
    grid-template-columns: 1fr;
  }
}