/* Fresh stylesheet: fully new styles for every element and each section */
@import url("https://fonts.googleapis.com/css2?family=Kreon:wght@300;400;500;600;700&display=swap");

/* Design tokens */
:root {
  --bg: #0e0f13;
  --bg-2: #12141b;
  --surface: #171a22;
  --surface-2: #1c202a;
  --line: #2a3141;
  --fg: #f1f4fb;
  --muted: #a5adba;
  --brand: #ff8f70; /* coral */
  --brand-2: #66d1c2; /* aqua */
  --accent: #8ea0ff; /* periwinkle */
}

/* Base reset */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Kreon", ui-serif, Georgia, "Times New Roman", serif;
  color: var(--fg);
  background: linear-gradient(180deg, var(--bg) 0, var(--bg-2) 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a {
  color: var(--fg);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header and navigation */
.s-78685865876 {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 15, 19, 0.86);
  backdrop-filter: blur(8px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.s-78685865876 .s-9071721 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(12px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.s-78685865876 .s-331790 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-78685865876 .s-331790 svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 6px 18px rgba(255, 143, 112, 0.35));
}
.s-78685865876 .s-331790 .s-8123 {
  font-weight: 800;
  letter-spacing: 0.45px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--fg);
}
.s-100200 {
  display: flex;
  gap: 16px;
  align-items: center;
}
.s-100200 a {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.95;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
}
.s-100200 a:hover {
  transform: translateY(-1px);
  background: rgba(102, 209, 194, 0.12);
}
.s-cta-1 {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  padding: 10px 14px !important;
  border-radius: 999px;
  color: #0b0c10;
}

/* Mobile burger */
.s-44321 {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
}
.s-44321 .s-b1,
.s-44321 .s-b2,
.s-44321 .s-b3 {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.s-44321 .s-b1 {
  top: 12px;
}
.s-44321 .s-b2 {
  top: 19px;
}
.s-44321 .s-b3 {
  top: 26px;
}
.s-44321.is-open .s-b1 {
  top: 19px;
  transform: rotate(45deg);
}
.s-44321.is-open .s-b2 {
  opacity: 0;
}
.s-44321.is-open .s-b3 {
  top: 19px;
  transform: rotate(-45deg);
}
.s-99117 {
  display: none;
  position: fixed;
  inset: 64px 12px auto 12px;
  background: rgba(18, 21, 30, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  z-index: 49;
}
.s-99117 a {
  display: block;
  padding: 12px;
  border-radius: 10px;
  font-weight: 650;
}
.s-99117 a:hover {
  background: rgba(102, 209, 194, 0.12);
}

/* Hero section */
.s-hero-a93k {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: stretch;
  padding-top: 82px;
  overflow: hidden;
  background: linear-gradient(180deg, #11131a 0, #0f1218 30%, #0e0f13 100%);
  isolation: isolate;
}
.s-hero-a93k .s-grid-1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3.2vw, 36px);
  align-items: center;
}
.s-hero-a93k .s-typo {
  display: grid;
  gap: 18px;
}
.s-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.s-title {
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.s-sub {
  font-size: clamp(16px, 2vw, 21px);
  color: #e7ebf5;
  max-width: 56ch;
}
.s-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.s-btn {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s,
    border-color 0.2s;
}
.s-btn--primary {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #0b0c10;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(102, 209, 194, 0.26);
}
.s-btn--ghost {
  background: rgba(102, 209, 194, 0.08);
}
.s-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(102, 209, 194, 0.24);
}
.s-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}
.s-chip {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(23, 26, 34, 0.7);
}

.s-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  outline: var(--line) solid 1px;
  background: linear-gradient(
    180deg,
    rgba(142, 160, 255, 0.08),
    rgba(142, 160, 255, 0.02)
  );
}
.s-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 1;
  transform: none;
  filter: none;
}

/* When the hero uses <img class="s-visual"> directly (mobile-friendly crop) */
img.s-visual {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(340px, 52vh, 640px);
  object-fit: cover;
  object-position: center 35%;
  border-radius: 20px;
  outline: none;
  background: none;
}
.s-visual .s-mask { display: none }
.s-visual .s-lines { display: none }
.s-steps {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(60%, 420px);
}
.s-card {
  margin-top: 12px;
  width: min(560px, 92%);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(28, 32, 42, 0.6),
    rgba(23, 26, 34, 0.6)
  );
  border: 1px solid var(--line);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(10px) saturate(140%);
}
.s-card h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
}
.s-card p {
  margin: 0;
  font-size: 14px;
  color: #f1f4fb;
}
.s-spark {
  height: 42px;
  width: 160px;
}

/* Generic section wrapper */
.s-sec {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0;
  overflow: hidden;
}
.s-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.s-h2 {
  font-size: clamp(28px, 4.2vw, 54px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.s-lead {
  color: #e3e7f2;
  max-width: 64ch;
  font-size: clamp(16px, 2vw, 20px);
}
.s-grid {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

/* Sections (each gets a distinct background) */
.s-sec--inl-8413d1 {
  background: linear-gradient(180deg, #11131a 0, #0f1218 100%);
}
.s-sec--inl-bc835c {
  background: linear-gradient(180deg, #0f1218 0, #11131a 100%);
}
.s-sec--inl-390818 {
  background: linear-gradient(180deg, #11131a 0, #0f1218 100%);
}
.s-sec--inl-83ad10 {
  background: linear-gradient(180deg, #0f1218 0, #11131a 100%);
}
.s-sec--inl-56b69d {
  background: linear-gradient(180deg, #11131a 0, #0f1218 100%);
}
.s-sec--inl-2a641a {
  background: linear-gradient(180deg, #0f1218 0, #11131a 100%);
}
.s-sec--inl-ae5c68 {
  background: linear-gradient(180deg, #11131a 0, #0f1218 100%);
}
.s-sec--inl-b8e274 {
  background: linear-gradient(180deg, #0f1218 0, #11131a 100%);
}
.s-sec--inl-02d248 {
  background: #0d0f14;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

/* Components inside sections */
.s-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.s-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  margin-top: 6px;
}
.s-card2 {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(28, 32, 42, 0.55),
    rgba(23, 26, 34, 0.55)
  );
}
.s-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  background: rgba(23, 26, 34, 0.7);
}
.s-cta2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.s-cta2--g {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #0b0c10;
  border-color: transparent;
}
.s-tl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.s-tl--inl-ac411f {
  margin-top: 18px;
}
.s-tl .s-step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(28, 32, 42, 0.48),
    rgba(23, 26, 34, 0.48)
  );
}
.s-tl .s-step h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 18px;
}
.s-tl .s-step p {
  margin: 0;
  color: #cfd6e4;
}

/* Testimonials carousel */
.s-ts {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.s-ts .s-cell {
  scroll-snap-align: start;
}

/* Cookie banner */
.s-cookie {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 60;
  background: rgba(18, 21, 30, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  display: none;
}
.s-cookie .s-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Inline utility blocks from HTML */
.elem--inl-3b2d92 {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  color: #cfd6e4;
  font-size: 11px;
  inset: auto 10px 10px auto;
  padding: 6px 10px;
  position: absolute;
}
.elem--inl-4ed7e9 {
  background: rgba(28, 32, 42, 0.45);
  color: #cfd6e4;
  font-size: 12px;
  padding: 8px 12px;
}
.elem--inl-e8a5df {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.elem--inl-3e9fba {
  color: #cfd6e4;
  margin: 0.6rem 0 0;
}
.elem--inl-d1e7dd {
  margin: 0.6rem 0 0;
}
.elem--inl-40e7bd {
  color: #cfd6e4;
}
.elem--inl-df636e {
  margin: 0;
}
.elem--inl-271b04 {
  color: #8d96ac;
  margin: 0.4rem 0 0;
}
.elem--inl-da0c64 {
  margin-top: 0;
}
.elem--inl-1eb280 {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.elem--inl-59f0c9 {
  margin-top: 14px;
}
.elem--inl-32cdb4 {
  margin-top: 12px;
}
.elem--inl-d7a9c5 {
  align-items: center;
  display: flex;
  gap: 12px;
}
.elem--inl-a4d4e8 {
  color: #8d96ac;
  font-size: 14px;
}
.elem--inl-199583 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.elem--inl-0d43ec {
  color: #6f7a93;
  font-size: 12px;
  margin-top: 6px;
}
.elem--inl-64ed03 {
  color: #e3e7f2;
  margin: 0;
  max-width: 68ch;
}
.elem--inl-be1392 {
  display: flex;
  gap: 10px;
}

/* Appear animations */
.js-appear {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.is-in {
  opacity: 1;
  transform: none;
}
.s-fade-delay-1 {
  transition-delay: 0.06s;
}
.s-fade-delay-2 {
  transition-delay: 0.12s;
}
.s-fade-delay-3 {
  transition-delay: 0.18s;
}

/* Responsive */
@media (max-width: 980px) {
  .s-hero-a93k .s-grid-1 {
    grid-template-columns: 1fr;
  }
  .s-hero-a93k .s-visual { order: -1; }
  img.s-visual {
    height: clamp(200px, 42vh, 420px);
    object-position: center 25%;
    border-radius: 16px;
  }
  .s-100200 {
    display: none;
  }
  .s-44321 {
    display: inline-block;
  }
  .s-99117 {
    display: none;
  }
  .s-tl {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .s-tl {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-appear {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .s-hero-a93k .s-visual img {
    transform: none;
  }
}

/* Crecesintierra redesign: new palette and Kreon typography */
@import url("https://fonts.googleapis.com/css2?family=Kreon:wght@300;400;500;600;700&display=swap");

:root {
  --c-bg: #121013;
  --c-fg: #f3efe7;
  --c-acc1: #e07a5f; /* terracotta */
  --c-acc2: #81b29a; /* sage */
  --c-acc3: #e07a5f;
  --c-acc4: #81b29a;
  --c-muted: #a8a29e;
}

html,
body {
  font-family: "Kreon", ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.5;
  color: var(--c-fg);
  background: var(--c-bg);
}

/* Header, nav, buttons updated accents */
.s-78685865876 {
  background: linear-gradient(
    90deg,
    rgba(18, 16, 19, 0.9),
    rgba(18, 16, 19, 0.4)
  );
  border-bottom: 1px solid rgba(224, 122, 95, 0.18);
}
.s-78685865876 .s-331790 svg {
  filter: drop-shadow(0 6px 18px rgba(224, 122, 95, 0.45));
}
.s-100200 a:hover {
  background: rgba(224, 122, 95, 0.12);
}
.s-cta-1 {
  color: #121013;
}
.s-44321 {
  border-color: rgba(224, 122, 95, 0.22);
}
.s-99117 {
  background: rgba(18, 16, 19, 0.96);
  border-color: rgba(224, 122, 95, 0.18);
}
.s-99117 a:hover {
  background: rgba(224, 122, 95, 0.12);
}

/* Hero and cards */
.s-hero-a93k {
  background: radial-gradient(
      1200px 600px at 80% -10%,
      rgba(224, 122, 95, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 20%,
      rgba(129, 178, 154, 0.2),
      transparent 55%
    ),
    linear-gradient(180deg, #121013 0, #121013 30%, #0e0d10 100%);
}
.s-title {
  filter: drop-shadow(0 8px 28px rgba(224, 122, 95, 0.35));
}
.s-sub {
  color: #e7e2d7;
  max-width: 56ch;
}
.s-btn {
  border-color: rgba(224, 122, 95, 0.22);
}
.s-btn--primary {
  color: #121013;
  box-shadow: 0 10px 30px rgba(224, 122, 95, 0.35),
    0 2px 0 rgba(0, 0, 0, 0.3) inset;
}
.s-btn--ghost {
  background: rgba(224, 122, 95, 0.08);
}
.s-btn:hover {
  box-shadow: 0 12px 34px rgba(224, 122, 95, 0.32);
}
.s-chip {
  border-color: rgba(224, 122, 95, 0.28);
}
.s-visual {
  outline: rgba(224, 122, 95, 0.18) solid 1px;
  background: linear-gradient(
    180deg,
    rgba(224, 122, 95, 0.06),
    rgba(224, 122, 95, 0.02)
  );
}
.s-visual img {
  mix-blend-mode: multiply;
  opacity: 0.9;
  transform: scale(1.04);
  filter: contrast(1.05) saturate(1.15);
}
.s-visual .s-mask {
  background: radial-gradient(
      closest-side,
      rgba(224, 122, 95, 0.35),
      transparent 60%
    ),
    conic-gradient(
      from 0turn,
      rgba(129, 178, 154, 0.35),
      transparent 25%,
      rgba(224, 122, 95, 0.35) 35%,
      transparent 70%
    );
}
.s-visual .s-lines {
  background: repeating-linear-gradient(
    45deg,
    rgba(224, 122, 95, 0.08) 0,
    rgba(224, 122, 95, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
}
.s-steps {
  filter: drop-shadow(0 18px 60px rgba(224, 122, 95, 0.35));
}
.s-card {
  background: linear-gradient(
    180deg,
    rgba(224, 122, 95, 0.08),
    rgba(224, 122, 95, 0.03)
  );
  border-color: rgba(224, 122, 95, 0.2);
}
.s-card p {
  color: #efe8dc;
}

/* Sections */
.s-sec--inl-8413d1 {
  background: radial-gradient(
      900px 420px at 10% -10%,
      rgba(224, 122, 95, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #121013 0, #1a181c 100%);
}
.s-sec--inl-bc835c {
  background: radial-gradient(
      800px 420px at 90% -20%,
      rgba(129, 178, 154, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #1a181c 0, #121013 100%);
}
.s-sec--inl-390818 {
  background: radial-gradient(
      900px 420px at 0 0,
      rgba(224, 122, 95, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, #121013 0, #1a181c 100%);
}
.s-sec--inl-83ad10 {
  background: radial-gradient(
      1000px 520px at 100% 20%,
      rgba(129, 178, 154, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, #1a181c 0, #121013 100%);
}
.s-sec--inl-56b69d {
  background: radial-gradient(
      800px 420px at 85% 0,
      rgba(224, 122, 95, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #121013 0, #1a181c 100%);
}
.s-sec--inl-2a641a {
  background: radial-gradient(
      900px 500px at 10% 10%,
      rgba(129, 178, 154, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #1a181c 0, #121013 100%);
}
.s-sec--inl-ae5c68 {
  background: radial-gradient(
      1000px 520px at 100% 0,
      rgba(224, 122, 95, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #121013 0, #1a181c 100%);
}
.s-sec--inl-b8e274 {
  background: radial-gradient(
      900px 520px at 0 10%,
      rgba(129, 178, 154, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, #1a181c 0, #121013 100%);
}
.s-sec--inl-02d248 {
  background: #0e0d10;
  border-top: 1px solid rgba(224, 122, 95, 0.15);
}

/* Grids, tags, timeline */
.s-dot {
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.35);
}
.s-card2 {
  border-color: rgba(224, 122, 95, 0.2);
  background: linear-gradient(
    180deg,
    rgba(224, 122, 95, 0.08),
    rgba(224, 122, 95, 0.03)
  );
}
.s-tag {
  border-color: rgba(224, 122, 95, 0.26);
}
.s-cta2 {
  border-color: rgba(224, 122, 95, 0.22);
}
.s-cta2--g {
  color: #121013;
}
.s-tl .s-step {
  border-color: rgba(224, 122, 95, 0.2);
  background: linear-gradient(
    180deg,
    rgba(224, 122, 95, 0.06),
    rgba(224, 122, 95, 0.02)
  );
}

/* Cookie */
.s-cookie {
  background: rgba(18, 16, 19, 0.96);
  border-color: rgba(224, 122, 95, 0.2);
}
.elem--inl-3b2d92 {
  color: #e1dbcf;
}
.elem--inl-4ed7e9 {
  background: rgba(224, 122, 95, 0.06);
  color: #e1dbcf;
}
.elem--inl-3e9fba,
.elem--inl-40e7bd {
  color: #e1dbcf;
}
.elem--inl-271b04 {
  color: #a8a29e;
}
.elem--inl-a4d4e8 {
  color: #a8a29e;
}
.elem--inl-0d43ec {
  color: #7d7670;
}
.elem--inl-64ed03 {
  color: #e7e2d7;
}
