/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --bg-alt: #111;
  --card-bg: #161616;
  --card-border: #2a2a2a;
  --text: #e0e0e0;
  --muted: #888;
  --accent: #c8a96e;
  --white: #fff;
}

body,
button,
input,
select,
textarea {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 300;
  background-color: var(--bg);
  color: var(--white);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
header {
  background-color: #000;
  color: #fff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 2px solid #fff;
  width: 100%;
  height: 80px;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  height: 100%;
}

.header-left button {
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  height: auto;
}

.header-left button img {
  height: 250px;
  width: auto;
  object-fit: contain;
}

/* ── MAIN ── */
main {
  flex: 1;
  padding-bottom: 20px; /* espacio para footer fijo */
}

/* ── HERO ── */
.hero {
  background-color: var(--bg);
  padding: 56px 24px 48px;
  border-bottom: 1px solid #222;
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 12vw, 80px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.divider {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 32px;
  justify-content: center;
}

.divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: #ffffff;
  display: block;
}

.divider-icon {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  flex-shrink: 0;
}

.body-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}

.highlight-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

/* ── ¿PARA QUÉ? ── */
.para-que {
  background-color: var(--bg-alt);
  padding: 56px 24px;
  border-bottom: 1px solid #222;
}

.para-que h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 7vw, 42px);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--white);
  margin-bottom: 12px;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}

/* Grid 2x2 */
.grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  grid-template-rows: auto 1px auto;
  max-width: 560px;
  margin: 0 auto;
}

.grid-item {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.grid-item svg {
  width: 44px;
  height: 44px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--accent);
}

.grid-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.grid-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.grid-divider-v {
  background: #2a2a2a;
  width: 1px;
}

.grid-divider-h {
  grid-column: 1 / -1;
  height: 1px;
  background: #2a2a2a;
}

/* ── ¿POR QUÉ? ── */
.por-que {
  background-color: var(--bg);
  padding: 48px 24px;
}

.por-que-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.burger-wrap {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.burger-svg {
  width: 100%;
  height: auto;
}

.por-que-text {
  flex: 1;
  min-width: 0;
}

.por-que-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 5vw, 30px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.por-que-text .accent-line {
  margin: 0 0 16px;
}

.por-que-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.por-que-text .highlight-text {
  font-size: 14px;
  margin-top: 4px;
}

/* ── FOOTER ── */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  border-top: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  z-index: 100;
}

footer .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

footer button {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 300;
  background: #222;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95em;
  transition: all 0.3s;
}

footer button:hover {
  background-color: #fff;
  color: #000;
}

footer p {
  font-size: 0.85em;
  color: #aaa;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {

  .header-left button img {
    height: 250px;
  }

  .hero {
    padding: 40px 18px 36px;
  }

  .para-que {
    padding: 40px 18px;
  }

  .grid {
    grid-template-columns: 1fr 1px 1fr;
  }

  .grid-item {
    padding: 24px 12px;
  }

  .grid-item svg {
    width: 36px;
    height: 36px;
  }

  .grid-item h3 {
    font-size: 17px;
  }

  .grid-item p {
    font-size: 13px;
  }

  .por-que {
    padding: 36px 18px;
  }

  .por-que-card {
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    gap: 20px;
  }

  .burger-wrap {
    width: 90px;
  }

  .por-que-text h2 {
    text-align: center;
  }

  .por-que-text .accent-line {
    margin: 0 auto 16px;
  }

  footer {
    padding: 16px 12px;
  }

  footer button {
    font-size: 0.85em;
    padding: 6px 10px;
  }
}