﻿@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --teal: #89409a;
  --teal-dark: #6f2f82;
  --teal-deep: #4b1d5f;
  --ink: #000000;
  --white: #ffffff;
  --orange: #ffaa01;
  --bar-blue: #89409a;
  --shadow: rgba(0, 0, 0, 0.2);
  --button-green: #1c8c3a;
  --button-green-dark: #16732f;
  --button-green-muted: #b8dfc4;
  --button-green-light: #4fbe6c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gotham", "Kanit", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(90deg, var(--bar-blue), #6d2f7f);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.topbar {
  font-size: 12px;
  letter-spacing: 12px;
  text-transform: uppercase;
  background: var(--bar-blue);
  color: rgba(255, 255, 255, 0.9);
}

.topbar .frame {
  text-align: center;
  padding: 10px 6vw;
}

.frame {
  width: min(100%, 1920px);
  margin: 0 auto;
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: #ffffff;
  color: var(--ink);
}

.brand img {
  width: 260px;
  height: auto;
}

.nav-toggle {
  display: none;
}

.nav-toggle-btn {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-cta[hidden],
.auth-cta[hidden],
.nav-user[hidden],
.auth-menu[hidden] {
  display: none;
}

.is-authenticated [data-auth-login-group] {
  display: none;
}

.auth-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.auth-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: 10px;
}

.auth-cta--text a {
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  position: relative;
}

.auth-cta--text a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.auth-cta--text a:hover::after {
  transform: scaleX(1);
}

.nav-user {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--bar-blue);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 20px rgba(16, 51, 48, 0.25);
}

.nav-user.has-photo .nav-user-initials {
  opacity: 0;
}

.nav-user-initials {
  font-size: 14px;
}

.auth-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 220px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 20px 40px rgba(4, 72, 68, 0.2);
  border: 1px solid rgba(4, 72, 68, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 30;
}

.auth-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.auth-menu-header {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.auth-menu-header strong {
  font-size: 14px;
}

.auth-menu-header span {
  font-size: 12px;
  color: #557370;
}

.auth-menu-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: #2c1535;
  background: #f7eef9;
  margin-bottom: 8px;
  font-size: 13px;
}

.auth-menu-logout {
  width: 100%;
  border: none;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffedc2;
  color: #7b4d00;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 640px) {
  .auth-slot {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 6px;
  }

  .nav-user {
    pointer-events: none;
    width: 34px;
    height: 34px;
  }

  .auth-menu {
    position: static;
    margin: 0;
    min-width: 0;
    width: auto;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .auth-menu-header {
    text-align: left;
    gap: 1px;
    margin-bottom: 4px;
  }

  .auth-menu-header strong {
    display: block;
    background: transparent;
    color: #1b1b1b;
    padding: 0;
    margin: 0;
    font-size: 13px;
  }

  .auth-menu-header span {
    display: block;
    font-size: 11px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .auth-menu-link,
  .auth-menu-logout {
    padding: 0;
    font-size: 12px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #1b1b1b;
    text-align: left;
  }

  .auth-menu-link {
    margin: 0 0 6px;
  }

  .auth-menu-logout {
    width: auto;
    margin: 0;
    font-weight: 500;
    cursor: pointer;
  }
}

.nav-cart-button {
  border: none;
  background: var(--bar-blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 51, 48, 0.2);
}

.nav-cart-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffffff, #ffe9b4);
  position: relative;
}

.nav-cart-icon::before,
.nav-cart-icon::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 3px;
}

.nav-cart-icon::before {
  width: 12px;
  height: 8px;
  left: 3px;
  top: 5px;
}

.nav-cart-icon::after {
  width: 6px;
  height: 2px;
  left: 6px;
  top: 3px;
}

.nav-cart-badge {
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #7a1f2b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(255, 170, 1, 0.35);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--ink);
  box-shadow: none;
}

.nav-links a.nav-cta {
  padding-bottom: 0;
}

.nav-links a.nav-cta::after {
  content: none;
}

.hero-stage {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.page-section {
  display: grid;
  justify-items: center;
  padding: 120px 0 80px;
}

.page-section + .page-section {
  padding-top: 80px;
}

.hero-section {
  padding-top: 160px;
}

.section-frame {
  width: min(1200px, 100%);
  padding: 0 6vw;
}

.hero-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 60px var(--shadow);
  border-radius: 24px;
}


.hero-cta {
  justify-self: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 12px 24px rgba(255, 170, 1, 0.35);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.section-two-stage,
.section-three-stage,
.section-four-stage {
  display: grid;
  justify-items: center;
  gap: 16px;
}


.section-two-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 60px var(--shadow);
  border-radius: 24px;
}

.section-cta {
  position: static;
  justify-self: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 170, 1, 0.35);
}

.section-three-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 60px var(--shadow);
  border-radius: 24px;
}

.section-cta:hover {
  transform: translateY(-1px);
}

.section-four-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 60px var(--shadow);
  border-radius: 24px;
}

.section-four-link,
.section-four-button {
  display: none;
}


.plan-section {
  padding: 140px 6vw 80px;
  background: #fff7e8;
  color: var(--ink);
}

.checkout-page-section {
  background: #ffffff;
  padding: 140px 6vw 120px;
}

.checkout-page .site-footer,
.checkout-page .whatsapp-float {
  display: none;
}

.checkout-container {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.checkout-back {
  color: #1c6b55;
  font-size: 13px;
  text-decoration: underline;
  justify-self: start;
}

.checkout-container h1 {
  font-size: 28px;
  color: #111111;
  margin-bottom: 8px;
}

.checkout-card-logos {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #335a57;
  font-weight: 700;
}

.checkout-card-logos span {
  background: #f4f4f4;
  border-radius: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.plan-pet {
  background: linear-gradient(135deg, #fff2d1, #f3e7f8);
}

.plan-agro {
  background: linear-gradient(135deg, #fff4db, #efe3f6);
}

.plan-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(4, 72, 68, 0.15);
}

.course-overview {
  display: grid;
  gap: 16px;
  align-content: start;
}

.donation-highlight {
  margin-top: 18px;
  background: linear-gradient(135deg, #fff1d6, #f6e8ff);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(137, 64, 154, 0.2);
  box-shadow: 0 18px 40px rgba(44, 21, 53, 0.12);
}

.donation-copy {
  display: grid;
  gap: 12px;
  text-align: center;
  color: #2c1535;
}

.donation-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bar-blue);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-self: center;
}

.donation-copy h3 {
  font-size: 24px;
  margin: 0;
}

.donation-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: #4d2f55;
}

.donation-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #3c2045;
}

.donation-list li {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(137, 64, 154, 0.12);
}

.donation-cta {
  justify-self: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(28, 140, 58, 0.25);
}

.doacoes-page main {
  padding-top: 180px;
}

.donation-simple {
  padding-top: 60px;
  padding-bottom: 120px;
  background: #ffffff;
}

.donation-simple .section-frame {
  padding-top: 0;
}

.donation-simple-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff6e4;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(137, 64, 154, 0.18);
  box-shadow: 0 24px 50px rgba(44, 21, 53, 0.16);
  display: grid;
  gap: 18px;
  text-align: center;
  margin-top: 20px;
}

.donation-simple-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.donation-simple-controls button {
  border: 1px solid rgba(137, 64, 154, 0.25);
  background: #ffffff;
  color: #5a2f66;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.donation-simple-title {
  margin: 0;
  font-size: 26px;
  color: #2c1535;
}

.donation-simple-images {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
}

.donation-simple-images img {
  width: min(320px, 80%);
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 250ms ease, transform 250ms ease;
  position: absolute;
}

.donation-simple-images img.is-active {
  opacity: 1;
  transform: translateY(0);
}

.donation-simple-progress {
  width: 100%;
  height: 14px;
  background: #ead6f2;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(137, 64, 154, 0.2);
  position: relative;
}

.donation-simple-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #89409a, #ffb02e);
  border-radius: 999px;
  width: 0%;
  transition: width 600ms ease;
  position: relative;
  z-index: 1;
}

.donation-simple-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #5a2f66;
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
}

.donation-simple-percent {
  font-size: 13px;
  font-weight: 700;
  color: #5a2f66;
}

@media (max-width: 640px) {
  .donation-simple-card {
    padding: 24px;
  }

  .donation-simple-images {
    height: 240px;
  }
}

.donation-goal-section {
  padding-top: 160px;
  padding-bottom: 120px;
  background: #ffffff;
}

.donation-goal-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff6e4;
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(137, 64, 154, 0.18);
  box-shadow: 0 24px 50px rgba(44, 21, 53, 0.16);
  display: grid;
  gap: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation-goal-header h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  color: #2c1535;
}

.donation-goal-header p {
  margin: 0;
  font-size: 15px;
  color: #4d2f55;
  line-height: 1.6;
}

.donation-progress {
  width: 100%;
  height: 14px;
  background: #ead6f2;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(137, 64, 154, 0.2);
}

.donation-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #89409a, #ffb02e);
  border-radius: 999px;
  width: 0%;
  transition: width 600ms ease;
}

.donation-goal-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #5a2f66;
}

.donation-goal-note {
  font-size: 12px;
  color: #4d2f55;
  margin: 0;
}

.donation-visual {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
}

.donation-dog {
  width: min(220px, 70%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 1;
}

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

.donation-house {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%)
    translateY(calc(100% - (var(--donation-progress, 0) * 1%)));
  width: min(220px, 70%);
  height: 140px;
  display: grid;
  place-items: end center;
  transition: transform 600ms ease;
  z-index: 2;
}

.donation-house-base {
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-radius: 16px 16px 10px 10px;
  border: 2px solid rgba(137, 64, 154, 0.25);
  box-shadow: 0 12px 26px rgba(44, 21, 53, 0.12);
}

.donation-house-roof {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 70px solid #f1d4a7;
  filter: drop-shadow(0 6px 10px rgba(44, 21, 53, 0.12));
}

@media (max-width: 640px) {
  .donation-visual {
    height: 190px;
  }

  .donation-house {
    height: 120px;
  }

  .donation-house-roof {
    border-left-width: 95px;
    border-right-width: 95px;
    border-bottom-width: 60px;
  }
}

@media (max-width: 640px) {
  .donation-goal-card {
    padding: 24px;
  }

  .donation-goal-meta {
    flex-direction: column;
    align-items: center;
  }
}

.course-card {
  border-radius: 18px;
  border: 1px solid rgba(137, 64, 154, 0.18);
  background: #f9f3fb;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.course-card h3 {
  font-size: 18px;
  color: #35163f;
}

.course-card p {
  font-size: 13px;
  color: #4f2d58;
  line-height: 1.5;
}

.course-progress-bar {
  width: 100%;
  height: 10px;
  background: #ead6f2;
  border-radius: 999px;
  overflow: hidden;
}

.course-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #89409a, #ffb02e);
  border-radius: 999px;
}

.course-progress-meta {
  font-size: 12px;
  color: #5a2f66;
  font-weight: 600;
}

.course-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.course-history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(137, 64, 154, 0.12);
  font-size: 13px;
  color: #3c2045;
}

.course-hub {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(137, 64, 154, 0.18);
  background: #fff6e4;
}

.course-hub--locked {
  position: relative;
  overflow: hidden;
}

.course-hub--locked .course-header,
.course-hub--locked .course-tabs,
.course-hub--locked .course-overview,
.course-hub--locked .course-layout,
.course-hub--locked .course-sidebar,
.course-hub--locked .course-library,
.course-hub--locked .course-module {
  filter: blur(3px);
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

.course-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

.course-sidebar {
  background: #ffffff;
  border: 1px solid rgba(137, 64, 154, 0.16);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.course-sidebar h4 {
  margin: 0;
  font-size: 16px;
  color: #2c1535;
}

.course-sidebar ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #4f2d58;
  font-size: 13px;
}

.course-library {
  display: grid;
  gap: 14px;
}

.course-module {
  border-radius: 16px;
  border: 1px solid rgba(137, 64, 154, 0.14);
  background: #ffffff;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.course-module h4 {
  margin: 0;
  color: #2c1535;
  font-size: 17px;
}

.course-module-links {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.course-module-links li {
  color: #4f2d58;
  font-size: 13px;
}

.course-netflix-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(137, 64, 154, 0.24), transparent 30%),
    radial-gradient(circle at 88% 5%, rgba(255, 176, 46, 0.24), transparent 28%),
    #150f1f;
  min-height: 100vh;
  padding-bottom: 42px;
}

.course-netflix-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.course-netflix-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 8, 16, 0.35), rgba(21, 15, 31, 0.95)),
    url("frontend/public/assets/images/telemedicina-veterinaria-24h-caes-gatos.png") center / cover no-repeat;
}

.course-netflix-hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 26px;
  color: #fffaf0;
}

.course-netflix-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #89409a;
  color: #fff7ed;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.course-netflix-hero-content h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  margin: 0 0 8px;
  color: #fff5e6;
}

.course-netflix-hero-content p {
  margin: 0;
  color: #ead7f1;
}

.course-netflix-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
}

.course-netflix-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(29, 20, 40, 0.86);
  backdrop-filter: blur(4px);
}

.course-netflix-sidebar h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #fff1d6;
}

.course-netflix-sidebar a {
  border-radius: 10px;
  padding: 9px 10px;
  color: #f3ddff;
  background: rgba(137, 64, 154, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
}

.course-netflix-sidebar a small {
  color: #d7b8e2;
}

.course-netflix-sidebar a.is-active {
  background: linear-gradient(90deg, #89409a, #ffb02e);
  color: #fffaf2;
  border-color: transparent;
}

.course-netflix-content {
  display: grid;
  gap: 18px;
}

.course-row {
  padding: 14px;
  border-radius: 16px;
  background: rgba(20, 13, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-row-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.course-row-header h2 {
  margin: 0;
  color: #fff3dc;
  font-size: 20px;
}

.course-row-header span {
  color: #d9c1e4;
  font-size: 13px;
}

.course-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.course-nx-card {
  display: grid;
  gap: 8px;
  border-radius: 13px;
  overflow: hidden;
  text-decoration: none;
  background: #251936;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffeeda;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-nx-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.34);
}

.course-nx-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-nx-card div {
  padding: 0 10px 12px;
}

.course-nx-card h4 {
  margin: 0 0 5px;
  font-size: 15px;
  color: #fff0de;
}

.course-nx-card p {
  margin: 0;
  font-size: 12px;
  color: #ddc3e8;
}

.course-gate {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16, 8, 22, 0.26);
  backdrop-filter: blur(5px);
}

.course-gate-card {
  width: min(560px, 100%);
  text-align: center;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 249, 234, 0.96);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 10px;
}

.course-gate-kicker {
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #5a2f66;
  font-weight: 700;
}

.course-gate-kicker::before {
  content: "\1F512  ";
}

.course-gate-card h3 {
  margin: 0;
  color: #24132c;
  font-size: 24px;
}

.course-gate-card p {
  margin: 0;
  color: #3f2450;
  line-height: 1.55;
}

.course-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.course-label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bar-blue);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.course-header h3 {
  font-size: 22px;
  color: #2c1535;
  margin: 6px 0 8px;
}

.course-header p {
  font-size: 14px;
  color: #4d2f55;
  line-height: 1.6;
}

.course-meta {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #5a2f66;
  text-align: right;
}

.course-tabs {
  background: #f4e7fb;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(137, 64, 154, 0.18);
}

.course-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.course-tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.course-tab-label {
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(137, 64, 154, 0.2);
  color: #3c2045;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.course-tab-label:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(44, 21, 53, 0.1);
}

.course-tab-panels {
  display: grid;
}

.course-tab-panel {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: start;
}

.course-video {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.course-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
}

.course-lesson-info {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(137, 64, 154, 0.12);
  display: grid;
  gap: 10px;
}

.course-lesson-info h4 {
  font-size: 18px;
  color: #2c1535;
}

.course-lesson-info p {
  font-size: 13px;
  color: #4f2d58;
  line-height: 1.5;
}

.course-lesson-meta {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #5a2f66;
  font-weight: 600;
}

.course-lesson-status.is-complete {
  color: #1f6a39;
}

.course-complete-button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--bar-blue);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  justify-self: start;
}

.course-complete-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(44, 21, 53, 0.2);
}

.course-complete-button:disabled {
  background: #cbb0d6;
  color: #111111;
  cursor: default;
  box-shadow: none;
}

#curso1-aula1:checked ~ .course-tab-controls label[for="curso1-aula1"],
#curso1-aula2:checked ~ .course-tab-controls label[for="curso1-aula2"],
#curso1-aula3:checked ~ .course-tab-controls label[for="curso1-aula3"] {
  background: var(--bar-blue);
  color: var(--white);
  border-color: var(--bar-blue);
  box-shadow: 0 12px 22px rgba(137, 64, 154, 0.25);
}

#curso1-aula1:checked ~ .course-tab-panels [data-tab="curso1-aula1"],
#curso1-aula2:checked ~ .course-tab-panels [data-tab="curso1-aula2"],
#curso1-aula3:checked ~ .course-tab-panels [data-tab="curso1-aula3"] {
  display: grid;
}

@media (max-width: 720px) {
  .course-gate {
    padding: 14px;
  }

  .course-gate-card h3 {
    font-size: 20px;
  }

  .course-hub--locked .course-header,
  .course-hub--locked .course-tabs,
  .course-hub--locked .course-overview,
  .course-hub--locked .course-layout,
  .course-hub--locked .course-sidebar,
  .course-hub--locked .course-library,
  .course-hub--locked .course-module {
    filter: blur(2px);
  }

  .course-layout {
    grid-template-columns: 1fr;
  }

  .course-sidebar {
    position: static;
  }

  .course-netflix-shell {
    grid-template-columns: 1fr;
  }

  .course-netflix-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-netflix-sidebar h3 {
    grid-column: 1 / -1;
  }

  .course-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .course-card-grid {
    grid-template-columns: 1fr;
  }

  .course-netflix-sidebar {
    grid-template-columns: 1fr;
  }
}

.checkout-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(4, 72, 68, 0.15);
}

.checkout-shell--netflix {
  width: min(980px, 100%);
  grid-template-columns: 1fr 1.15fr;
  border-radius: 26px;
  padding: 46px;
  gap: 36px;
  box-shadow: 0 28px 60px rgba(4, 72, 68, 0.18);
}

.checkout-summary {
  display: grid;
  gap: 16px;
}

.checkout-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7f5f0;
  border: 1px solid rgba(16, 51, 48, 0.08);
}

.checkout-plan-name {
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 6px;
}

.checkout-plan-period {
  font-size: 12px;
  color: #557370;
}

.checkout-plan-price {
  font-size: 16px;
  color: #1c8c3a;
}

.checkout-change {
  font-size: 12px;
  color: #1c6b55;
  text-decoration: underline;
  justify-self: start;
}

.checkout-summary h2,
.checkout-form h2 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--ink);
}

.checkout-items {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form--netflix h2 {
  margin-bottom: 6px;
}

.checkout-step {
  font-size: 12px;
  color: #557370;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 51, 48, 0.12);
}

.checkout-section h3 {
  font-size: 16px;
  color: #1c1c1c;
  margin-bottom: 4px;
}

.checkout-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #355a57;
}

.checkout-field input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 51, 48, 0.2);
  background: #ffffff;
}

.checkout-card-container {
  width: 100%;
  display: block;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 51, 48, 0.2);
  background: #ffffff;
  font: inherit;
  color: inherit;
}

.checkout-card-container iframe {
  min-height: 20px;
}

.checkout-field--hidden {
  display: none;
}

[hidden] {
  display: none !important;
}

.checkout-payments {
  display: grid;
  gap: 10px;
}

.checkout-payments--choice {
  gap: 12px;
}

.checkout-label {
  font-size: 12px;
  color: #557370;
  font-weight: 600;
}

.plan-option--disabled {
  opacity: 0.5;
  background: #f2f2f2;
}

.checkout-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: 12px;
  color: #3b5855;
}

.checkout-form--simple {
  display: grid;
  gap: 14px;
}

.checkout-link {
  font-size: 12px;
  color: #1c6b55;
  text-decoration: underline;
  justify-self: start;
}

.checkout-summary-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f4f4;
  padding: 12px 14px;
  border-radius: 8px;
}

.checkout-summary-mini strong {
  display: block;
  font-size: 14px;
  color: #111111;
}

.checkout-summary-mini span {
  font-size: 12px;
  color: #4b5c5a;
}

.checkout-disclaimer,
.checkout-terms {
  font-size: 12px;
  color: #3b5855;
  line-height: 1.5;
}

.checkout-terms a {
  color: #1c6b55;
  text-decoration: underline;
}

.plan-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bar-blue);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-copy h2 {
  margin: 16px 0 12px;
  font-size: 32px;
  color: var(--ink);
}

.plan-copy p {
  color: #355a57;
  line-height: 1.6;
  font-size: 15px;
}

.plan-price {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--bar-blue);
}

.plan-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.plan-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(16, 51, 48, 0.15);
  border-radius: 16px;
  padding: 14px 16px;
  background: #f9fffe;
  color: #1d4a47;
  font-size: 14px;
}

.plan-option input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--bar-blue);
}

.plan-option--custom {
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.plan-extra {
  grid-column: 2 / -1;
  margin-top: 8px;
}

.plan-input {
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(16, 51, 48, 0.2);
  width: 140px;
}

.plan-input:disabled {
  background: #eef6f5;
  color: #7a9794;
}

.plan-confirm {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.plan-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(242, 122, 24, 0.35);
}

.plan-feedback {
  min-height: 18px;
  font-size: 13px;
  color: #b4441d;
}

.cart-section {
  padding: 80px 6vw 100px;
  background: linear-gradient(120deg, #89409a, #000000);
  color: var(--white);
}

.cart-panel {
  position: fixed;
  top: 110px;
  right: 6vw;
  width: min(360px, 92vw);
  background: #ffffff;
  color: var(--ink);
  border-radius: 22px;
  padding: 20px 20px 18px;
  box-shadow: 0 24px 50px rgba(4, 72, 68, 0.3);
  border: 1px solid rgba(4, 72, 68, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 25;
}

.cart-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-panel-header h3 {
  font-size: 20px;
}

.cart-panel-close {
  border: none;
  background: #eff7f6;
  color: #1d4a47;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cart-checkout {
  width: 100%;
  margin-top: 16px;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 170, 1, 0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cart-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 170, 1, 0.4);
}

.auth-section {
  padding: 140px 6vw 80px;
  background: linear-gradient(120deg, #fff7e8, #f5ecfb);
  color: var(--ink);
}

.auth-card {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 60px rgba(4, 72, 68, 0.2);
}

.auth-panel {
  padding: 48px 42px;
  display: grid;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.auth-panel--accent {
  background: linear-gradient(135deg, var(--button-green), var(--button-green-light));
  color: var(--white);
}

.auth-panel--accent h2 {
  font-size: 28px;
}

.auth-panel--form h2 {
  font-size: 26px;
  color: var(--ink);
}

.auth-panel--form p {
  color: #46625f;
}

.auth-panel-link {
  justify-self: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-weight: 600;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.auth-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #3e5a57;
  text-align: left;
}

.auth-field input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(16, 51, 48, 0.2);
}

.auth-submit {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(242, 122, 24, 0.35);
}

.auth-secondary {
  border: 1px solid rgba(16, 51, 48, 0.2);
  border-radius: 999px;
  padding: 10px 16px;
  background: #ffffff;
  color: #234542;
  font-weight: 600;
  cursor: pointer;
}

.auth-link {
  background: none;
  border: none;
  color: var(--bar-blue);
  font-weight: 600;
  cursor: pointer;
}

.auth-feedback {
  min-height: 18px;
  font-size: 13px;
  color: #b4441d;
}

.auth-switch {
  font-size: 13px;
  color: #3b5855;
}

.auth-switch a {
  color: var(--bar-blue);
  font-weight: 600;
}

.cart-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.cart-shell h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
}

.cart-empty {
  opacity: 0.8;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    justify-self: start;
  }

  .nav-toggle-btn {
    display: inline-flex;
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(16, 51, 48, 0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle-btn span,
  .nav-toggle-btn span::before,
  .nav-toggle-btn span::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .nav-toggle-btn span::before {
    position: absolute;
    top: -7px;
  }

  .nav-toggle-btn span::after {
    position: absolute;
    top: 7px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    display: grid;
    gap: 10px;
    padding: 14px 5vw 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-links a,
  .auth-cta--text a {
    font-size: 13px;
    line-height: 1.25;
  }

  .nav-links .nav-cta {
    justify-self: start;
    width: fit-content;
  }

  .auth-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span::before {
    transform: translateY(7px) rotate(45deg);
    opacity: 1;
  }

  .nav-toggle:checked ~ .nav-toggle-btn span::after {
    transform: translateY(-7px) rotate(-45deg);
    opacity: 1;
  }

  .plan-shell {
    grid-template-columns: 1fr;
  }

  .course-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-meta {
    text-align: left;
  }

  .course-tab-panel {
    grid-template-columns: 1fr;
  }

  .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    padding: 36px 28px;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 640px) {
  .plan-section {
    padding-top: 140px;
  }

  .auth-section {
    padding-top: 140px;
  }

  .topbar {
    letter-spacing: 6px;
    font-size: 10px;
  }

  .brand img {
    width: 210px;
  }

  .page-section {
    padding: 110px 0 50px;
  }

  .hero-section {
    padding-top: 140px;
  }

  .section-frame {
    padding: 0 5vw;
  }

  .info-frame {
    padding: 28px 6vw 0;
  }

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

  .info-footer {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

.admin-panel {
  margin-top: 24px;
  width: 100%;
}

.admin-feedback {
  color: #c0392b;
  min-height: 20px;
  margin-bottom: 12px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #ffffff;
}

.admin-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-info strong {
  font-weight: 700;
}

.admin-status {
  font-weight: 600;
  color: #2c3e50;
}

.admin-approve {
  border: none;
  background: #1a1a1a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.admin-approve:disabled {
  opacity: 0.6;
  cursor: default;
}

.admin-approve:not(:disabled):hover {
  transform: translateY(-1px);
}

body.apex-landing {
  font-family: "Epilogue", "Kanit", "Trebuchet MS", sans-serif;
  color: #141414;
  background: #f7f2ea;
}

.apex-landing .site-header {
  background: #f7f2ea;
  box-shadow: 0 12px 40px rgba(35, 20, 16, 0.12);
}

.apex-landing .nav {
  background: #f7f2ea;
}

.apex-landing .social-proof-bar {
  background: #1e3b32;
  color: #f4efe8;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.apex-landing .social-proof-bar .frame {
  text-align: center;
  padding: 10px 6vw;
}

.apex-landing .nav-links {
  color: #1b1b1b;
}

.apex-nav-links {
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-menu--center {
  justify-content: center;
  flex: 0 1 auto;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-actions--right {
  justify-content: flex-end;
}

.apex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.apex-btn--primary {
  background: linear-gradient(90deg, #3add7f 0%, #0f5f34 50%, #3add7f 100%);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(15, 107, 60, 0.45),
    0 0 18px rgba(58, 221, 127, 0.45);
}

.apex-btn--burgundy {
  background: #7a1f2b;
  color: #fff5f0;
  box-shadow: 0 12px 25px rgba(122, 31, 43, 0.35);
}

.apex-btn--outline {
  border: 2px solid #3add7f;
  color: #ffffff;
  background: linear-gradient(90deg, #3add7f 0%, #0f5f34 50%, #3add7f 100%);
  box-shadow: 0 10px 22px rgba(15, 107, 60, 0.4),
    0 0 16px rgba(58, 221, 127, 0.35);
}

.apex-btn--ghost {
  border: 1px solid rgba(28, 107, 85, 0.4);
  color: #1c6b55;
  background: rgba(255, 255, 255, 0.7);
}

.apex-nav .nav-actions .apex-btn {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.apex-nav .nav-actions .apex-btn--burgundy {
  background: linear-gradient(135deg, var(--button-green), #2ab44f);
  border: 1px solid rgba(18, 74, 30, 0.35);
  box-shadow: 0 12px 26px rgba(28, 140, 58, 0.35);
}

.apex-nav .nav-actions .apex-btn--burgundy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0.45;
  transform: translateX(-35%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.apex-nav .nav-actions .apex-btn--burgundy:hover::after {
  transform: translateX(0);
  opacity: 0.7;
}

.apex-nav .nav-actions .apex-btn--outline {
  background: rgba(28, 140, 58, 0.1);
  border: 1.5px solid rgba(28, 140, 58, 0.7);
  color: #0f3d1b;
  box-shadow: 0 10px 20px rgba(16, 64, 28, 0.15);
}

.is-authenticated .nav-cta-signup {
  display: none;
}

.apex-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 107, 60, 0.5),
    0 0 22px rgba(58, 221, 127, 0.5);
}

.cta-glow {
  position: relative;
  animation: cta-pulse 1.8s ease-in-out infinite;
  box-shadow: 0 16px 30px rgba(28, 140, 58, 0.35);
}

.cta-glow::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(28, 140, 58, 0.25), transparent 65%);
  opacity: 0;
  animation: cta-glow 1.8s ease-in-out infinite;
  z-index: -1;
}

.apex-landing .apex-btn::after {
  content: none;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 140px;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video iframe,
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 0;
  color: #f7f2ea;
  display: grid;
  gap: 12px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  justify-self: start;
  align-self: end;
  padding-bottom: 80px;
  margin-left: 10%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 232, 0.4);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
}

.hero h1 {
  font-family: "Epilogue", "Kanit", "Trebuchet MS", sans-serif;
  font-size: clamp(22px, 3.6vw, 38px);
  line-height: 1.1;
}

.hero-title-bold,
.hero-title-medium,
.hero-title-regular {
  display: block;
}

.hero-title-bold {
  font-weight: 700;
}

.hero-title-medium {
  font-weight: 600;
}

.hero-title-regular {
  font-weight: 400;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  justify-items: start;
}

.hero-micro {
  font-size: 11px;
  opacity: 0.85;
}

.hero .apex-btn {
  padding: 8px 16px;
  font-size: 12px;
  justify-self: start;
  text-align: left;
  width: fit-content;
}

.donation-banner {
  padding: 26px 0 24px;
}

#apoie-causa {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.donation-banner .section-frame,
.donation-banner-frame {
  width: min(1520px, 100%);
  max-width: min(1520px, 100%);
  margin: 0 auto !important;
  padding: 0 2vw;
}

.donation-banner-card {
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
  isolation: isolate;
  border-radius: 28px;
  overflow: hidden;
  min-height: 620px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  background-image: linear-gradient(
      100deg,
      rgba(9, 31, 29, 0.82) 0%,
      rgba(36, 41, 25, 0.5) 44%,
      rgba(44, 28, 10, 0.24) 100%
    ),
    url("frontend/public/assets/images/doacao-abrigo-cao-telemedicina-veterinaria.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 44px rgba(9, 17, 10, 0.34);
}

.donation-banner-content {
  width: min(620px, 46vw);
  color: #f6efe2;
  text-align: left;
  margin-left: clamp(56px, 9vw, 170px);
  margin-top: 20px;
  padding: 52px 14px 52px 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.4);
}

.donation-banner-title {
  margin: 0;
  font-family: "Merriweather", "Epilogue", "Trebuchet MS", sans-serif;
  font-size: clamp(22px, 2.6vw, 40px);
  line-height: 1.14;
  letter-spacing: 0.2px;
  font-weight: 700;
}

.donation-banner-title span {
  display: block;
}

.donation-banner-divider {
  margin: 20px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  max-width: 520px;
}

.donation-banner-divider::before,
.donation-banner-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 239, 226, 0.5));
}

.donation-banner-divider::after {
  background: linear-gradient(90deg, rgba(246, 239, 226, 0.5), transparent);
}

.donation-banner-divider span {
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1;
}

.donation-banner-lead,
.donation-banner-copy {
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.35;
}

.donation-banner-lead {
  font-size: clamp(16px, 1.7vw, 27px);
  font-weight: 500;
}

.donation-banner-copy {
  margin-top: 22px;
  font-size: clamp(15px, 1.45vw, 24px);
  font-weight: 500;
}

.donation-banner-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
  min-width: clamp(220px, 28vw, 360px);
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 3vw, 34px);
  border-radius: 999px;
  border: 1px solid rgba(113, 255, 144, 0.34);
  background: linear-gradient(180deg, #1dc65d 0%, #0d8b3d 100%);
  color: #f7f3df;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 0.8px;
  box-shadow: 0 12px 26px rgba(5, 40, 17, 0.45), 0 0 25px rgba(224, 194, 79, 0.25);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.donation-banner-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(4, 35, 14, 0.54), 0 0 30px rgba(224, 194, 79, 0.45);
}

.section-block {
  padding: 90px 0;
}

.section-block.donation-banner {
  padding-top: 20px !important;
  padding-bottom: 14px !important;
}

.section-block.donation-banner + .section-block {
  padding-top: 20px;
}

#pet-destaque {
  margin-top: 0;
  padding-top: 20px !important;
}

#pet-destaque .section-frame {
  padding-top: 10px;
}

.donation-campaign {
  padding: 18px 0 8px;
}

.donation-campaign-frame {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 0 4vw;
}

.donation-campaign-card {
  border-radius: 28px;
  overflow: hidden;
  background-image: linear-gradient(
      100deg,
      rgba(9, 26, 24, 0.85) 0%,
      rgba(42, 36, 20, 0.62) 52%,
      rgba(57, 36, 16, 0.4) 100%
    ),
    url("frontend/public/assets/images/doacao-abrigo-cao-telemedicina-veterinaria.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(15, 24, 14, 0.3);
}

.donation-campaign-content {
  width: min(700px, 100%);
  box-sizing: border-box;
  padding: clamp(28px, 4vw, 58px);
  color: #f4ecd9;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.donation-campaign-title {
  margin: 0;
  font-family: "Merriweather", "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  text-align: center;
}

.donation-campaign-title span {
  display: block;
}

.donation-campaign-divider {
  margin: 18px auto 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.donation-campaign-divider::before,
.donation-campaign-divider::after {
  content: "";
  height: 1px;
  background: rgba(244, 236, 217, 0.34);
}

.donation-campaign-divider span {
  font-size: 22px;
}

.donation-campaign-copy {
  margin: 0;
  text-align: center;
  font-size: clamp(16px, 1.9vw, 28px);
  line-height: 1.4;
}

.donation-campaign-lead {
  margin: 0 auto 10px;
  text-align: center;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.35;
  max-width: 620px;
}

.donation-campaign-progress-header {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.4vw, 21px);
}

.donation-campaign-percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(238, 202, 104, 0.92);
  color: #483410;
  font-weight: 800;
}

.donation-campaign-progress {
  margin-top: 8px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(230, 205, 138, 0.6);
  background: rgba(18, 37, 25, 0.5);
  overflow: hidden;
}

.donation-campaign-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d2b45a 0%, #f6e8a7 55%, #d5a63f 100%);
  transition: width 320ms ease;
}

.donation-campaign-meta {
  margin: 10px 0 0;
  text-align: center;
  font-size: clamp(14px, 1.3vw, 20px);
}

.donation-campaign-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.donation-campaign-stat {
  border: 1px solid rgba(230, 205, 138, 0.45);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(21, 50, 36, 0.45);
  text-align: center;
}

.donation-campaign-stat strong {
  display: block;
  font-size: clamp(17px, 1.7vw, 24px);
}

.donation-campaign-stat span {
  font-size: clamp(13px, 1.1vw, 17px);
}

.donation-campaign-action {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.donation-campaign-action label {
  font-size: 13px;
  letter-spacing: 0.4px;
}

.donation-campaign-action input {
  width: min(220px, 100%);
  border: 1px solid rgba(235, 215, 153, 0.5);
  border-radius: 999px;
  background: rgba(16, 36, 27, 0.72);
  color: #f7f0dd;
  padding: 9px 14px;
  text-align: center;
  font-weight: 700;
}

.donation-campaign-btn,
.donation-campaign-copy-btn {
  border: 1px solid rgba(123, 235, 143, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, #1ec95f 0%, #0c8739 100%);
  color: #f4f0dc;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 11px 26px;
  cursor: pointer;
}

.donation-campaign-qr {
  margin-top: 14px;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.donation-campaign-qr img {
  width: min(220px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(235, 215, 153, 0.5);
  background: #ffffff;
  padding: 8px;
}

.donation-campaign-qr textarea {
  width: min(460px, 100%);
  min-height: 72px;
  border: 1px solid rgba(235, 215, 153, 0.5);
  border-radius: 10px;
  padding: 8px 10px;
  resize: vertical;
  background: rgba(16, 36, 27, 0.72);
  color: #f7f0dd;
}

.donation-campaign-feedback {
  margin-top: 8px;
  min-height: 24px;
  text-align: center;
  font-size: 13px;
}

.doacoes-page .donation-campaign {
  padding-top: 0;
  padding-bottom: 28px;
  margin-top: -16px;
}

.doacoes-page .donation-campaign-frame {
  width: min(1020px, 100%);
  padding: 0 clamp(12px, 2.2vw, 26px);
}

.doacoes-page .donation-campaign-card {
  border-radius: 22px;
  background-image: linear-gradient(180deg, #163327 0%, #10261d 100%);
  background-size: auto;
  background-position: initial;
  box-shadow: 0 18px 36px rgba(9, 19, 14, 0.34);
}

.doacoes-page .donation-campaign-content {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  padding: clamp(24px, 2.8vw, 34px) clamp(16px, 2.4vw, 24px) 30px;
}

.doacoes-page .donation-campaign-progress-header {
  justify-content: center;
  gap: 20px;
}

.doacoes-page .donation-campaign-title {
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.doacoes-page .donation-campaign-title span {
  white-space: normal;
}

@media (max-width: 640px) {
  .doacoes-page .donation-campaign-title {
    font-size: clamp(18px, 6.2vw, 24px);
    line-height: 1.12;
  }

  .doacoes-page .donation-campaign-title span {
    white-space: normal;
  }
}

@media (max-width: 1200px) {
  .doacoes-page .donation-campaign-frame {
    width: min(980px, 100%);
  }

  .doacoes-page .donation-campaign-content {
    max-width: 860px;
  }

  .doacoes-page .donation-campaign-title {
    font-size: clamp(18px, 2.4vw, 28px);
  }
}

.doacoes-page .donation-campaign-copy {
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 20px);
}

.doacoes-page .donation-campaign-lead {
  font-size: clamp(16px, 1.45vw, 21px);
  max-width: 560px;
}

.doacoes-page .donation-campaign-meta {
  font-size: clamp(14px, 1.2vw, 18px);
}

.doacoes-page .donation-campaign-stat {
  background: rgba(24, 61, 45, 0.92);
  border-color: rgba(233, 213, 145, 0.45);
}

.doacoes-page .donation-campaign-action input {
  width: min(300px, 100%);
  font-size: clamp(20px, 2.4vw, 28px);
  padding: 12px 18px;
}

.doacoes-page .donation-campaign-btn {
  min-width: 300px;
  font-size: clamp(16px, 1.4vw, 20px);
  padding: 12px 24px;
}

.doacoes-page .donation-campaign-feedback {
  margin-top: 10px;
  font-size: 15px;
}

@media (max-width: 800px) {
  .donation-campaign-frame {
    padding: 0 3vw;
  }

  .donation-campaign-card {
    border-radius: 16px;
  }

  .donation-campaign-stats {
    grid-template-columns: 1fr;
  }

  .donation-campaign-progress-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

#agro-destaque {
  padding-bottom: 0;
}

.section-block.founders {
  background: #f7f2ea;
  background-image: url("frontend/public/assets/images/fundo-telemedicina-veterinaria-secundario.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  padding-top: 150px;
}

.founders-title {
  text-align: center;
  font-family: "Epilogue", "Kanit", "Trebuchet MS", sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  color: #111111;
  max-width: 900px;
  margin: 18px auto 14px;
  font-weight: 800;
  position: relative;
  z-index: 0;
  transform: translateY(28px);
  white-space: normal;
}

.founders-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #7a1f2b;
  color: #fff5f0;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.founders-subtitle {
  margin: 8px auto 0;
  text-align: center;
  font-size: 16px;
  color: #111111;
  max-width: 820px;
  line-height: 1.75;
  margin-bottom: 12px;
  transform: translateY(24px);
}

.founders-subtitle strong {
  font-weight: 800;
}

.founders-title-pill {
  display: block;
  width: fit-content;
  margin: 12px auto 0;
  background: #1d3e23;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 0;
  font-weight: 300;
  font-size: clamp(18px, 2.6vw, 26px);
  letter-spacing: 4px;
}

.founders-title-sub {
  display: block;
  margin: 6px auto 0;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #111111;
}

.founders-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  margin-top: 6px;
}

.about-extra {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}

.about-extra-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-extra-split--reverse {
  grid-template-areas: "text image";
}

.about-extra-split--reverse .about-extra-text {
  grid-area: text;
}

.about-extra-split--reverse .about-extra-image {
  grid-area: image;
}

.about-extra-image {
  width: 100%;
  min-height: 260px;
  border-radius: 18px;
  background: #e9ecef;
  border: 2px dashed #c8ced4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.about-extra-image--vision {
  aspect-ratio: 9 / 16;
  width: min(360px, 100%);
  min-height: 0;
  justify-self: center;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 0;
}

.about-extra-text h3 {
  font-family: "Epilogue", "Kanit", "Trebuchet MS", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
  color: #111111;
}

.about-extra-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b4b4b;
  margin-bottom: 12px;
}

.about-extra-center {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.about-extra-image--center {
  width: min(760px, 100%);
  max-width: 760px;
  height: auto;
  min-height: 360px;
  display: block;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 22px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  background-color: transparent;
}

.about-extra-center-text {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  color: #4b4b4b;
}

.about-extra-center-title {
  font-family: "Epilogue", "Kanit", "Trebuchet MS", sans-serif;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  margin: 2px 0 2px;
  color: #111111;
}

.founders-rect {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}

.founders-cta {
  position: absolute;
  top: 460px;
  left: 35%;
  right: auto;
  transform: translateX(-50%);
  z-index: 3;
  width: max-content;
}

.founders-subtitle {
  margin: 8px auto 0;
}
.founders-figures {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 100%;
  z-index: 2;
  display: block;
}

.founder {
  position: absolute;
  bottom: 0;
  display: grid;
  align-items: end;
  z-index: 1;
}

.founder-photo {
  -webkit-mask-image: linear-gradient(#000, #000),
    url("frontend/public/assets/images/moldura-equipe-telemedicina-veterinaria.png");
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-position: center top, center bottom;
  -webkit-mask-size: 100% 100%, 100% 60%;
  -webkit-mask-composite: source-over;
  mask-image: linear-gradient(#000, #000),
    url("frontend/public/assets/images/moldura-equipe-telemedicina-veterinaria.png");
  mask-repeat: no-repeat, no-repeat;
  mask-position: center top, center bottom;
  mask-size: 100% 100%, 100% 60%;
  mask-composite: add;
}

.founder-photo img {
  width: clamp(276px, 41.4vw, 460px);
  height: auto;
  display: block;
  transition: transform 220ms ease;
}

.founder-info {
  position: absolute;
  top: 35%;
  left: 82%;
  transform: translateY(-50%) translateX(8px);
  background: transparent;
  color: #ffffff;
  padding: 0;
  width: min(260px, 48vw);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease 120ms, transform 220ms ease 120ms;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-connector {
  position: relative;
  flex: 0 0 90px;
  align-self: center;
  height: 34px;
  width: 90px;
}

.founder-connector::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 28px;
  border-left: 2px solid #7a1f2b;
  border-top: 2px solid #7a1f2b;
  border-radius: 0;
  transform-origin: left top;
  transform: scale(0);
  opacity: 0;
  transition: transform 220ms ease, opacity 120ms ease;
}

.founder-connector::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7a1f2b;
  box-shadow: 64px -28px 0 0 #7a1f2b;
  transform: scale(0);
  opacity: 0;
  transition: transform 180ms ease 80ms, opacity 120ms ease 80ms;
}

.connector-line {
  display: none;
}

.founder-name {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  background: #7a1f2b;
  color: #fff5f0;
  padding: 8px 14px;
  border-radius: 8px;
  width: fit-content;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 220ms ease, transform 220ms ease;
  margin-top: 0;
}

.founder-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #111111;
  text-shadow: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.founder-text {
  display: grid;
  gap: 6px;
  align-content: start;
}

@media (min-width: 641px) {
  .founder:hover .founder-info {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  .founder:hover .founder-connector::before {
    transform: scale(1);
    opacity: 1;
  }

  .founder:hover .founder-connector::after {
    transform: scale(1);
    opacity: 1;
  }

  .founder:hover .founder-name {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 420ms;
  }

  .founder:hover .founder-desc {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 520ms;
  }
}

.founder:hover {
  z-index: 3;
}

.founder:hover .founder-photo img {
  transform-origin: bottom center;
  transform: scale(1.12);
}

.founder:hover .founder-photo {
  -webkit-mask-image: none;
  mask-image: none;
}

.founder--tati {
  right: 7%;
}

.founder--bruna {
  left: 7%;
}

.founder--bruna .founder-info {
  left: auto;
  right: 88%;
  transform: translateY(-50%) translateX(-28px);
  text-align: right;
  flex-direction: row-reverse;
}

.founder--bruna .founder-connector {
  transform: scaleX(-1);
}

.founder--tati .founder-text {
  margin-left: 5px;
  text-align: left;
}

.founder--tati .founder-info {
  left: 88%;
  transform: translateY(-50%) translateX(18px);
}

.founder--bruna .founder-text {
  margin-right: 5px;
}

.founder--bruna .founder-desc {
  font-size: 15px;
  max-width: 220px;
}



.section-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: #6a5a46;
}

.section-heading h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1a1411;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.section-card {
  background: #fffaf2;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(35, 20, 16, 0.1);
  display: grid;
  gap: 14px;
}

.section-card h3 {
  font-size: 22px;
  color: #3a2b1b;
}

.section-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #47392a;
}

.founders-image {
  background: linear-gradient(140deg, #efe1c5, #1e3b32);
  border-radius: 28px;
  padding: 30px;
  min-height: 280px;
  display: grid;
  align-items: center;
  color: #f7f2ea;
  box-shadow: 0 20px 45px rgba(30, 59, 50, 0.25);
}

.founder-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.founder-card strong {
  font-size: 18px;
}

.plans {
  background: #f2efe8;
}

.plan-tabs {
  background: #fffaf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(35, 20, 16, 0.12);
  font-family: "Gotham", "Kanit", "Trebuchet MS", sans-serif;
}

.plan-stack {
  display: grid;
  gap: 28px;
}

.plan-panel {
  background: #fffaf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(35, 20, 16, 0.12);
}

.plan-panel--spaced {
  margin-top: 10px;
}

.plan-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(122, 31, 43, 0.2);
  background: transparent;
  color: #3a2b1b;
  font-size: 12px;
  font-weight: 600;
}

.plan-pill.is-active {
  background: #7a1f2b;
  color: #fff5f0;
  border-color: #7a1f2b;
  box-shadow: 0 10px 20px rgba(122, 31, 43, 0.2);
}

.plan-tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-tab-controls {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.plan-tab-controls label {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(122, 31, 43, 0.2);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 150ms ease;
}

#tab-urbano:checked ~ .plan-tab-controls label[for="tab-urbano"],
#tab-rural:checked ~ .plan-tab-controls label[for="tab-rural"] {
  background: #7a1f2b;
  color: #fff5f0;
  border-color: #7a1f2b;
  box-shadow: 0 10px 20px rgba(122, 31, 43, 0.2);
}

.plan-tab-panels {
  display: grid;
}

.plan-panel {
  display: none;
  gap: 20px;
}

.plan-panel-header h3 {
  font-size: 22px;
  color: #1b1b1b;
  font-weight: 700;
}

.plan-panel-header p {
  color: #5b4a36;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
}

.plan-media {
  display: grid;
  place-items: center;
}

.plan-media-image {
  width: min(420px, 100%);
  border-radius: 26px;
  display: block;
  box-shadow: 0 18px 40px rgba(35, 20, 16, 0.15);
}

.plan-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.plan-list {
  display: grid;
  gap: 14px;
}

.plan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 140, 58, 0.2);
}

.plan-row:last-child {
  border-bottom: none;
}

.plan-row-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.plan-row-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #7a1f2b;
  color: #fff5f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  animation: badge-blink 1.4s infinite;
}

.plan-row-title {
  font-weight: 600;
  color: #1c1c1c;
}

.plan-row-price {
  font-weight: 800;
  color: #1c8c3a;
}

.plan-row .apex-btn {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.4px;
  justify-self: end;
}

@media (max-width: 980px) {
  .plan-row {
    align-items: flex-start;
  }

  .plan-row .apex-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .plan-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .plan-row-info {
    justify-content: center;
    width: 100%;
  }

  .plan-row .apex-btn {
    justify-self: center;
  }

  .plan-row-badge {
    margin-inline: auto;
  }

  .plan-info-btn {
    text-align: center;
  }
}

.plan-note {
  font-size: 12px;
  color: #49645b;
}

.plan-layout--reverse {
  grid-template-columns: minmax(320px, 1.2fr) minmax(260px, 1fr);
}

.plan-layout--reverse .plan-media {
  order: 2;
}

.plan-layout--reverse .plan-copy {
  order: 1;
}

.plan-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(35, 20, 16, 0.12);
  display: grid;
  gap: 12px;
  position: relative;
}

.plan-card.is-featured {
  border: 2px solid #d4a84f;
  transform: translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #d4a84f;
  color: #1a1411;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan-card h4 {
  font-size: 18px;
  color: #3a2b1b;
}

.plan-card p {
  color: #5a4a37;
  font-size: 14px;
  line-height: 1.6;
}

.plan-note {
  font-size: 13px;
}

.plan-price {
  font-size: 24px;
  color: #7a1f2b;
  font-weight: 700;
}

#tab-urbano:checked ~ .plan-tab-panels [data-panel="tab-urbano"],
#tab-rural:checked ~ .plan-tab-panels [data-panel="tab-rural"] {
  display: grid;
}

.impact {
  background: #0f6b3c;
  color: #f4efe8;
  padding-top: 0;
}

.impact h2 {
  color: #f4efe8;
}

.impact-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.impact-subtitle {
  font-size: 18px;
  max-width: 640px;
  margin: 12px auto 0;
}

.impact-panel {
  background: rgba(7, 46, 26, 0.28);
  border-radius: 28px;
  padding: 32px 28px 30px;
  text-align: center;
  box-shadow: 0 26px 60px rgba(6, 32, 19, 0.28);
  margin-top: 36px;
}

.impact-title {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.impact-body {
  display: grid;
  gap: 10px;
  max-width: 660px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244, 239, 232, 0.88);
  text-align: center;
}

.impact-quote {
  margin-top: 18px;
  font-weight: 700;
  color: #f0fff5;
  font-size: clamp(16px, 2.1vw, 20px);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.impact-cards {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-card-image {
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.impact-card {
  background: transparent;
  color: #1d3e23;
  border-radius: 25px 25px 0 25px;
  padding: 18px 18px 54px;
  text-align: left;
  min-height: 172px;
  box-shadow: 0 16px 30px rgba(6, 20, 12, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ffffff;
  border-radius: 25px 25px 0 25px;
  -webkit-mask-image:
    linear-gradient(#000, #000),
    radial-gradient(circle 80px at 90% 100%, transparent 79px, #000 80px);
  mask-image:
    linear-gradient(#000, #000),
    radial-gradient(circle 80px at 90% 100%, transparent 79px, #000 80px);
  -webkit-mask-composite: source-in, xor;
  mask-composite: intersect, exclude;
  transition: all 0.5s;
  pointer-events: none;
}

.impact-card > * {
  position: relative;
  z-index: 1;
}

.impact-card:hover,
.impact-card.is-active {
  color: #ffffff;
}

.impact-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 36px rgba(6, 20, 12, 0.25);
}

.impact-card:hover::after,
.impact-card.is-active::after {
  background: var(--bs-primary);
}

.impact-card:hover,
.impact-card.is-active {
  color: #ffffff;
}

.impact-card:hover .impact-card-icon,
.impact-card.is-active .impact-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.impact-card:hover .impact-card-title,
.impact-card.is-active .impact-card-title {
  color: #ffffff;
}

.impact-card:hover .impact-card-text,
.impact-card.is-active .impact-card-text {
  color: rgba(255, 255, 255, 0.85);
}

.impact-card:hover .impact-card-arrow,
.impact-card.is-active .impact-card-arrow {
  background: #ffffff;
  color: var(--bs-primary);
}

.impact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(15, 107, 60, 0.12);
  color: #0f6b3c;
  display: grid;
  place-items: center;
}

.impact-card-icon svg {
  width: 22px;
  height: 22px;
}

.impact-card-title {
  font-size: 16px;
  margin: 12px 0 6px;
  color: #0f6b3c;
}

.impact-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(16, 50, 30, 0.82);
}

.impact-card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0f6b3c;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(15, 107, 60, 0.3);
}

.impact-card:hover .impact-card-icon,
.impact-card.is-active .impact-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.impact-card:hover .impact-card-title,
.impact-card.is-active .impact-card-title {
  color: #ffffff;
}

.impact-card:hover .impact-card-text,
.impact-card.is-active .impact-card-text {
  color: rgba(255, 255, 255, 0.85);
}

.impact-card:hover .impact-card-arrow,
.impact-card.is-active .impact-card-arrow {
  background: #ffffff;
  color: #1fb6e5;
}

.impact-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
}

.impact-cta .apex-btn {
  background: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  padding: 10px 18px;
  font-size: 13px;
  box-shadow: none;
}

.impact-cta .apex-btn--primary {
  background: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}

.impact-cta .apex-btn:hover {
  background: #ffffff !important;
  color: #0f6b3c !important;
}

.impact .apex-btn--primary {
  background: #0b4f2e;
  box-shadow: 0 14px 26px rgba(10, 45, 26, 0.45);
}

.impact .apex-btn--outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #f8fff9;
  background: transparent;
}

.impact-footnote {
  margin-top: 14px;
  font-size: 12.5px;
  opacity: 0.85;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 980px) {
  .impact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .impact-panel {
    padding: 26px 20px;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }

  .impact-card {
    min-height: auto;
  }
}

.faq {
  background: #fffaf2;
}

.faq .section-heading {
  text-align: center;
}

.faq .section-kicker {
  font-size: 22px;
  letter-spacing: 1.5px;
  text-transform: none;
  color: #0f6b3c;
}

.faq-list {
  display: grid;
  gap: 0;
  background: #1c8c3a;
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(12, 36, 20, 0.18);
  max-width: 620px;
  margin: 0 auto;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  padding: 10px 6px;
  box-shadow: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  color: #ffffff;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-item p {
  display: none;
  margin: 8px 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.6;
}

.faq-item[open] p {
  display: block;
}

.faq-item summary::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: center / contain no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.site-footer {
  background: #141414;
  color: #f4efe8;
  padding: 60px 0;
}

.about-page {
  background: #0f6b3c;
}

.about-hero {
  position: relative;
  padding: 140px 0 80px;
  color: #ffffff;
  overflow: hidden;
}

.about-hero-new {
  background: #f6efe4;
  padding: 120px 0 90px;
}

.about-hero-new-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  gap: 28px;
}

.about-hero-new-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(24, 20, 12, 0.25);
}

.about-hero-new-banner img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.about-hero-new-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0) 70%);
}

.about-hero-new-overlay h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
  max-width: 520px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.about-hero-new-body {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  color: #2b2b2b;
  line-height: 1.7;
  box-shadow: 0 16px 36px rgba(24, 20, 12, 0.18);
}

.about-hero-new-body p {
  margin: 0;
}

@media (max-width: 820px) {
  .about-hero-new-frame {
    align-items: start;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(58, 221, 127, 0.25), transparent 60%),
    linear-gradient(135deg, #0f6b3c 0%, #0c5a31 50%, #0f6b3c 100%);
  z-index: 0;
}

.about-hero-frame {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-hero-kicker {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 1.2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-hero-copy h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 16px;
}

.about-hero-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-photo {
  display: flex;
  justify-content: center;
}

.about-hero-photos {
  display: grid;
  gap: 16px;
  width: min(380px, 90%);
}

.about-hero-photos img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.about-story {
  background: #0c5a31;
  padding: 70px 0 90px;
}

.about-story-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about-story-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  box-shadow: 0 18px 40px rgba(4, 28, 15, 0.35);
}

.about-story-card h2 {
  margin-top: 0;
  color: #ffffff;
  font-size: 22px;
}

.about-story-card--highlight {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 18px;
}

.about-story-card--highlight .apex-btn--primary {
  justify-self: start;
}

.about-founders {
  background: #0e5f35;
  padding: 50px 0 70px;
}

.about-founders-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  gap: 28px;
}

.about-founders-header span {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-founders-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
}

.about-founders-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-founder-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(4, 28, 15, 0.35);
}

.about-founder-photo img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-founder-info h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
}

.about-founder-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.about-values {
  background: #0f6b3c;
  padding: 70px 0 100px;
}

.about-values-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-values-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  box-shadow: 0 18px 40px rgba(4, 28, 15, 0.35);
}

.about-values-card h2 {
  margin-top: 0;
  color: #ffffff;
  font-size: 22px;
}

.about-values-card strong {
  color: #ffffff;
}

.footer-frame {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-social h4 {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-seals span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 232, 0.3);
  font-size: 11px;
  margin: 6px 6px 0 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #ffffff;
  color: #0f6b3c;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(15, 107, 60, 0.25);
  box-shadow: 0 10px 22px rgba(15, 107, 60, 0.2);
  z-index: 30;
}

.audio-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(16, 13, 9, 0.55);
  color: #f7f2ea;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.audio-float svg {
  width: 22px;
  height: 22px;
}

.audio-float.is-muted::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background: currentColor;
  transform: rotate(-35deg);
  border-radius: 999px;
}

.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}

.exit-intent[hidden] {
  display: none;
}

.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.exit-card {
  position: relative;
  background: #fffaf2;
  padding: 28px;
  border-radius: 24px;
  width: min(460px, 90vw);
  display: grid;
  gap: 12px;
  z-index: 1;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.exit-intent--glow .exit-card {
  border: 2px solid rgba(28, 140, 58, 0.35);
  box-shadow: 0 24px 60px rgba(28, 140, 58, 0.25);
  animation: exit-pop 1.6s ease-in-out infinite;
}

.exit-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #000000 !important;
  box-shadow: none;
}

.exit-close:hover,
.exit-close:focus {
  color: #000000 !important;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 980px) {
  .apex-nav-links {
    gap: 14px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 75vh;
  }

  .hero-video iframe {
    min-height: 75vh;
  }

  .plan-layout {
    grid-template-columns: 1fr;
  }

  .plan-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .donation-banner {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .donation-banner-card {
    min-height: 0;
    border-radius: 22px;
  }

  .donation-banner-content {
    width: min(560px, 66vw);
    margin-left: clamp(34px, 6vw, 72px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 120px;
    min-height: 92vh;
  }

  .hero-content {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 6vw 48px;
    text-align: center;
    justify-items: center;
    justify-self: center;
    align-self: end;
  }

  .hero .apex-btn {
    justify-self: center;
    align-self: center;
    text-align: center;
    margin-inline: auto;
  }

  .hero-actions {
    justify-items: center;
  }

  .hero-video video {
    transform: scale(1.28) translateY(3%);
  }

  .donation-banner-card {
    min-height: 430px;
    aspect-ratio: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 16px;
  }

  .donation-banner-content {
    width: min(92%, 540px);
    margin-left: clamp(24px, 6vw, 34px);
    padding: 38px 8px 38px 0;
  }

  .donation-banner-divider {
    margin: 14px 0 14px;
    gap: 12px;
  }

  .donation-banner-lead,
  .donation-banner-copy {
    line-height: 1.25;
  }

  .donation-banner-copy {
    margin-top: 12px;
  }

  .donation-banner-btn {
    margin-top: 22px;
    min-width: min(100%, 260px);
  }

  .founders-title {
    transform: translateY(0);
    margin: 40px auto 24px;
    white-space: normal;
    text-align: center;
  }

  .founders-title span {
    margin-top: 10px;
    letter-spacing: 2px;
    font-size: clamp(16px, 4vw, 22px);
  }

  .founders-stage {
    min-height: 360px;
    display: grid;
    grid-template-areas:
      "rect"
      "figures"
      "cta";
  }

  .founders-cta {
    position: static;
    transform: none;
    margin: 2px auto 8px;
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    align-self: center;
    grid-area: cta;
  }

  .founders-rect {
    width: min(92vw, 520px);
    grid-area: rect;
  }

  .founders-figures {
    width: min(95vw, 520px);
    grid-area: figures;
  }

  .founder-photo img {
    width: clamp(200px, 70vw, 320px);
    transform: none !important;
  }

  .founder.is-active {
    z-index: 5;
  }

  .founder-connector {
    display: none;
  }

  .founder-popup-accent {
    display: none !important;
  }

  .founder--bruna {
    left: -6%;
  }

  .founder--tati {
    right: -6%;
  }

  .founder-info {
    width: min(200px, 72vw);
    top: 18%;
    z-index: 3;
    color: #111111;
    opacity: 0;
    pointer-events: none;
  }

  .founder-photo {
    position: relative;
    z-index: 1;
  }

  .founder-name {
    font-size: 14px;
    padding: 6px 10px;
  }

  .founder-desc {
    font-size: 13px;
  }

  .whatsapp-float {
    right: 12px;
    left: auto;
    bottom: 12px;
    text-align: center;
  }

  .audio-float {
    left: 12px;
    bottom: 12px;
  }
}

@media (max-width: 980px) {
  .founder-popup {
    display: none !important;
  }

  .founder-info {
    display: none;
  }

  .founders-mobile-info {
    margin: 8px auto 12px;
    width: min(360px, 90vw);
    text-align: center;
    display: grid;
    gap: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .founders-mobile-info[hidden] {
    display: none;
  }

  .founders-mobile-info.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .founders-mobile-name {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7a1f2b;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto;
  }

  .founders-mobile-desc {
    margin: 0;
    background: #ffffff;
    color: #111111;
    padding: 10px 16px;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.5;
  }

  .founders-figures {
    transition: transform 260ms ease;
  }

  .section-block.founders.is-expanded .founders-figures {
    transform: translateX(-50%) translateY(10px);
  }
}

@media (max-width: 640px) {
  .founders-subtitle {
    margin: 6px auto 0;
  }

  .founder-info {
    display: none;
  }

  .founder-popup {
    display: none !important;
  }
}

.founder-popup {
  position: fixed;
  inset: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 60;
}

.founder-popup.is-open {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.founder-popup-card {
  width: min(360px, 92vw);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 18px 18px 20px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  color: #111111;
  backdrop-filter: blur(6px);
}

.founder-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #000000;
}

.founder-popup-accent {
  position: relative;
  display: block;
  width: 70px;
  height: 2px;
  background: #7a1f2b;
  margin: 6px 0 12px;
}

.founder-popup-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7a1f2b;
}

.founder-popup-name {
  margin: 0 0 8px;
  font-size: 18px;
}

.founder-popup-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 641px) {
  .founder-popup {
    display: none !important;
  }
}

@keyframes badge-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.03);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.03);
  }
}

@keyframes cta-glow {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes exit-pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.pet-highlight {
  background: #fffaf2;
  position: relative;
  overflow: hidden;
}

.pet-parallax::before,
.pet-parallax::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 10px solid transparent;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 120ms ease-out;
}

.pet-parallax > * {
  position: relative;
  z-index: 1;
}

.pet-parallax::before {
  left: -120px;
  bottom: -140px;
  border-color: #1c8c3a;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.pet-parallax::after {
  right: -140px;
  bottom: -160px;
  border-color: #b61f2a;
  transform: translate3d(0, calc(var(--parallax-y, 0) * -0.8), 0);
}

.pet-parallax--red::before {
  content: none;
}

.pet-parallax--red::after {
  width: 520px;
  height: 520px;
  left: auto;
  right: -220px;
  top: 50%;
  bottom: auto;
  border-color: #b61f2a;
  transform: translate3d(0, calc(-50% + (var(--parallax-y, 0) * -0.8)), 0);
}

.pet-parallax--green-left::after {
  content: none;
}

.pet-parallax--green-left::before {
  width: 520px;
  height: 520px;
  left: -220px;
  right: auto;
  top: 50%;
  bottom: auto;
  border-color: #1c8c3a;
  transform: translate3d(0, calc(-50% + (var(--parallax-y, 0) * -0.8)), 0);
}

.pet-highlight-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  color: #1b1b1b;
  margin-bottom: 24px;
}

.pet-highlight-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.pet-highlight-media img {
  width: 100%;
  display: block;
  background: transparent;
  transition: none;
}

.pet-highlight-copy {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
  justify-items: center;
}

.pet-highlight-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(28, 140, 58, 0.2);
  width: 100%;
}

.pet-highlight-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.plan-info-btn {
  border: none;
  background: transparent;
  color: #1c6b55;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.pet-highlight-row:last-of-type {
  border-bottom: none;
}

.pet-highlight-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: #2b2b2b;
}

.pet-highlight-info strong {
  color: #1c1c1c;
  font-size: 18px;
}

.pet-highlight-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #d0142c;
  color: #fff5f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  animation: badge-flash 0.9s infinite;
}

@keyframes badge-flash {
  0% {
    background: #b60f24;
    box-shadow: 0 0 0 rgba(214, 20, 44, 0.0);
  }
  50% {
    background: #ff1a3d;
    box-shadow: 0 0 18px rgba(255, 26, 61, 0.65);
  }
  100% {
    background: #b60f24;
    box-shadow: 0 0 0 rgba(214, 20, 44, 0.0);
  }
}

.pet-highlight-note {
  font-size: 12px;
  color: #49645b;
}

.plan-info-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.plan-info-modal[hidden] {
  display: none;
}

.plan-info-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.plan-info-card {
  position: relative;
  background: #fffaf2;
  padding: 22px 22px 24px;
  border-radius: 18px;
  width: min(420px, 90vw);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.plan-info-card h3 {
  margin: 0 0 8px;
  color: #1a1a1a;
}

.plan-info-card p {
  margin: 0;
  color: #2b2b2b;
  line-height: 1.6;
}

.plan-info-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #000000;
}

.pet-highlight-grid {
  align-items: start;
}

.pet-highlight-media {
  display: grid;
  place-items: center;
  position: relative;
}

.pet-highlight-copy {
  text-align: center;
}

.pet-highlight-grid--reverse .pet-highlight-media {
  order: 2;
}

.pet-highlight-grid--reverse .pet-highlight-copy {
  order: 1;
}

@media (max-width: 980px) {
  .pet-highlight-media,
  .pet-highlight-copy,
  .pet-highlight-grid--reverse .pet-highlight-media,
  .pet-highlight-grid--reverse .pet-highlight-copy {
    transform: none;
  }
}

.pet-highlight-copy {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 30px auto 0;
  justify-items: center;
}

@media (max-width: 980px) {
  .pet-highlight-grid {
    grid-template-columns: 1fr;
  }

  .pet-highlight-row {
    grid-template-columns: 1fr;
  }

  .pet-highlight-grid--reverse .pet-highlight-media {
    order: 1;
  }

  .pet-highlight-grid--reverse .pet-highlight-copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  .pet-highlight-row {
    text-align: center;
    justify-items: center;
  }

  .pet-highlight-info {
    justify-content: center;
    width: 100%;
  }

  .pet-highlight-actions {
    justify-items: center;
    width: 100%;
  }

  .pet-highlight-badge {
    margin-inline: auto;
    order: -1;
    flex: 0 0 100%;
    justify-content: center;
    margin-bottom: 6px;
  }

  .plan-info-btn {
    text-align: center;
  }
}

.legacy-block {
  margin-top: 36px;
  margin-bottom: 40px;
  text-align: center;
  padding: 0 12px;
}

.legacy-title {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 36px);
  color: #1b1b1b;
  line-height: 1.2;
  margin-bottom: 16px;
  background: transparent;
  text-transform: uppercase;
}

.legacy-line {
  display: block;
}

.legacy-tag {
  display: inline-block;
  width: fit-content;
  margin: 10px auto 0;
  padding: 6px 14px;
  background: #1c8c3a;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 2px;
}

.legacy-copy {
  text-align: center;
  font-size: 15px;
  color: #4b4b4b;
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .founder-popup-card {
    width: min(300px, 88vw);
  }
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.apex-btn,
.nav-cta,
.hero-cta,
.section-cta,
.plan-confirm,
.cart-checkout,
.auth-submit,
.auth-secondary,
.auth-panel-link,
.founders-cta,
.nav-cart-button,
.nav-user,
.course-complete-button,
.admin-approve,
.cart-panel-close,
.impact-more {
  background: var(--button-green);
  border-color: var(--button-green);
  color: #ffffff;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.apex-btn:hover,
.nav-cta:hover,
.hero-cta:hover,
.section-cta:hover,
.plan-confirm:hover,
.cart-checkout:hover,
.auth-submit:hover,
.auth-secondary:hover,
.auth-panel-link:hover,
.founders-cta:hover,
.nav-cart-button:hover,
.nav-user:hover,
.course-complete-button:hover,
.admin-approve:not(:disabled):hover,
.cart-panel-close:hover,
.impact-more:hover {
  background: var(--button-green-dark);
  border-color: var(--button-green-dark);
  color: #ffffff;
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
.course-complete-button:disabled,
.admin-approve:disabled {
  background: var(--button-green-muted);
  border-color: var(--button-green-muted);
  color: #ffffff;
}

.checkout-feedback.is-error {
  color: #9f1f1f;
  font-weight: 600;
}

.checkout-feedback.is-success {
  color: #0d6d32;
  font-weight: 600;
}

.access-container {
  gap: 18px;
}

.access-intro {
  color: #3f3f3f;
  line-height: 1.5;
}

.access-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #ebebeb;
  overflow: hidden;
}

.access-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, #1c8c3a, #4fbe6c);
  transition: width 260ms ease;
}

.access-steps-indicator {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.access-step-dot {
  border: 1px solid #d9d9d9;
  background: #ffffff;
  color: #555555;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.access-step-dot.is-active {
  border-color: #1c8c3a;
  color: #1c8c3a;
}

.access-step-panel {
  display: grid;
  gap: 14px;
}

.access-step-panel h3 {
  margin: 0;
  font-size: 20px;
  color: #1b1b1b;
}

.access-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.access-actions--split {
  justify-content: space-between;
}

@media (max-width: 640px) {
  .access-actions,
  .access-actions--split {
    flex-direction: column;
  }

  .access-actions .cart-checkout,
  .access-actions .checkout-change {
    width: 100%;
    text-align: center;
  }
}

.urban-page .urban-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 22, 17, 0.35), rgba(6, 22, 17, 0.78));
  pointer-events: none;
}

.urban-page .urban-hero-content {
  position: relative;
  z-index: 1;
}

.urban-benefits {
  background: linear-gradient(180deg, #f1f8f4 0%, #e2f2ea 100%);
}

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

.urban-benefit-card {
  background: #ffffff;
  border: 1px solid rgba(7, 84, 66, 0.14);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(6, 43, 34, 0.08);
}

.urban-benefit-card h3 {
  margin: 0 0 8px;
  color: #0d4a3a;
  font-size: 20px;
}

.urban-benefit-card p {
  margin: 0;
  color: #2e5f53;
  line-height: 1.6;
}

.urban-planos {
  background: linear-gradient(180deg, #eaf5ef 0%, #dff0e7 100%);
}

.urban-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.urban-plan-card {
  display: grid;
  gap: 12px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(7, 84, 66, 0.16);
  box-shadow: 0 16px 32px rgba(7, 63, 49, 0.09);
  padding: 20px;
}

.urban-plan-card--featured {
  border: 2px solid #1f8e53;
  transform: translateY(-6px);
}

.urban-plan-tag {
  display: inline-flex;
  justify-self: start;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e0f6e7;
  color: #156346;
  font-weight: 700;
}

.urban-plan-card h3 {
  margin: 0;
  color: #103d2f;
  font-size: 24px;
}

.urban-plan-price {
  margin: 0;
  color: #0f5d45;
  font-size: 34px;
  font-weight: 800;
}

.urban-plan-price span {
  font-size: 14px;
  color: #4f7a6e;
  font-weight: 500;
}

.urban-plan-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #325f53;
}

.urban-plan-card .apex-btn {
  justify-self: start;
}

.urban-cta-final {
  background: linear-gradient(180deg, #103f32 0%, #0a2d23 100%);
}

.urban-cta-final-inner {
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.urban-cta-final h2 {
  margin: 0;
  color: #e8fff3;
  font-size: clamp(26px, 3.3vw, 40px);
}

.urban-cta-final p {
  margin: 0;
  color: #bce4d4;
}

@media (max-width: 980px) {
  .urban-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urban-plan-grid {
    grid-template-columns: 1fr;
  }

  .urban-plan-card--featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .urban-benefits-grid {
    grid-template-columns: 1fr;
  }
}
.urbanx-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 33, 24, 0.72), rgba(4, 33, 24, 0.18));
  pointer-events: none;
}

.urbanx-hero-content {
  position: relative;
  z-index: 1;
}

.urbanx-heading h2 {
  max-width: 920px;
}

.urbanx-services {
  background: linear-gradient(180deg, #e9f5ef 0%, #f5fbf8 100%);
}

.urbanx-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(7, 84, 66, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.urbanx-service-card {
  padding: 24px 20px;
  border-right: 1px solid rgba(7, 84, 66, 0.08);
  border-bottom: 1px solid rgba(7, 84, 66, 0.08);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 180ms ease, background 180ms ease;
}

.urbanx-service-card:hover {
  background: #f2fbf6;
  transform: translateY(-2px);
}

.urbanx-service-grid .urbanx-service-card:nth-child(4n) {
  border-right: none;
}

.urbanx-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(135deg, #e6f8ef, #c6ecd8);
  color: #0e6148;
}

.urbanx-service-card h3 {
  margin: 0;
  color: #0e4e3c;
  font-size: 24px;
}

.urbanx-service-card p {
  margin: 0;
  color: #355f53;
  line-height: 1.6;
}

.urbanx-compare {
  background: #ffffff;
}

.urbanx-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.urbanx-compare-media img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(7, 84, 66, 0.14);
  box-shadow: 0 18px 32px rgba(8, 55, 41, 0.14);
}

.urbanx-compare-copy {
  display: grid;
  gap: 12px;
}

.urbanx-compare-copy h2 {
  margin: 0;
  color: #103c2f;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.urbanx-compare-copy p {
  margin: 0;
  color: #345c50;
  line-height: 1.7;
}

.urbanx-diff-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #2f5a4d;
}

.urbanx-planos {
  background: linear-gradient(180deg, #ecf7f1 0%, #dff1e7 100%);
}

.urbanx-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.urbanx-plan-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(7, 84, 66, 0.16);
  box-shadow: 0 14px 30px rgba(8, 52, 40, 0.1);
}

.urbanx-plan-card--featured {
  border: 2px solid #14885f;
  transform: translateY(-6px);
}

.urbanx-plan-tag {
  justify-self: start;
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  background: #def6e8;
  color: #0f6d4d;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
}

.urbanx-plan-card h3 {
  margin: 0;
  color: #103f31;
  font-size: 28px;
}

.urbanx-plan-price {
  margin: 0;
  color: #0f5f45;
  font-size: 38px;
  font-weight: 800;
}

.urbanx-plan-price span {
  color: #4f7b6e;
  font-size: 14px;
  font-weight: 500;
}

.urbanx-plan-card ul {
  margin: 0;
  padding-left: 18px;
  color: #365f53;
  display: grid;
  gap: 8px;
}

.urbanx-plan-card .apex-btn {
  justify-self: start;
}

.site-side-tabs {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  display: grid;
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.site-side-tabs-logo {
  display: grid;
  place-items: center;
  padding: 4px 4px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-side-tabs-logo img {
  width: 86px;
  height: auto;
  display: block;
}

.site-side-tabs a {
  text-decoration: none;
  color: #e8fff4;
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 160ms ease;
}

.site-side-tabs a:hover,
.site-side-tabs a.is-active {
  background: #1f8b5f;
}

@media (max-width: 1140px) {
  .urbanx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .urbanx-service-grid .urbanx-service-card:nth-child(4n) {
    border-right: 1px solid rgba(7, 84, 66, 0.08);
  }

  .urbanx-service-grid .urbanx-service-card:nth-child(2n) {
    border-right: none;
  }

  .urbanx-compare-grid {
    grid-template-columns: 1fr;
  }

  .urbanx-plan-grid {
    grid-template-columns: 1fr;
  }

  .urbanx-plan-card--featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .urbanx-service-grid {
    grid-template-columns: 1fr;
  }

  .urbanx-service-card {
    border-right: none !important;
  }

  .site-side-tabs {
    display: none;
  }
}
