/* =========================================================
   1. Design tokens
   ========================================================= */
:root {
  --radius: 0.75rem;

  --background: oklch(1 0 0);
  --foreground: oklch(0.18 0.04 250);
  --card: oklch(1 0 0);

  --primary: oklch(0.6 0.19 245);
  --primary-foreground: oklch(0.99 0 0);
  --primary-deep: oklch(0.42 0.18 252);
  --primary-glow: oklch(0.72 0.15 240);

  --accent-green: oklch(0.7 0.19 142);

  --secondary: oklch(0.97 0.015 250);
  --secondary-foreground: oklch(0.28 0.08 258);

  --muted-foreground: oklch(0.52 0.04 255);
  --border: oklch(0.92 0.015 250);

  --gradient-hero: linear-gradient(135deg,
      oklch(0.42 0.18 252) 0%,
      oklch(0.6 0.19 245) 55%,
      oklch(0.72 0.15 240) 100%);
  --gradient-accent: linear-gradient(135deg,
      oklch(0.6 0.19 245) 0%,
      oklch(0.7 0.19 142) 100%);

  --shadow-elegant: 0 20px 50px -20px oklch(0.42 0.18 252 / 35%);
  --shadow-card: 0 4px 24px -8px oklch(0.42 0.18 252 / 18%);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --header-height: 4rem;
}

/* =========================================================
   2. Reset & base
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

input {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--narrow {
  max-width: 72rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}


.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.icon-modulo {
  width: 28px !important;
  height: 28px !important;
}

.icon-credibility {
  width: 20px !important;
  height: 20px !important;
}

/* =========================================================
   3. Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.5rem;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}



.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.08);
}

.btn--primary:hover {
  opacity: 0.92;
}

.btn--white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-elegant);
}

.btn--white:hover {
  background: oklch(1 0 0 / 0.9);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid oklch(1 0 0 / 0.6);
}

.btn--outline-white:hover {
  background: oklch(1 0 0 / 0.1);
}

.btn--pulse {
  animation: pulse-attention 3.2s ease-in-out infinite;
}

@keyframes pulse-attention {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 oklch(0.6 0.19 245 / 0.55);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px oklch(0.6 0.19 245 / 0);
  }
}

.icon--nudge {
  animation: arrow-nudge 1.8s ease-in-out infinite;
}

@keyframes arrow-nudge {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

/* =========================================================
   4. Header & nav
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid oklch(0.92 0.015 250 / 0.6);
  background: oklch(1 0 0 / 0.8);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.5s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.logo__img {
  height: 2.25rem;
  width: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--foreground);
}

.nav__underline {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.nav__link:hover .nav__underline {
  transform: scaleX(1);
}

/* =========================================================
   5. Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

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

/* =========================================================
   6. Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;

  color: white;

  background: linear-gradient(135deg,
      oklch(42% 0.18 252) 0%,
      oklch(60% 0.19 245) 55%,
      oklch(72% 0.15 240) 100%);

  background-size: 200% 200%;
  animation: gradient-pan 8s ease infinite;
}

@keyframes gradient-pan {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero__dots {
  position: absolute;
  inset: 0;

  z-index: -10;
  opacity: 0.2;

  background-image: radial-gradient(circle at 1px 1px,
      rgba(255, 255, 255, 0.6) 1px,
      transparent 0);

  background-size: 32px 32px;
}

.hero__grid {
  margin-left: auto;
  margin-right: auto;

  display: grid;

  max-width: 1280px;
  /* max-w-7xl */

  gap: 48px;
  /* gap-12 */

  padding: 64px 16px;
  /* py-16 px-4 */
}

@media (min-width: 640px) {
  .hero__grid {
    padding-left: 24px;
    /* sm:px-6 */
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* lg:grid-cols-2 */
    align-items: center;
    /* lg:items-center */

    gap: 64px;
    /* lg:gap-16 */

    padding-left: 32px;
    /* lg:px-8 */
    padding-right: 32px;

    padding-top: 96px;
    /* lg:py-24 */
    padding-bottom: 96px;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid oklch(1 0 0 / 0.3);
  background: oklch(1 0 0 / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

.badge__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: oklch(0.85 0.12 155);
}

.hero__title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px oklch(0 0 0 / 0.1);
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__highlight {
  color: oklch(0.85 0.12 155);
}

.hero__text {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: oklch(1 0 0 / 0.9);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.hero__media {
  position: relative;
}

.hero__media-glow {
  position: absolute;
  inset: -1rem;
  z-index: -1;
  border-radius: 2rem;
  background: oklch(1 0 0 / 0.2);
  opacity: 0.3;
  filter: blur(48px);
}

.hero__media-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid oklch(1 0 0 / 0.2);
  background: var(--card);
  box-shadow: var(--shadow-elegant);
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   7. Credibility bar
   ========================================================= */
.credibility {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: rgba(248, 251, 255, 1);
  /* ou background: color-mix(in srgb, var(--secondary) 40%, transparent); */

  opacity: 1;

  transform: translateY(0);

  transition:
    all 1000ms ease-out;
}

.credibility__grid {
  margin-left: auto;
  margin-right: auto;

  display: grid;

  max-width: 1280px;
  /* max-w-7xl */

  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* grid-cols-2 */

  gap: 24px;
  /* gap-6 */

  padding: 32px 16px;
  /* py-8 px-4 */
}

/* sm:px-6 */
@media (min-width: 640px) {
  .credibility__grid {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* md:grid-cols-4 */
@media (min-width: 768px) {
  .credibility__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* lg:px-8 */
@media (min-width: 1024px) {
  .credibility__grid {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.credibility__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.credibility__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: oklch(0.6 0.19 245 / 0.1);
  color: var(--primary);
}

/* =========================================================
   8. Generic section helpers
   ========================================================= */
.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

.section--muted {
  background: oklch(0.97 0.015 250 / 0.4);
}

.section--hero-bg {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--gradient-hero);
}

.section__dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 1px 1px,
      oklch(1 0 0 / 0.5) 1px,
      transparent 0);
  background-size: 28px 28px;
}

.section__heading {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
}

.eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.eyebrow--light {
  color: oklch(0.85 0.12 155);
}

.section__title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section__title {
    font-size: 3rem;
  }
}

.section__title--light {
  color: #fff;
}

.section__subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section__subtitle--light {
  color: oklch(1 0 0 / 0.9);
}

/* =========================================================
   9. Modules
   ========================================================= */
.modules-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.module-card:hover {
  transform: translateY(-4px);
}

.module-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.module-card__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--gradient-accent);
  color: #fff;
}

.module-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.module-card__benefit {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.module-card__features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.icon--check {
  margin-top: 0.1rem;
  color: var(--accent-green);
}

.module-card__media {
  margin-top: auto;
  padding-top: 2rem;
  aspect-ratio: 3 / 2;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.module-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* =========================================================
   10. Integrated platform
   ========================================================= */
.integrated__grid {
  position: relative;
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .integrated__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.feature-pill-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: oklch(1 0 0 / 0.1);
  padding: 1rem;
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-pill .icon {
  color: oklch(0.85 0.12 155);
}

.integrated__panel {
  border-radius: 1.5rem;
  background: oklch(1 0 0 / 0.1);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.integrated__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.integrated__module {
  border-radius: 1rem;
  background: oklch(1 0 0 / 0.95);
  color: var(--foreground);
  padding: 1.25rem;
}

.integrated__module-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: oklch(0.6 0.19 245 / 0.12);
  color: var(--primary);
}

.integrated__module h4 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================================
   11. Stats & testimonials
   ========================================================= */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  background-image: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card__label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.testimonials-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.icon--quote {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  opacity: 0.4;
}

.testimonial-card__quote {
  margin-top: 1rem;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card__author {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
}

.testimonial-card__role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.testimonial-card__city {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =========================================================
   12. Schools
   ========================================================= */
.schools {
  margin-top: 4rem;
}

.schools__heading {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.schools-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .schools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.school-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
}

.school-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}

.school-card__body {
  padding: 1.25rem;
}

.school-card__quote {
  font-size: 0.875rem;
  line-height: 1.6;
}

.school-card__name {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* =========================================================
   13. Gov benefits
   ========================================================= */
.gov-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .gov-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.gov-grid__cta {
  margin-top: 2rem;
}

.benefits-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--shadow-card);
}

.benefits-list__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: oklch(0.7 0.19 142 / 0.18);
  color: var(--accent-green);
}

/* =========================================================
   14. Final CTA / form
   ========================================================= */
.cta-box {
  overflow: hidden;
  border-radius: 2rem;
  padding: 2rem;
  color: #fff;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 640px) {
  .cta-box {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-box {
    padding: 4rem;
  }
}

.cta-box__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .cta-box__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta-box__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-box__checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.cta-box__checklist span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.cta-box__checklist .icon {
  width: 1rem;
  height: 1rem;
  color: oklch(0.85 0.12 155);
}

.form {
  border-radius: 1.5rem;
  background: var(--background);
  color: var(--foreground);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form {
    padding: 2rem;
  }
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.field,
.field-row {
  margin-top: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.field input {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--background);
  padding: 0 0.875rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.6 0.19 245 / 0.15);
}

.field-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field-row .field {
  margin-top: 0;
}

.form__submit {
  margin-top: 1.5rem;
  width: 100%;
}

.form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form__disclaimer {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* =========================================================
   15. Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(248, 251, 255, 1);
}

/* Container */
.container {
  max-width: 1280px;

  margin-left: auto;
  margin-right: auto;

  padding-top: 56px;
  padding-bottom: 56px;

  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Grid principal */
.footer__grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* Marca */
.footer__brand {
  max-width: 600px;
}

.logo {
  display: inline-flex;
  width: fit-content;

  transition: transform 0.5s;
}

.logo:hover {
  transform: scale(1.1);
}

.logo__img {
  height: 36px;
  width: auto;
}

.footer__about {
  margin-top: 16px;

  max-width: 448px;

  font-size: 14px;
  line-height: 1.7;

  color: var(--muted-foreground);
}

/* Redes sociais */
.footer__social {
  display: flex;
  gap: 12px;

  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 9999px;

  border: 1px solid var(--border);

  background: var(--card);

  color: var(--muted-foreground);

  transition:
    background-color 0.2s,
    color 0.2s;
}

.social-btn:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.social-btn .icon {
  width: 16px;
  height: 16px;
}

/* Colunas */
.footer__col h4 {
  margin: 0;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;

  color: var(--foreground);
}

.footer__col ul {
  list-style: none;

  margin-top: 16px;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a,
.footer__col li {
  font-size: 14px;
  color: var(--muted-foreground);
}

.footer__col a {
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--foreground);
}

/* Contato */
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact .icon {
  width: 16px;
  height: 16px;

  flex-shrink: 0;

  color: var(--primary);
}

/* Rodapé inferior */
.footer__bottom {
  margin-top: 48px;

  padding-top: 24px;

  border-top: 1px solid var(--border);

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__bottom p {
  margin: 0;

  font-size: 12px;
  color: var(--muted-foreground);
}

/* Links legais */
.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;

  color: var(--muted-foreground);

  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--foreground);
}

/* =========================================================
   16. Toast
   ========================================================= */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 280px;
  max-width: 360px;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-elegant);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.toast.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-green);
}

.toast__description {
  font-size: 0.825rem;
  color: var(--muted-foreground);
}


.btn-nav {
  display: none;

  align-items: center;
  justify-content: center;
  gap: 8px;

  white-space: nowrap;

  height: 36px;
  padding: 8px 16px;

  border: none;
  border-radius: 9999px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  background: var(--primary);
  color: var(--primary-foreground);

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .btn-nav {
    display: inline-flex;
  }
}


.btn-nav:hover {
  filter: brightness(0.9);
  /* hover:bg-primary/90 */
}

.btn-nav:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px var(--ring);
}

.btn-nav:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-nav svg {
  width: 16px;
  height: 16px;

  flex-shrink: 0;
  pointer-events: none;
}

.btn-hero {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 8px;

  white-space: nowrap;

  width: 100%;
  height: 40px;

  padding: 0 28px;

  border: none;
  border-radius: 9999px;

  background: #fff;
  color: var(--primary);

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  box-shadow: var(--shadow-elegant);

  transition:
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-hero:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px var(--ring),
    var(--shadow-elegant);
}

.btn-hero:disabled {
  pointer-events: none;
  opacity: .5;
  cursor: not-allowed;
}

.btn-hero svg {
  width: 16px;
  height: 16px;

  flex-shrink: 0;
  pointer-events: none;

  margin-left: 4px;
}

@media (min-width: 640px) {
  .btn-hero {
    width: auto;
  }
}


.btn_public {
  margin-top: 2rem;
  /* mt-8 = 32px */
  display: inline-block;
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 8px;

  white-space: nowrap;

  height: 40px;
  padding: 0 28px;

  border: none;
  border-radius: 9999px;

  background: var(--primary);
  color: var(--primary-foreground);

  font-size: 14px;
  /* text-sm */
  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.btn_form {
  display: inline-flex;

  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  height: 40px;

  margin-top: 24px;

  padding-left: 32px;
  padding-right: 32px;

  white-space: nowrap;

  border: none;
  border-radius: 9999px;

  background: var(--primary);
  color: var(--primary-foreground);

  font-size: 14px;
  /* text-sm */
  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.menu-div {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 100%;
  width: 2.2rem;
  height: 2.2rem;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}



.menu-div {
  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.16),
    0 4px 8px rgba(0, 0, 0, 0.10);
}

.menu-div:active {
  transform: translateY(0);
}

.menu-div {
  display: none;
  cursor: pointer;
}

.nav-mobile {
  position: fixed;

  top: 63px;
  /* altura do header */
  left: 0;

  width: 100%;
  padding: 24px;
  z-index: 999;

  background: var(--background);

  max-height: 0;
  overflow: hidden;

  opacity: 0;

  transition:
    max-height .3s ease,
    opacity .3s ease;

  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 16px;
}

.nav-mobile.active {
  max-height: 400px;
  opacity: 1;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .menu-div {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__inner {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.cta-box {
  display: block;
}

.form-mobile {
  display: none;
  color: #fff;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-elegant);
}

.form-mobile button{
  background-color: oklch(0.45 0.15 246.17);
}

.form-mobile .field label{
  color: white;
}

.form-mobile .form__disclaimer{
  color:white;
}

@media (max-width: 430px) {
  .cta-box {
    display: none;
  }
}

@media (max-width: 430px) {
  .form-mobile {
    display: block;
  }
}