@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --rojo: #d4142a;
  --rojo-oscuro: #a80f21;
  --rojo-intenso: #b81024;
  --rojo-suave: #fff0f2;
  --blanco: #ffffff;
  --texto: #3d3d3d;
  --red-gradient: linear-gradient(135deg, var(--rojo-oscuro) 0%, var(--rojo) 50%, var(--rojo-intenso) 100%);
  --border-radius: 20px;
  --container-max: 920px;
  --section-gap: 1.75rem;
  --circle-size: 4.2rem;
  --icon-size: 2.25rem;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--blanco);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(212, 20, 42, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, var(--blanco) 0%, var(--rojo-suave) 100%);
  z-index: 0;
  pointer-events: none;
}

.site {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.site-hero {
  background: var(--red-gradient);
  border-radius: var(--border-radius);
  margin-top: 1.25rem;
  padding: 2rem 1.5rem 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 20, 42, 0.18), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-hero-inner { position: relative; z-index: 1; }

.logo {
  max-width: 220px;
  width: min(220px, 75vw);
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
}

.main-title {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--blanco);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}

.options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.option-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  background: var(--blanco);
  color: var(--rojo-oscuro);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}

.option-btn .icon { color: var(--rojo); }

.site-main {
  margin-top: var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.feature-circle {
  background: var(--red-gradient);
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 8px 24px rgba(212, 20, 42, 0.2);
  border: 3px solid var(--rojo-suave);
  flex-shrink: 0;
}

.feature-circle .icon {
  width: var(--icon-size);
  height: var(--icon-size);
  fill: #fff;
  display: block;
}

.panel {
  background: var(--blanco);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 20, 42, 0.1);
  box-shadow: 0 12px 40px rgba(212, 20, 42, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.panel.img-section img {
  width: 100%;
  height: auto;
  display: block;
}
