:root {
  --color-bg: #17171c;
  --color-bg-alt: #1e1e24;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-primary: #f69223;
  /* Orange */
  --color-primary-hover: #e0841f;
  --color-secondary: #ffffff;
  --color-border: #333333;

  --font-main: 'Abel', sans-serif;

  --container-width: 1200px;
  --header-height: 80px;
  --radius: 12px;

  --transition: all 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mb-small {
  margin-bottom: 1rem;
}

.mt-medium {
  margin-top: 2rem;
}

.full-width {
  width: 100%;
}

.text-highlight {
  color: var(--color-primary);
  /* font-style: italic; */
}

/* Typography */
h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#academia {
  background-image: url(../../src/images/bg-conceito.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-text {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.section-text--large {
  font-size: 1.5rem;
  font-weight: 600;
}

.title-lg {
  font-size: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(203, 247, 47, 0.2);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid var(--color-text);
  color: var(--color-text);
}

.btn--secondary:hover {
  background-color: var(--color-text);
  color: #000;
}

.btn--outline {
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--lg {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.btn__subtext {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
  margin-top: 0.2rem;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(203, 247, 47, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(203, 247, 47, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(203, 247, 47, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  background: rgba(23, 23, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__list a {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav__list a:hover {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-text);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-bg), rgba(23, 23, 28, 0.6));
  z-index: -1;
}

.hero__content {
  max-width: 800px;
  padding-top: var(--header-height);
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Common */
.section {
  padding: 6rem 0;
}

.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* About */
.about {
  border-top: 20px solid rgba(23, 23, 28, 0.7);
  border-bottom: 20px solid rgba(23, 23, 28, 0.7);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 4rem;
  align-items: center;
}

.about__img {
  border-radius: var(--radius);
  /* filter: grayscale(100%); */
  transition: var(--transition);
}

.about__img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.about__content p.section-text {
  color: #FFF;
  background: #f69223;
  display: inline-block;
  padding: 3px 5px;

}

/* Structure */
.structure {
  background-color: var(--color-bg-alt);

}

.structure__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.structure__content {
  order: 2;
  /* Content right */
}

.structure__partners {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Units */
/* Units - Carousel */
.units__carousel {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0 2rem;
  /* No scroll-snap: JS controls positioning for infinite loop */
  -webkit-overflow-scrolling: touch;
  margin-top: 3rem;

  /* Scrollbar styling */
  scrollbar-width: none;

  /* Draggable UI */
  cursor: grab;
  user-select: none;
}

/* Hide scrollbar Chrome/Safari/Edge */
.units__carousel::-webkit-scrollbar {
  display: none;
}

.units__carousel.active {
  cursor: grabbing;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  min-height: 30px;
  align-items: center;
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.bullet:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.bullet.active {
  background-color: var(--color-primary);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(246, 146, 35, 0.6);
  border-color: var(--color-primary);
}

.unit-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;

  background: var(--color-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.unit-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.unit-card__img-box {
  height: 200px;
  overflow: hidden;
}

.unit-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.unit-card:hover .unit-card__img-box img {
  transform: scale(1.1);
}

.unit-card__body {
  padding: 1.5rem;
}

.unit-card__body h3 {
  margin-bottom: 0.5rem;
}

.unit-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: #000;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.unit-card__body p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.whatsapp-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.whatsapp-link:hover {
  color: #25d366;
}

/* Plans */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.planosmbm {
  max-width: 1000px;
}

.plan-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(145deg, rgba(203, 247, 47, 0.05), var(--color-bg-alt));
  transform: scale(1.05);
  z-index: 2;
}

.plan-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-card__header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.plan-features {
  margin-bottom: 2rem;
  flex-grow: 1;
  list-style-type: disc;
  padding-left: 1.5rem;
}

.plan-features li {
  margin-bottom: 0.5rem;
  display: list-item;
}

.plan-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Urgency */
.urgency {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/class.png') no-repeat center/cover;
}

/* Plans Carousel */
.plans__carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 3rem 1rem 2rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.plans__carousel::-webkit-scrollbar {
  display: none;
}

.plans__carousel.active {
  cursor: grabbing;
  scroll-snap-type: none;
}

.plans__carousel .plan-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: center;
  flex-shrink: 0;
  margin: 0;
  /* Override grid defaults */
}

/* Testimonials Section */

.testimonials {
  background-color: var(--color-bg-alt);
  background-image: url('../src/images/bg-raster.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
}

.testimonials__container {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
}

.testimonials__left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials__subtitle {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonials__title {
  font-family: var(--font-main);
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.testimonials__text {
  color: #FFF;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonials__controls {
  display: flex;
  gap: 1rem;
}

.testimonials__btn {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonials__btn:hover {
  background-color: var(--color-primary);
  color: #FFF;
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(230, 81, 0, 0.3);
}

.testimonials__right {
  flex: 1;
  min-width: 0;
  /* Important for flex items with overflow */
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonials__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: smooth;
  width: 100%;
  padding-bottom: 1rem;
}

.testimonials__carousel::-webkit-scrollbar {
  display: none;
}

.testimonials__carousel.active {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  /* 3 cards visible */
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.testimonial-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__indicators {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.testimonials__indicators .bullet {
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials__indicators .bullet.active {
  background-color: var(--color-primary);
}

@media (max-width: 900px) {
  .testimonials__container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .testimonials__left {
    align-items: center;
  }

  .testimonials__controls {
    justify-content: center;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .testimonials__indicators {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 calc(80% - 0rem);
  }

  .testimonials__title {
    font-size: 2.5rem;
  }
}

/* Testimonials Modal */
.testimonial-card .play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.testimonial-card:hover .play-icon-overlay {
  background: var(--color-primary);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  opacity: 1;
  pointer-events: all;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.video-modal__content {
  position: relative;
  z-index: 10001;
  width: auto;
  height: 90vh;
  max-width: 90vw;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.show .video-modal__content {
  transform: scale(1);
}

.video-modal__content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.video-modal__close:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

/* FAQ */
.faq__list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--color-bg-alt);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  /* Hide default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
}

/* Trabalhe Conosco */
.join-team {
  background: var(--color-primary);
  /* The image shows a full orange background */
  background-image: url(../src/images/bg-raster-orange.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.join-team__box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.join-team__tag {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.join-team__title {
  color: #ffffff;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
}

.btn--white {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
}

.btn--white:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact */
.contact {
  background-color: var(--color-bg-alt);
  padding: 3rem 0;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact__form {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: 8px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact__benefits {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

/* Social Section */
.social-section {
  background-color: #f2f2f2;
  padding: 4rem 0;
}

.social-section__title {
  color: #666666;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-transform: none;
}

.social-section__icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-section__icons a {
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-section__icons a:hover {
  transform: scale(1.1);
  color: #d1750e;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid #eeeeee;
  text-align: center;
  background-color: #ffffff;
  color: #333333;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.footer__partners {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.footer__partners img {
  height: 20px;
  /* reduced from 30px */
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  opacity: 0.8;
  /* Subtle blend */
  transition: opacity 0.3s;
}

.footer__partners img:hover {
  opacity: 1;
}

.footer__apps i:hover {
  color: var(--color-primary) !important;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  color: #666666;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .about__container,
  .structure__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about__image-wrapper img,
  .partner-logo {
    margin: 0 auto;
  }

  .structure__content {
    order: 1;
  }

  .structure__partners {
    order: 2;
    gap: 1.5rem;
  }

  .partner-logo {
    max-width: 110px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact__benefits {
    flex-direction: column;
    align-items: center;
  }

  .plan-features {
    text-align: center;
  }

  .plan-features li {
    list-style-position: inside;
  }

  .faq-item summary {
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }

  .faq-item p {
    text-align: center;
  }

  .join-team__title {
    font-size: 2rem;
  }

  .unit-card__body {
    text-align: center;
  }

  .form-group label,
  .form-group input,
  .form-group select {
    text-align: center;
  }

  .plans__card.featured {
    transform: none;
  }

  /* Reset scale on mobile */
}

@media (max-width: 768px) {
  .nav {
    display: none;
    /* Hide nav on mobile (would need JS to toggle) */
  }

  .header__btn {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    margin-left: auto;
    margin-right: 1rem;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Mobile Menu Active State (managed by JS) */
  .nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-alt);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 2px solid var(--color-primary);
  }

  .nav.active .nav__list {
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    font-size: 2rem;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer__apps-inline {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .footer__partners {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__partners-label {
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
}

/* Scroll Animation Classes */
.scroll-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Delays */
.plans__grid .card:nth-child(2) {
  transition-delay: 0.2s;
}

.units__grid .card:nth-child(2) {
  transition-delay: 0.2s;
}


/* =========================================
   Unit Detail Pages
   ========================================= */

.unit-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.unit-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.unit-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-bg), rgba(23, 23, 28, 0.4));
  z-index: -1;
}

.unit-hero__content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.unit-hero__location {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Info Grid */
.unit-info {
  margin-top: -4rem;
  /* Overlap hero */
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.unit-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
}

.info-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  /* height: 250px; */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* =========================================
   Cookie Banner (LGPD)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(30, 30, 36, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cookie-banner__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cookie-banner__content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cookie-banner__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
}

.btn--sm {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

/* =========================================
   Consolidation from Extra Pages and Inline Styles
   ========================================= */
.thank-you-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/hero.png') no-repeat center/cover;
  padding: 2rem;
}

.icon-success {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
}

.waitlist-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/structure.png') no-repeat center/cover;
  padding: 2rem;
}

.icon-wait {
  font-size: 4rem;
  color: #FF5722;
  /* Warning color */
  margin-bottom: 1rem;
  display: block;
}

.waitlist-form {
  max-width: 400px;
  margin: 2rem auto;
}

.img-grayscale {
  filter: grayscale(100%);
}

.footer__partners-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-right: 0.5rem;
}

.footer__apps-inline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  border-left: 1px solid #ddd;
  padding-left: 2rem;
}

.footer__apps-label {
  font-size: 0.9rem;
  color: #666;
}

.footer__app-icon {
  font-size: 1.5rem;
  color: #666;
  transition: color 0.3s;
}

.footer__app-icon:hover {
  color: var(--color-primary);
}