@import url("https://espinamasuena.lideresimpulsa.com/wp-content/uploads/elementor/google-fonts/css/raleway.css?ver=1748861038");
@import url("https://espinamasuena.lideresimpulsa.com/wp-content/uploads/elementor/google-fonts/css/roboto.css?ver=1748859336");

:root {
  --green: #031602;
  --green-soft: rgba(3, 22, 2, 0.78);
  --olive: #87986a;
  --olive-soft: rgba(135, 152, 106, 0.15);
  --paper: #f8f9f6;
  --white: #ffffff;
  --muted: #c4c4c4;
  --text: #374036;
  --line: rgba(135, 152, 106, 0.28);
  --shadow: 0 24px 70px rgba(3, 22, 2, 0.16);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.65;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  padding: 26px clamp(20px, 5vw, 72px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand img {
  width: 178px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 34px);
  color: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
}

.menu a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.92;
}

.menu a:hover {
  color: var(--olive);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 190px 20px 82px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 22, 2, 0.62) 0%, var(--green) 100%),
    url("https://espinamasuena.lideresimpulsa.com/wp-content/uploads/hero-espinama-suena.webp") bottom center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(3, 22, 2, 0) 0%, var(--green) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  font-weight: 600;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--olive);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: "Raleway", Arial, sans-serif;
  line-height: 1.05;
}

h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 34px;
  border: 1px solid currentColor;
  border-radius: 40px;
  color: var(--green);
  background: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--white);
}

.button.light {
  color: var(--white);
  border-color: var(--white);
}

.button.light:hover {
  background: var(--white);
  color: var(--green);
}

.button.solid {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}

.section {
  padding: clamp(70px, 8vw, 112px) 20px;
}

.section.green {
  color: var(--white);
  background: var(--green);
}

.section.green h2,
.section.green h3 {
  color: var(--white);
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.intro-grid,
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 10px 100px 10px 10px;
  box-shadow: var(--shadow);
}

.image-frame.dark img {
  border-color: var(--green);
}

.content-panel {
  padding: clamp(24px, 5vw, 52px);
  border: 6px solid var(--olive-soft);
  border-left: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
}

.content-panel h2,
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.script {
  font-weight: 600;
  font-style: italic;
}

.content-panel p,
.section-title p {
  margin: 22px 0 0;
}

.meta-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.meta-list strong {
  color: var(--green);
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 800;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.form-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.form-card > p {
  margin: 0 0 26px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.spam-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--green);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(3, 22, 2, 0.18);
  border-radius: 8px;
  color: var(--green);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(135, 152, 106, 0.35);
  border-color: var(--olive);
}

.check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 10px 0 24px;
  font-size: 0.92rem;
}

.check input {
  min-height: auto;
  margin-top: 5px;
}

.status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(135, 152, 106, 0.16);
  color: var(--green);
  font-weight: 500;
}

.status.visible {
  display: block;
}

.aside-note {
  align-self: stretch;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 22, 2, 0.78), rgba(3, 22, 2, 0.96)),
    var(--note-image, url("")) center / cover no-repeat;
}

.aside-note h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.aside-note p {
  color: var(--muted);
}

.footer {
  padding: 52px 20px;
  color: var(--muted);
  background:
    linear-gradient(rgba(3, 22, 2, 0.86), rgba(3, 22, 2, 0.86)),
    url("https://espinamasuena.lideresimpulsa.com/wp-content/uploads/hero-espinama-suena.webp") bottom center / cover no-repeat;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1140px, 100%);
  margin: 0 auto;
}

.footer img {
  width: 150px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    padding: 20px;
  }

  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero {
    min-height: 650px;
    padding-top: 170px;
  }

  .intro-grid,
  .form-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .content-panel {
    padding: 28px 0 0;
    border: 0;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 150px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .meta-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
