/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DECISÃƒO VESTIBULARES â€” Design System
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --black: #000000;
  --black-soft: #111111;
  --black-card: #1a1a1a;
  --gold: #e5a800;
  --gold-light: #f5c842;
  --gold-dark: #c28f00;
  --white: #ffffff;
  --white-muted: #c8c8c8;
  --gray: #3a3a3a;
  --font-primary: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container-max: 1400px;
  --navbar-height: 80px;

  /* Transitions */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 168, 0, 0.12);
  transition:
    background 0.4s var(--ease-out-quart),
    box-shadow 0.4s var(--ease-out-quart);
}

.navbar--scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.navbar__logo:hover {
  opacity: 0.85;
}

.navbar__logo-img {
  height: 48px;
  width: auto;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__link {
  position: relative;
  padding: 8px 20px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.35;
  color: var(--white-muted);
  transition: color 0.3s var(--ease-out-quart);
  white-space: nowrap;
  border-left: 1px solid var(--gold-dark);
}

.navbar__nav > .navbar__link:first-child {
  border-left: none;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--white);
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out-quart);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  width: 60%;
}

/* Dropdown-style proposta pedagÃ³gica */
/* Dropdown-style proposta pedagÃ³gica */
.navbar__item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  /* O border-left fica no prÃ³prio link (navbar__link) que Ã© filho */
}

.navbar__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--black-soft);
  border: 1px solid rgba(229, 168, 0, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out-quart);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.navbar__item-has-children:hover .navbar__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__submenu-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-muted);
  padding: 10px 20px;
  transition:
    color 0.3s,
    background 0.3s;
  letter-spacing: 0.02em;
}

.navbar__submenu-link:hover {
  color: var(--gold-light);
  background: rgba(229, 168, 0, 0.05);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-out-quart),
    opacity 0.25s;
}

.navbar__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger--open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.hero {
  position: relative;
  min-height: max(100vh, 700px);
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  padding-bottom: 40px;
  background: var(--black);
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(229, 168, 0, 0.06) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Animated concentric arcs */
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  border: 1px solid rgba(229, 168, 0, 0.05);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseRing 6s ease-in-out infinite;
}

@keyframes pulseRing {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
  }
}

.hero__container {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* â”€â”€ Hero Content (left) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero__badge {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 0.2s var(--ease-out-quart) forwards;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.9s 0.35s var(--ease-out-quart) forwards;
}

.hero__title--gold {
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--white-muted);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 0.55s var(--ease-out-quart) forwards;
}

.hero__subtitle--underline {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  color: var(--white);
}

/* â”€â”€ CTA Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  background: var(--gold);
  color: var(--black);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: left;
  transition:
    background 0.35s var(--ease-out-quart),
    transform 0.35s var(--ease-out-quart),
    box-shadow 0.35s var(--ease-out-quart);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s 0.7s var(--ease-out-quart) forwards;
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-quart);
}

.hero__cta:hover::before {
  transform: translateX(100%);
}

.hero__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 168, 0, 0.35);
}

.hero__cta-text {
  position: relative;
  z-index: 1;
}

.hero__cta-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.35s var(--ease-out-quart);
}

.hero__cta:hover .hero__cta-arrow {
  transform: translateX(4px);
}

/* â”€â”€ Hero Image (right) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero__image-wrapper {
  flex: 1;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeSlideLeft 1s 0.4s var(--ease-out-quart) forwards;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Tablet */

/* Mobile */

/* Overlay behind mobile nav */
.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.navbar__overlay--visible {
  opacity: 1;
  pointer-events: all;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SEMI DE AGOSTO - ESTILOS ESPECÃFICOS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Text Utilities */
.text-gold {
  color: var(--gold);
}

.text-white-bold {
  font-weight: 700;
  color: var(--white);
}

/* Hero Semi */
.hero__title--semi {
  font-size: clamp(6.4rem, 10vw, 9.6rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero__subtitle-block {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero__subtitle--semi {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.4;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__subtitle--highlight {
  color: var(--white);
  font-weight: 700;
}

/* Features Section */
.semi-features {
  background: var(--black);
  padding: 40px 0 80px;
  position: relative;
  z-index: 5;
}

.semi-features__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--white-muted);
  padding-top: 4px;
}

/* Audience Section (2 columns) */
.audience-section {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  border: 1px solid rgba(229, 168, 0, 0.3);
  border-radius: 8px;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(229, 168, 0, 0.02) 0%,
    transparent 100%
  );
}

.audience-card {
  flex: 1;
}

.audience-divider {
  width: 1px;
  background: rgba(229, 168, 0, 0.3);
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.audience-icon {
  width: 45px;
  height: auto;
}

.audience-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.audience-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white-muted);
}

/* Promise Section (Brackets) */
.promise-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
  position: relative;
}

.promise-bracket {
  width: 30px;
  border: 2px solid var(--gold);
}

.promise-bracket--left {
  border-right: none;
  border-radius: 12px 0 0 12px;
}

.promise-bracket--right {
  border-left: none;
  border-radius: 0 12px 12px 0;
}

.promise-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 40px;
}

.promise-icon {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.promise-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--white);
}

/* Final Box Section */
.final-box {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}

.final-box__content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.final-box__icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.final-box__title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.final-box__text {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--white-muted);
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.cta--center {
  margin: 0 auto;
  text-align: center;
}

/* Responsive adjustments for Semi */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.footer {
  background: var(--black-card);
  border-top: 1px solid rgba(229, 168, 0, 0.15);
  padding: 60px 0;
  margin-top: 0px;
}

.footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer__logo {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__info p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.5;
}

.footer__info a {
  color: var(--gold-light);
  transition: color 0.3s;
}

.footer__info a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   COMO INGRESSAR - ESTILOS ESPECÃFICOS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.hero__title--ingressar {
  font-size: clamp(4.8rem, 6vw, 6.6rem);

  /* 25% menor que 4.8rem (3.6rem) */
  font-weight: 800;
  line-height: 1.05;
  text-transform: none;
}

.hero__subtitle-block--ingressar {
  border-left: none;
  /* Remover borda dourada lateral aqui se quiser, ou deixar. Vou deixar borda. */
}

/* SeÃ§Ã£o dos Boxes de Ingresso */
.ingresso-section {
  background: var(--black);
  padding: 60px 0 100px;
  position: relative;
  z-index: 5;
}

.ingresso-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* CartÃ£o de Ingresso */
.ingresso-card {
  flex: 1;
  background: #1a1a1a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ingresso-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(229, 168, 0, 0.15);
}

.ingresso-card__icon {
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingresso-card__icon img {
  max-height: 100%;
  width: auto;
}

.ingresso-card__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ingresso-card__divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 45%,
    var(--gold) 45%,
    var(--gold) 55%,
    rgba(255, 255, 255, 0.1) 55%
  );
  margin-bottom: 24px;
  position: relative;
}

.ingresso-card__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.ingresso-card__text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.ingresso-card__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white-muted);
}

/* BotÃ£o do CartÃ£o */
.ingresso-card__btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background 0.3s ease;
}

.ingresso-card__btn:hover {
  background: var(--gold-light);
}

.ingresso-card__btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ingresso-card__btn-text strong {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.ingresso-card__btn-text span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black-soft);
}

.ingresso-card__btn-arrow {
  width: 32px;
  height: 32px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-left: 12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORMULÃRIOS DE CADASTRO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.form-section {
  background: var(--black);
  padding: 60px 0 100px;
  position: relative;
  z-index: 5;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cadastro-form {
  background: var(--black-card);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(229, 168, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(229, 168, 0, 0.2);
}

.form-group input[type="file"] {
  padding: 10px 16px;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.form-group input[type="file"]:hover {
  border-color: var(--gold);
}

.cta--fullwidth {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-muted);
}

.footer__icon {
  flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MANIFESTO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.manifesto-section {
  background: var(--black);
  padding: 80px 0 120px;
  position: relative;
  z-index: 5;
}

.manifesto-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.manifesto-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  border-bottom: 2px solid rgba(229, 168, 0, 0.2);
  padding-bottom: 20px;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 60px;
}

.manifesto-text p {
  opacity: 0.9;
}

.manifesto-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.manifesto-logo {
  height: 60px;
  width: auto;
}

.manifesto-slogan {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   POPUP INICIAL
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #0a0a0a;
  border: 1px solid rgba(229, 168, 0, 0.2);
  padding: 50px 40px 40px;
  position: relative;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s var(--ease-out-quart);
}

.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--white-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: var(--gold);
}

.popup-text {
  font-family: var(--font-primary);
  margin-bottom: 30px;
}

.popup-text__line1 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.popup-text__line2 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.popup-text__line3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.popup-text__line4 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin: -5px 0 5px;
}

.popup-text__line5 {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}

.popup-btn {
  display: block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.popup-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ================================== */
/*         WHATSAPP FAB               */
/* ================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--transition-speed, 0.3s) ease,
    box-shadow var(--transition-speed, 0.3s) ease;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1100px) {
  .navbar__container {
    padding: 0 24px;
  }

  .navbar__link {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .hero__container {
    padding: 40px 24px;
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__cta {
    margin: 0 auto;
  }

  .hero__image-wrapper {
    max-width: 480px;
  }
}

@media (max-width: 992px) {
  .audience-section {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .audience-divider {
    width: 100%;
    height: 1px;
  }

  .promise-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .final-box__content {
    flex-direction: column;
    text-align: center;
  }
  .ingresso-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.45s var(--ease-out-quart);
    border-left: 1px solid rgba(229, 168, 0, 0.15);
  }

  .navbar__nav--open {
    right: 0;
  }

  .navbar__link {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    text-align: left;
    width: 100%;
    font-size: 0.85rem;
  }

  .navbar__link::after {
    bottom: -1px;
    left: 0;
    transform: none;
  }

  .navbar__link:hover::after,
  .navbar__link--active::after {
    width: 40px;
  }

  .navbar__item-has-children {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__submenu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    width: 100%;
  }

  .navbar__submenu-link {
    padding: 10px 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar__submenu-link:last-child {
    border-bottom: none;
  }

  .navbar__logo-img {
    height: 38px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__image-wrapper {
    max-width: 340px;
  }
  .hero__subtitle-block {
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    max-width: 100%;
    text-align: left;
  }

  .semi-features__container {
    padding: 0 24px;
  }

  .promise-text {
    font-size: 1.05rem;
  }

  .final-box__title {
    font-size: 1.2rem;
  }
  .footer__container {
    padding: 0 24px;
  }

  .footer__contact {
    flex-direction: column;
    gap: 30px;
  }
  .ingresso-container {
    padding: 0 24px;
  }

  .hero__title--ingressar {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }
  .cadastro-form {
    padding: 30px 20px;
  }
  .manifesto-container {
    padding: 0 24px;
  }

  .manifesto-text {
    font-size: 1.05rem;
  }
}
/* -------------------------------------------
   QUEM SOMOS - ESTILOS ESPECÍFICOS
   ------------------------------------------- */
.quem-somos-features {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0;
}

.quem-somos-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  flex: 1;
  position: relative;
  padding: 0 10px;
}

.quem-somos-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--gold);
  opacity: 0.3;
}

@media (max-width: 992px) {
  .quem-somos-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .quem-somos-item {
    flex: 0 0 45%;
  }
  .quem-somos-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .quem-somos-item {
    flex: 0 0 100%;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DECISÃƒO 360Â° - ESTILOS ESPECÃFICOS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero 360 */
.hero--360 {
  background: var(--black);
  position: relative;
}

.hero--360::before {
  background: radial-gradient(
    circle at 60% 40%,
    rgba(229, 168, 0, 0.08) 0%,
    transparent 60%
  );
}

.hero__title--360 {
  font-size: clamp(5.5rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero__image--360-logo {
  max-width: 380px;
  filter: drop-shadow(0 0 40px rgba(229, 168, 0, 0.25));
  animation: float360 4s ease-in-out infinite;
}

@keyframes float360 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Text utility - italic gold */
.text-gold-italic {
  color: var(--gold);
  font-style: italic;
}

/* Main section */
.d360-section {
  background: var(--black);
  padding: 40px 0 80px;
  position: relative;
  z-index: 5;
}

.d360-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Intro block */
.d360-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 40px;
  border: 1px solid rgba(229, 168, 0, 0.3);
  border-radius: 50px;
  margin-bottom: 60px;
  background: linear-gradient(
    135deg,
    rgba(229, 168, 0, 0.04) 0%,
    transparent 100%
  );
}

.d360-intro__icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d360-intro__icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.d360-intro__text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white);
}

/* 5 Pillars grid */
.d360-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.d360-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 16px;
  border: 1px solid rgba(229, 168, 0, 0.2);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(229, 168, 0, 0.03) 0%,
    transparent 100%
  );
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.d360-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(229, 168, 0, 0.12);
  border-color: rgba(229, 168, 0, 0.4);
}

.d360-pillar__icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d360-pillar__icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.d360-pillar__title {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Highlight box */
.d360-highlight-box {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 40px;
  border: 1px solid rgba(229, 168, 0, 0.35);
  border-radius: 12px;
  margin-bottom: 40px;
  background: linear-gradient(
    135deg,
    rgba(229, 168, 0, 0.06) 0%,
    rgba(229, 168, 0, 0.01) 100%
  );
}

.d360-highlight-box__icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d360-highlight-box__icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.d360-highlight-box__text p {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

/* Motivation cards */
.d360-motivation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.d360-motivation__card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 36px;
  border: 1px solid rgba(229, 168, 0, 0.3);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(229, 168, 0, 0.04) 0%,
    transparent 100%
  );
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.d360-motivation__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(229, 168, 0, 0.1);
}

.d360-motivation__card-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d360-motivation__card-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.d360-motivation__card-text h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.d360-motivation__card-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-muted);
}

/* Responsive 360 */
@media (max-width: 1100px) {
  .d360-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__image--360-logo {
    max-width: 280px;
  }
}

@media (max-width: 992px) {
  .d360-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .d360-motivation {
    grid-template-columns: 1fr;
  }
  .d360-highlight-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .d360-container {
    padding: 0 24px;
  }
  .d360-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .d360-pillar {
    flex-direction: row;
    text-align: left;
    padding: 20px 24px;
    gap: 16px;
  }
  .d360-pillar__icon-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  .d360-intro {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    border-radius: 16px;
  }
  .d360-intro__icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .d360-highlight-box__icon-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .d360-motivation__card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .d360-motivation__card-icon-wrapper {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  .hero__title--360 {
    font-size: clamp(3.5rem, 12vw, 5rem);
  }
}

/* ═══════════════════════════════════════════
   SIMULADOS - ESTILOS ESPECÍFICOS
   ═══════════════════════════════════════════ */

/* Hero Simulados */
.hero--simulados {
  min-height: max(60vh, 500px);
  padding-bottom: 20px;
}

.hero__container--simulados {
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.hero__content--simulados {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title--simulados {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 40px;
}

.hero__subtitle-block--simulados {
  border-left: none;
  border-bottom: 1px solid rgba(229, 168, 0, 0.4);
  padding: 0 0 30px 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}

.hero__subtitle-block--simulados::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px rgba(229, 168, 0, 0.4);
}

.hero__subtitle--simulados-text {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* Simulados Section */
.simulados-section {
  background: var(--black);
  padding: 20px 0 80px;
  position: relative;
  z-index: 5;
}

.simulados-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Banner da imagem central */
.simulados-banner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
}

.simulados-banner__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Features list */
.features-list--simulados {
  max-width: 800px;
  width: 100%;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item--simulados {
  align-items: center;
  border-bottom: 1px solid rgba(229, 168, 0, 0.2);
  padding-bottom: 30px;
}

.feature-item--simulados:last-child {
  border-bottom: 1px solid rgba(229, 168, 0, 0.2); /* Keep border on last item for this page */
}

.feature-icon-wrapper--simulados {
  width: 60px;
  height: 60px;
}

.feature-text--simulados {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Box final branco como no design */
.final-box--simulados {
  width: 100%;
  max-width: 800px;
  background: var(--white);
  border: none;
  border-radius: 8px;
  padding: 25px 40px;
}

.final-box__content--center {
  justify-content: center;
  text-align: center;
}

.final-box__text--large {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.final-box__text--large .text-gold {
  color: var(--gold-dark); /* Using darker gold on white background for better contrast */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero__title--simulados {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }
  .feature-item--simulados {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .feature-icon-wrapper--simulados {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
  .feature-text--simulados {
    font-size: 1.05rem;
  }
  .final-box--simulados {
    padding: 20px;
  }
  .final-box__text--large {
    font-size: 1.1rem;
  }
  .simulados-banner {
    margin-bottom: 30px;
  }
}
