:root {
  --green: #046b2f;
  --green-dark: #062f1a;
  --green-bright: #10a441;
  --red: #c91617;
  --red-dark: #710b0b;
  --cream: #fff1c7;
  --cream-soft: #fff8e8;
  --gold: #e4ad3b;
  --gold-bright: #ffd66d;
  --black: #0e0b08;
  --black-soft: #1b140e;
  --brown: #7a4318;
  --white: #ffffff;
  --text: #26190e;
  --shadow: 0 24px 80px rgba(14, 11, 8, .25);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    radial-gradient(circle at left top, rgba(4, 107, 47, .26), transparent 34%),
    radial-gradient(circle at right top, rgba(201, 22, 23, .23), transparent 34%),
    linear-gradient(180deg, #fff9ea 0%, #fff0c8 48%, #f1cf82 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 14px;
}

.skip-link:focus { top: 14px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 11, 8, .95);
  border-bottom: 1px solid rgba(228, 173, 59, .4);
}

.topbar {
  color: var(--cream);
  background: linear-gradient(90deg, var(--green-dark), var(--red-dark));
  font-size: .94rem;
}

.topbar__content {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.brand__badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: radial-gradient(circle, rgba(228, 173, 59, .25), rgba(4, 107, 47, .18));
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(228, 173, 59, .08);
  font-size: 1.5rem;
}

.brand__text { display: grid; line-height: 1.02; }
.brand__text small { color: var(--gold-bright); font-size: .74rem; letter-spacing: 1.4px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__menu a {
  display: inline-flex;
  padding: 12px 15px;
  color: var(--cream);
  border-radius: 999px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible {
  color: var(--black);
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.nav__toggle {
  width: 46px;
  height: 42px;
  display: none;
  border: 1px solid rgba(228, 173, 59, .55);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--gold-bright);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 72px 0 92px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 107, 47, .23), transparent 23%, transparent 77%, rgba(201, 22, 23, .24)),
    radial-gradient(circle at 50% 14%, rgba(255, 214, 109, .42), transparent 31%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(14, 11, 8, .17));
}

.hero__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 23vw;
  z-index: -2;
  opacity: .65;
}

.hero__decor--green { left: 0; background: linear-gradient(90deg, rgba(4, 107, 47, .72), transparent); }
.hero__decor--red { right: 0; background: linear-gradient(270deg, rgba(201, 22, 23, .72), transparent); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}

.hero h1,
.section h2,
.banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  color: var(--green-dark);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .88;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, .9), 0 12px 30px rgba(14, 11, 8, .14);
}

.hero__lead {
  margin: 22px 0 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.2vw, 3.85rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.hero__description {
  max-width: 690px;
  margin: 24px 0 0;
  color: #3d2a14;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-weight: 800;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(14, 11, 8, .18);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  border-color: rgba(255, 255, 255, .26);
}

.btn--secondary {
  color: var(--black);
  background: rgba(255, 255, 255, .6);
  border-color: rgba(113, 11, 11, .35);
}

.btn--full { width: 100%; }

.info-strip {
  width: min(100%, 540px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 18px 20px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--black), var(--black-soft));
  border: 1px solid rgba(228, 173, 59, .58);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.info-strip span,
.phone-box span,
.contact-card__header p {
  display: block;
  margin: 0 0 4px;
  color: var(--gold-bright);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.info-strip strong { font-size: 1.22rem; }
.info-strip a { color: var(--white); font-size: clamp(1.35rem, 2.6vw, 1.95rem); font-weight: 900; }

.hero__poster,
.official-poster {
  position: relative;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(228, 173, 59, .9), rgba(255, 248, 232, .85), rgba(201, 22, 23, .45));
  box-shadow: var(--shadow);
}

.hero__poster::before,
.official-poster::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(4, 107, 47, .42), rgba(228, 173, 59, .35), rgba(201, 22, 23, .42));
  filter: blur(18px);
}

.hero__poster img,
.official-poster img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(14, 11, 8, .18);
}

.section { padding: 92px 0; }

.intro__grid,
.poster-section__grid,
.contact__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.section h2 {
  color: var(--green-dark);
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
  line-height: .98;
}

.intro__card,
.contact-card,
.feature-card,
.poster-section__copy {
  background: rgba(255, 248, 232, .82);
  border: 1px solid rgba(122, 67, 24, .18);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 56px rgba(122, 67, 24, .14);
}

.intro__card {
  padding: clamp(26px, 4vw, 42px);
  border-left: 8px solid var(--red);
}

.intro__card p {
  margin: 0 0 18px;
  font-size: 1.13rem;
  line-height: 1.7;
}

.intro__card p:last-child { margin-bottom: 0; }

.script-text {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.3vw, 2.65rem) !important;
  font-weight: 900;
  font-style: italic;
  line-height: 1.15 !important;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-kicker { justify-content: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 173, 59, .34), transparent 67%);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green), var(--red));
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(14, 11, 8, .16);
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: #594021;
  line-height: 1.58;
}

.banner {
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(228, 173, 59, .22), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--black) 52%, var(--red-dark));
  border-block: 1px solid rgba(228, 173, 59, .42);
}

.banner__content {
  min-height: 270px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 52px 0;
}

.banner span {
  color: var(--gold-bright);
  font-size: 2.1rem;
}

.banner h2 {
  max-width: 980px;
  margin-top: 12px;
  font-size: clamp(2.3rem, 5.2vw, 5.25rem);
  font-style: italic;
  line-height: .98;
}

.banner p {
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.poster-section__grid { grid-template-columns: .92fr .72fr; }

.poster-section__copy { padding: clamp(26px, 4vw, 40px); }

.poster-section__copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: #543b1f;
  font-size: 1.08rem;
  line-height: 1.68;
}

.palette {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.palette__color {
  width: 48px;
  height: 48px;
  display: inline-block;
  border: 4px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(14, 11, 8, .18);
}

.palette__color--green { background: var(--green); }
.palette__color--red { background: var(--red); }
.palette__color--cream { background: var(--cream); }
.palette__color--gold { background: var(--gold); }
.palette__color--black { background: var(--black); }

.official-poster { margin: 0; }
.official-poster figcaption {
  margin-top: 12px;
  color: #5b3d1b;
  font-size: .96rem;
  font-weight: 800;
  text-align: center;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .25), rgba(14, 11, 8, .08)),
    radial-gradient(circle at left bottom, rgba(4, 107, 47, .18), transparent 34%),
    radial-gradient(circle at right bottom, rgba(201, 22, 23, .17), transparent 34%);
}

.contact__grid { grid-template-columns: 1fr .86fr; }

.contact__note {
  max-width: 640px;
  margin: 22px 0 0;
  color: #594021;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.65;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
}

.contact-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card__header > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green), var(--red));
  border-radius: 50%;
  font-size: 1.4rem;
}

.contact-card__header p { margin: 0; }
.contact-card__header h3 { margin: 0; color: var(--green-dark); font-size: 1.6rem; }

.phone-box {
  margin-bottom: 18px;
  padding: 20px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--black), var(--black-soft));
  border: 1px solid rgba(228, 173, 59, .56);
  border-radius: var(--radius-md);
}

.phone-box a {
  display: block;
  margin: 4px 0 14px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
}

.copy-btn {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-bright);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.contact-card .btn + .btn { margin-top: 12px; }

.footer {
  color: var(--cream);
  background: var(--black);
  border-top: 1px solid rgba(228, 173, 59, .36);
}

.footer__grid {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.footer strong { color: var(--gold-bright); font-size: 1.15rem; }
.footer p { margin: 8px 0 0; color: rgba(255, 241, 199, .8); }
.footer__contact { display: grid; gap: 6px; text-align: right; font-weight: 900; }
.footer__contact a { color: var(--gold-bright); font-size: 1.4rem; }

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, #138f35, #22c45e);
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(14, 11, 8, .24);
  font-weight: 900;
}

.float-whatsapp::before { content: "☎"; margin-right: 8px; }

.top-button {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(14, 11, 8, .9);
  border: 1px solid rgba(228, 173, 59, .65);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  cursor: pointer;
}

.top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero__grid,
  .intro__grid,
  .poster-section__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .hero__poster { max-width: 560px; margin-inline: auto; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .topbar__content {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 8px 0;
    text-align: center;
  }

  .nav__toggle { display: block; }

  .nav__menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 128px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(14, 11, 8, .98);
    border: 1px solid rgba(228, 173, 59, .46);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__menu a {
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .hero { min-height: auto; padding: 54px 0 72px; }
  .info-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 70px 0; }
  .brand__text { font-size: .84rem; }
  .brand__text small { font-size: .64rem; }
  .brand__badge { width: 42px; height: 42px; font-size: 1.25rem; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.8rem); }
  .hero__actions { display: grid; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .phone-box a { font-size: clamp(2rem, 11vw, 3rem); }
  .footer__grid { flex-direction: column; align-items: flex-start; }
  .footer__contact { text-align: left; }
  .float-whatsapp { width: 58px; padding: 0; font-size: 0; }
  .float-whatsapp::before { margin: 0; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
