:root {
  --brand: #2d7a5d;
  --brand-600: #22634c;
  --bg: #ffffff;
  --paper: #f7f6f2;
  --paper-2: #f1efe8;
  --text: #1a1f1c;
  --muted: #4a5a52;
  --error: #c92a2a;
  --ok: #2f9e44;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --radius-xl: 26px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg)
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: 1500px;
  margin-inline: auto;
  padding: 0 20px
}

.btn {
  --bg: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.2rem;
  border-radius: 100px;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 8px 20px rgba(45, 122, 93, .25);
  cursor: pointer;
  transition: .2s
}

.btn:hover {
  transform: translateY(-2px)
}

.btn.ghost {
  background: transparent;
  border: 1px dashed rgba(0, 0, 0, .25);
  color: #1a1f1c
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffcc;
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid #ece8df
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0
}

.logo img {
  height: 60px;
  object-fit: contain
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #1a1f1c
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/landing_imagen.webp") center/cover no-repeat;
  filter: saturate(1.05)
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .7))
}

.hero .content {
  position: relative;
  z-index: 1;
  max-width: 900px
}

h1 {
  font-family: Outfit, Inter, system-ui;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  margin: 0 0 12px
}

.lead {
  font-size: 1.15rem;
  color: #2b3a32;
  line-height: 1.65
}

section {
  padding: 58px 0
}

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px
}

.panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid #eae7df;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.bag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: .9
}

.franja {
  background: #e9dec9;
  color: #1b1305;
  padding: 20px 0
}

.franja .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px
}

form label {
  display: block;
  margin: 6px 0;
  font-weight: 700
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0ddd5;
  background: #fff;
  color: #1a1f1c
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(45, 122, 93, .25);
  border-color: #2d7a5d
}

.card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #ece8df;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-items: center
}

footer {
  padding: 34px 0;
  border-top: 1px solid #ece8df;
  opacity: .95
}

.footer-brand {
  display: flex;
  gap: 30px;
  align-items: flex-end
}

.footer-brand img {
  height: 40px
}

@media(max-width:960px) {
  .split {
    grid-template-columns: 1fr
  }

  .col2 {
    grid-template-columns: 1fr
  }
}