:root {
  /* Core brand */
  --brand: #2d9cdb; /* main (blue) */
  --comp: #ff6b35; /* complementary (vivid orange) */
  --accent: #00c853; /* accent (neon green) */

  /* Bases (light theme) */
  --bg: #eeeeee;
  --text: #1a1a1a;
  --muted: #f2f2f2;
  --border: #e6e6e6;

  /* Roles */
  --btn-primary-bg: var(--brand);
  --btn-primary-text: #ffffff;

  --btn-secondary-bg: var(--comp);
  --btn-secondary-text: #0b0b0b;

  --btn-accent-bg: var(--accent);
  --btn-accent-text: #0b0b0b;

  --link: var(--brand);

  /* Semantic feedback */
  --info: var(--brand);
  --success: var(--accent);
  --warn: var(--comp);

  /* Focus ring */
  --focus: color-mix(in oklab, var(--brand) 60%, white);
}
/* 
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121212;
    --text: #ededed;
    --muted: #1b1b1b;
    --border: #2a2a2a;

    --btn-primary-bg: #39a7e5;
    --btn-secondary-bg: #ff7443;
    --btn-accent-bg: #08d05b;

    --link: #5cc2ee;
    --focus: color-mix(in oklab, var(--brand) 70%, white);
  }
} */

body {
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45)),
    url("./media/3.jpg") center/cover no-repeat; */

  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: var(--bg);
  color: var(--text);
}

p,
h2 span:not(.accent-text) {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.25);
}
.card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

/* Buttons */
.button {
  --bgc: var(--btn-primary-bg);
  --fgc: var(--btn-primary-text);
  background: var(--bgc);
  color: var(--fgc);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
  transition: transform 0.06s ease, filter 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
.button:hover {
  filter: brightness(0.95);
}
.button:active {
  transform: translateY(1px);
}
.button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.button.secondary {
  --bgc: var(--btn-secondary-bg);
  --fgc: var(--btn-secondary-text);
}
.button.accent {
  --bgc: var(--btn-accent-bg);
  --fgc: var(--btn-accent-text);
}

/* Links */
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: color-mix(in oklab, currentColor 12%, transparent);
  border: 1px solid color-mix(in oklab, currentColor 25%, transparent);
}
.badge.brand {
  color: var(--brand);
}
.badge.comp {
  color: var(--comp);
}
.badge.accent {
  color: var(--accent);
}

/* Alerts / banners */
.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid;
  background: color-mix(in oklab, currentColor 12%, var(--bg));
  border-color: color-mix(in oklab, currentColor 35%, transparent);
}
.alert.info {
  color: var(--info);
}
.alert.success {
  color: var(--success);
}
.alert.warn {
  color: var(--warn);
}

.shadow {
  color: #c7c7c7;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/* main {
  width: 100%;
  height: 100%;
  color: white;
  gap: 40px;
  display: flex;
  flex-direction: column;
  height: 100%; */
/* grid-template-columns: 1fr; */

/* grid-template-rows: repeat(4, 1fr); */
/* grid-auto-rows: 1fr; */
/* } */
/* 
header {
  /* grid-column: 1 / span 2; */
/* flex: 0 0 100px;
  text-align: center;
  background: transparent; */
/* } */

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: var(--bg, #fafafa);
  color: var(--text, #1a1a1a);
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto; /* ✅ enable optical sizing */
  margin: 0;
  font-kerning: normal;
  /* overflow: hidden; */
}
h1,
h2,
h3 {
}
h2 span {
  line-height: 4rem;
}

p {
  line-height: 1.3;
  margin: 0;
}

/* #f09819 45%, #ff512f */
.gradient-text {
  /* background: linear-gradient(90deg, #fff0b2 0%, #ffcc4d 55%, #a05a00 100%); */
  /* background: linear-gradient(90deg, #ffd665 0%, #ffb000 50%, #d86b00 100%); */
  /* background: linear-gradient(90deg, #ffd86a 0%, #ffb000 100%); */
  background: linear-gradient(90deg, #f09819 0%, #ff512f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-text {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  /* font-style: italic; */
  background: linear-gradient(90deg, #ffe072 0%, #ffc53d 45%, #ff8a00 100%);
  background: linear-gradient(90deg, #ff512f 0%, #f09819 45%, #ff512f 100%);

  /* background: linear-gradient(90deg, #fff0b2 0%, #ffcc4d 55%, #a05a00 100%); */
  /* background: linear-gradient(90deg, #ffd665 0%, #ffb000 50%, #d86b00 100%); */
  /* background: linear-gradient(90deg, #ffd86a 0%, #ffb000 100%); */

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 150%;
  vertical-align: -5%;
  display: inline-block;
  text-indent: 0;
}

.accent-button {
  background: linear-gradient(90deg, #ffe072 0%, #ffc53d 45%, #ff8a00 100%);
  /* background: linear-gradient(90deg, #fff0b2 0%, #ffcc4d 55%, #a05a00 100%); */
  /* background: linear-gradient(90deg, #ffd665 0%, #ffb000 50%, #d86b00 100%); */
  /* background: linear-gradient(90deg, #ffd86a 0%, #ffb000 100%); */
}

.animated-gradient {
  background: linear-gradient(
    90deg,
    #ffe072 0%,
    /* soft yellow */ #ffc53d 25%,
    /* golden */ #ff8a00 50%,
    /* strong orange */ #ff4d4d 75%,
    /* vivid red */ #ff0080 100% /* pink-magenta */
  );
  background-size: 400% 400%;
  animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Apply to your hero container */
.gradient-brand-wave {
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    #4dd6ff 22%,
    var(--accent) 45%,
    #9aff3a 68%,
    var(--comp) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 10s ease-in-out infinite;
}

/* Shared keyframes */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Motion-safe fallback */
@media (prefers-reduced-motion: reduce) {
  .gradient-brand-wave {
    animation: none;
    background-position: 50% 50%;
  }
}

.gradient-sunset-punch {
  background: linear-gradient(
    90deg,
    #2d9cdb 0%,
    #7758f8 25%,
    /* violet boost */ #ff3ea5 50%,
    /* magenta pop */ #ff6b35 75%,
    /* brand orange */ #ff9e2c 100% /* warm tail */
  );
  background-size: 350% 350%;
  animation: gradientShift 9s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .gradient-sunset-punch {
    animation: none;
    background-position: 60% 50%;
  }
}

.gradient-fresh-motion {
  background: linear-gradient(
    90deg,
    #1fb6ff 0%,
    #2d9cdb 20%,
    #00c853 50%,
    #b4ff3b 75%,
    #ff6b35 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .gradient-fresh-motion {
    animation: none;
    background-position: 40% 50%;
  }
}

.gradient-angled {
  background: linear-gradient(
    var(--_angle, 90deg),
    #2d9cdb 0%,
    #00cfff 25%,
    #00c853 55%,
    #ffb02e 80%,
    #ff6b35 100%
  );
  background-size: 350% 350%;
  animation: gradientShift 10s ease-in-out infinite,
    angleSweep 20s linear infinite;
}

@keyframes angleSweep {
  0% {
    --_angle: 80deg;
  }
  50% {
    --_angle: 280deg;
  }
  100% {
    --_angle: 80deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gradient-angled {
    animation: none;
    --_angle: 100deg;
    background-position: 50% 50%;
  }
}

.gradient-angled-warm {
  font-weight: 700;
  color: #fff;

  /* Stroke creates inner-edge contrast */
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
  paint-order: stroke fill;

  /* Shadow bottom-left */
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.4);
  padding: 20px;
  min-width: 150px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(
    var(--_angle, 90deg),
    #ffe072 0%,
    /* bright yellow */ #ffc53d 25%,
    /* golden amber */ #ff8a00 55%,
    /* vivid orange */ #ff4d00 80%,
    /* strong reddish-orange */ #ff9e2c 100% /* lighter orange tail */
  );
  background-size: 350% 350%;
  animation: gradientShift 10s ease-in-out infinite,
    angleSweep 20s linear infinite;
}

.gradient-angled-warm:hover {
  text-decoration: none;
  filter: brightness(0.9);
  background-position: 100% 50%;
}

/* Background movement */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Angle sweep */
@keyframes angleSweep {
  0% {
    --_angle: 75deg;
  }
  50% {
    --_angle: 285deg;
  }
  100% {
    --_angle: 75deg;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gradient-angled-warm {
    animation: none;
    --_angle: 90deg;
    background-position: 50% 50%;
  }
}

.gradient-radial-warm {
  text-decoration: none;
  font-weight: 700;
  color: #fff;

  /* Stroke creates inner-edge contrast */
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
  paint-order: stroke fill;

  /* Shadow bottom-left */
  text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.4);
  padding: 20px;
  min-width: 150px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    #ffe072 0%,
    /* bright yellow */ #ffc53d 30%,
    /* golden */ #ff8a00 60%,
    /* vivid orange */ #ff4d00 85%,
    /* strong reddish-orange */ #ff9e2c 100% /* orange tail */
  );
  background-size: 200% 200%;
  animation: gradientMove 10s ease-in-out infinite;
}

.gradient-radial-warm:hover {
  text-decoration: none;
  filter: brightness(0.9);
  background-position: 100% 50%;
}

/* Animate position of the radial center */
@keyframes gradientMove {
  0% {
    --x: 30%;
    --y: 40%;
  }
  25% {
    --x: 70%;
    --y: 30%;
  }
  50% {
    --x: 70%;
    --y: 70%;
  }
  75% {
    --x: 30%;
    --y: 70%;
  }
  100% {
    --x: 30%;
    --y: 40%;
  }
}
.btn {
  text-decoration: none;
  margin-top: 3vmax;
  padding: 20px 50px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .btn {
    width: 100%;
  }
}

.btn-grad {
  background-image: linear-gradient(
    to right,
    #ff512f 0%,
    #f09819 51%,
    #ff512f 100%
  );
}
.btn-grad {
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 50px;
  display: block;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.btn-grad:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .gradient-radial-warm {
    animation: none;
    --x: 50%;
    --y: 50%;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  background: transparent;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

header ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}

header ul li button {
  all: unset;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: block;
  opacity: 0.3;
}

header ul li button:hover {
  opacity: 0.5;
}

header ul li button.is-active {
  opacity: 1;
}

header ul li button img {
  display: block;
  outline: 1px solid rgba(0, 0, 0, 0.5);
}

main {
  display: flex;
  align-items: center;
  width: 100%;
  /* max-width: 1280px; */
  height: 100%;
  /* justify-content: center;
  align-items: stretch;  */
  flex-direction: row;
  justify-content: center;
  padding: 0 16px;
  gap: 10vw;
  background: transparent url("./image.svg") right 10% center no-repeat;
  background-size: auto 40vmax;
}

section {
  max-width: 1360px;
  width: 100%;
  padding: 40px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section::after {
  content: "";
  position: absolute;
  /* inset: 0; */
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  max-width: 800px;
  right: -20%;
  background: linear-gradient(
    to right,
    var(--bg, #fafafa) 0%,
    var(--bg, #fafafa) 50%,
    transparent 100%
  );
  /* background: linear-gradient(to top, transparent, var(--bg, #fafafa)); */
  z-index: 1;
  pointer-events: none; /* let clicks pass through */
  opacity: 0.3;
}

.copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  max-width: 600px;
  position: relative;
  z-index: 999;
  align-items: flex-start;
}

.copy p {
  text-indent: 2ch;
}

.logo {
  /* margin-bottom: 5vmax; */
  display: flex;
}

@media (max-width: 1024px) {
  main {
    align-items: flex-start;
    background-position: center bottom;
    padding: 80px 0;
    background-size: auto 90vmin;
  }

  section {
    justify-content: start;
    height: auto;
    padding: 0px 40px;
  }

  section::after {
    content: "";
    position: absolute;
    /* inset: 0; */
    left: 0;
    right: 0;
    top: 50%;
    bottom: -20%;
    width: auto;
    max-width: unset;
    background: linear-gradient(
      to bottom,
      var(--bg, #fafafa) 0%,
      var(--bg, #fafafa) 50%,
      transparent 100%
    );
    /* background: linear-gradient(to top, transparent, var(--bg, #fafafa)); */
    z-index: 1;
    pointer-events: none; /* let clicks pass through */
  }

  .copy {
    max-width: unset;
  }
}

.cta {
  text-indent: 1ch;
  margin: 20px 0;
  text-align: center;
  width: 100%;
}

/* Typography roles */
.logo,
.brand {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(
    1.6rem,
    4vw,
    2.4rem
  ); /* min ~16px, scales with viewport, max 20px */
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.6px;
  font-optical-sizing: auto;
}

.headline {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3.2rem; /* ~32px */
  font-weight: 400;
  line-height: 1.1;
  margin: 0.4em 0;
  letter-spacing: -0.6px;
  font-optical-sizing: auto;
}

.subhead {
  font-family: "Inter", sans-serif;
  font-size: 2rem; /* ~20px */
  font-weight: 700;
  line-height: 1.3;
  margin: 0.6em 0;
  letter-spacing: -0.6px;
  font-optical-sizing: auto;
}

.body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem; /* ~16px */
  font-weight: 400;
  line-height: 1.6;
  margin: 0.8em 0;
  font-optical-sizing: auto;
}

.caption {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem; /* ~14px */
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.8;
  font-optical-sizing: auto;
}

/* Responsive scaling */
@media (min-width: 768px) {
  /* .logo,
  .brand {
    font-size: clamp(2.4rem, 3vw, 4rem); 
  } */
  .headline {
    font-size: clamp(3.2rem, 5vw, 6.4rem);
  }
  .subhead {
    font-size: clamp(2.4rem, 3vw, 3.6rem);
  }
  .body {
    font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  }
  .caption {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }

  .cta {
    margin-bottom: 5vmax;
    text-align: left;
  }
}

@media (min-width: 1024px) {
}

@media (min-width: 1600px) {
  /* .logo,
  .brand {
    font-size: clamp(3rem, 2.5vw, 4.8rem);  
  }*/
  .headline {
    font-size: clamp(3.6rem, 4vw, 4.8rem);
  }
  .subhead {
    font-size: clamp(2.6rem, 2vw, 2.8rem);
  }
  .body {
    font-size: clamp(2rem, 1.4vw, 2.2rem);
  }
}

/* Variable font opsz tweak (if supported) */
@supports (font-variation-settings: normal) {
  .logo,
  .brand,
  .headline {
    font-variation-settings: "opsz" 48; /* tweak optical size for large headings */
  }
}

.desktop {
  display: none !important;
}

.mobile {
  display: block !important;
}

@media (min-width: 1024px) {
  .desktop {
    display: block !important;
  }
  .mobile {
    display: none !important;
  }
}

/* Duration token so you can tweak easily */
:root {
  --i18n-fade-duration: 260ms;
}

/* All translatable elements fade */
[data-i18n] {
  opacity: 0; /* hidden before i18n is applied */
  transition: opacity var(--i18n-fade-duration) ease;
}

/* When ready, reveal */
.i18n-ready [data-i18n] {
  opacity: 1;
}

/* Accessibility: no animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-i18n] {
    transition: none;
  }
}
body,
html {
  margin: 0;
  height: 100%;
}

body {
  padding-top: 120px;
}

footer {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: footer;
}

footer a {
  display: flex;
  height: 80px;
  align-items: center;
}

header {
  background: rgba(238, 238, 238, 0.8);
}
.wrapper {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 80px;
  grid-auto-rows: auto;
  min-height: 100%;
  height: auto;
  width: 100%;
  gap: 20px;
  grid-template-areas:
    "cta"
    "image"
    "text"
    "footer";
}

.cta {
  justify-content: center;
  grid-area: cta;
  margin: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 20px;
}

.text {
  display: flex;
  grid-area: text;
  align-items: center;
  flex-direction: column;
  padding: 0 20px;
  gap: 40px;
}

.image {
  grid-area: image;
  display: flex;
  align-items: center;
}

.image {
  height: 100%;
  width: 100%;
}

.whatsapp {
  display: flex;
  height: 54px;
  align-items: center;
  padding: 0 25px 0 50px;
  width: auto;
  /* background: linear-gradient(#25d366, #25d366) 14% 84%/16% 16% no-repeat,
    radial-gradient(#25d366 60%, transparent 0); */
  background: url("./WhatsApp.svg"), linear-gradient(to top, #17b852, #25d366); /* image layer */

  background-repeat: no-repeat, repeat-x; /* gradient repeats horizontally, image does not repeat */
  background-size: 30px, 100% 100%; /* gradient stretches full element, image uses its natural size */
  background-position: left 15px center, left top; /* gradient aligns to element, image centered */
  border-radius: 50px;
  background-size: 25px;
  color: white;
  white-space: nowrap;
  transition: all 0.2s linear;
}

.whatsapp:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

@media (min-width: 1024px) {
  .wrapper {
    height: calc(100% - 80px);
  }

  .grid {
    grid-template-columns: auto 600px minmax(0, 50%);
    grid-template-rows: auto auto auto 80px;
    gap: 40px;
    grid-template-areas:
      "asd cta image"
      "asd text image"
      "asd text image"
      "footer footer footer";
  }

  .cta {
    justify-content: flex-start;
  }

  .image img {
    max-height: calc(100% - 240px);
    width: calc(100% - 10vmax);
  }

  .text {
    justify-content: flex-start;
  }
}
