@font-face {
  font-family: "Coolvetica";
  src: url("assets/fonts/Coolvetica Rg.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-azul-diamante: #4BB8D5;
  --color-azul-foguete: #2A3168;
  --color-branco-alma: #FFFFFF;
  --color-branco-academia: #E7F0F2;
  --gradient-start: #18A9E0;
  --gradient-mid: #4BB8D5;
  --gradient-end: #8AC7AD;
  --gradient-marca: linear-gradient(135deg, #18A9E0 0%, #4BB8D5 50%, #8AC7AD 100%);
  --text-secondary: rgba(42, 49, 104, 0.65);
  --font-display: "Coolvetica", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-animate {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .float-decor,
  .hero-blob,
  .hero-decor,
  .professor-blob,
  .professor-decor,
  .intro-decor,
  .learn-decor,
  .lotes-decor,
  .cta-decor,
  .footer-decor,
  .info-decor,
  .btn-pulse,
  .urgency-alert,
  .urgency-badge,
  .lote-featured,
  .lote-featured-decor {
    animation: none !important;
  }

  .hero-decor {
    opacity: 0.14 !important;
  }
}

/* —— Motion tokens —— */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleInX {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(12px, -18px) scale(1.04); }
  66% { transform: translate(-8px, 10px) scale(0.97); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(24, 169, 224, 0.2); }
  50% { box-shadow: 0 8px 32px rgba(75, 184, 213, 0.45); }
}

@keyframes pulseSoft {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  70% { transform: translateY(-2px); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left { transform: translateX(-36px); }
.reveal.reveal-right { transform: translateX(36px); }
.reveal.reveal-scale { transform: scale(0.92); }

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }

/* Ícone “pula” quando o item entra na viewport */
.reveal.is-visible .anim-icon {
  animation: iconBounce 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* —— Hero entrance (on load) —— */
.hero-animate {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate--1 { animation-delay: 0.1s; }
.hero-animate--2 { animation-delay: 0.25s; }
.hero-animate--3 { animation-delay: 0.4s; }
.hero-animate--4 { animation-delay: 0.55s; }
.hero-animate--5 { animation-delay: 0.7s; }
.hero-animate--6 { animation-delay: 0.85s; }

.hero-divider.hero-animate {
  transform-origin: center;
  animation-name: scaleInX;
  animation-duration: 0.6s;
}

/* Decorativos flutuantes */
.float-decor {
  animation: floatSoft 7s ease-in-out infinite;
  will-change: transform;
}

.float-decor--slow { animation-duration: 10s; animation-delay: -2s; }
.float-decor--delay { animation-duration: 8s; animation-delay: -4s; }

body {
  font-family: var(--font-body);
  color: var(--color-azul-foguete);
  line-height: 1.6;
  background: var(--color-branco-alma);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, filter 0.3s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn:active { transform: translateY(-1px); }

.btn-primary {
  background-image: var(--gradient-marca);
  color: var(--color-branco-alma);
  box-shadow: 0 4px 16px rgba(24, 169, 224, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(75, 184, 213, 0.4);
}

.btn-pulse {
  animation: pulseSoft 2.8s ease-in-out 1.6s infinite;
}

.btn-pulse:hover,
.btn-pulse:active {
  animation: none;
}

/* Entrada do hero + pulse sem sobrescrever um ao outro */
.hero-animate.btn-pulse {
  animation:
    fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    pulseSoft 2.8s ease-in-out infinite;
  animation-delay: 0.85s, 1.9s;
}

.hero-animate.btn-pulse:hover,
.hero-animate.btn-pulse:active {
  animation: none;
  opacity: 1;
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 24px; font-size: 14px; }

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

/* Tags & titles */
.tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-azul-diamante);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  color: var(--color-azul-foguete);
  text-align: center;
  line-height: 1.15;
}

.section-title-light { color: var(--color-branco-alma); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(42, 49, 104, 0.1);
  background: rgba(255, 255, 255, 0.97);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo { display: flex; align-items: center; text-decoration: none; }

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-azul-foguete);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--gradient-marca);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover { color: var(--color-azul-diamante); }

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-azul-foguete);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero — centered composition */
.hero {
  position: relative;
  background: var(--color-azul-foguete);
  padding: 80px 24px 96px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 100px 80px; }
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-blob-top {
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  background: radial-gradient(circle, rgba(75, 184, 213, 0.38) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  animation: float 14s ease-in-out infinite;
}

.hero-blob-bottom {
  width: min(480px, 75vw);
  height: min(480px, 75vw);
  background: radial-gradient(circle, rgba(138, 199, 173, 0.27) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.hero-decor-foguete {
  width: 180px;
  height: auto;
  top: 60px;
  right: 4%;
  animation: fadeInDecor 1.2s ease 0.6s forwards, floatSoft 8s ease-in-out 1.8s infinite;
}

.hero-decor-diamante {
  width: 140px;
  height: auto;
  bottom: 80px;
  left: 3%;
  animation: fadeInDecorSoft 1.2s ease 0.9s forwards, floatSoft 10s ease-in-out 2.2s infinite;
}

@keyframes fadeInDecor {
  from { opacity: 0; }
  to { opacity: 0.14; }
}

@keyframes fadeInDecorSoft {
  from { opacity: 0; }
  to { opacity: 0.12; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 900px;
}

.hero-brand { letter-spacing: 4px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 400;
  color: var(--color-branco-alma);
  line-height: 1.1;
  max-width: 900px;
}

.hero-divider {
  width: 120px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient-marca);
}

.hero-subtitle {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  color: var(--color-azul-diamante);
  max-width: 720px;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
}

@media (max-width: 640px) {
  .hero-decor { display: none; }
  .hero-description { font-size: 14px; }
}

/* Info */
.info-section {
  position: relative;
  background: var(--color-branco-academia);
  padding: 48px 24px;
  overflow: hidden;
}

.info-decor {
  position: absolute;
  width: 48px;
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  top: 24px;
  animation: floatSoft 9s ease-in-out infinite;
}

.info-decor-left { left: 80px; }
.info-decor-right {
  right: 80px;
  animation-delay: -3s;
  animation-duration: 11s;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  text-align: center;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.info-icon {
  color: var(--color-azul-diamante);
  margin-bottom: 4px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover .info-icon { transform: scale(1.12); }

.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-azul-diamante);
}

.info-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  color: var(--color-azul-foguete);
  line-height: 1.2;
}

.info-divider {
  display: none;
  width: 1px;
  height: 60px;
  background: rgba(42, 49, 104, 0.12);
}

@media (min-width: 768px) {
  .info-divider { display: block; }
  .info-decor { display: block; }
}

@media (max-width: 767px) {
  .info-decor { display: none; }
}

/* Intro */
.intro-section {
  position: relative;
  background: var(--color-branco-alma);
  padding: 80px 24px;
  overflow: hidden;
}

.intro-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: floatSoft 9s ease-in-out infinite;
}

.intro-decor-diamante {
  width: 160px;
  height: auto;
  top: 40px;
  right: 5%;
}

.intro-decor-capelo {
  width: 120px;
  height: auto;
  bottom: 40px;
  left: 4%;
  opacity: 0.08;
  animation-delay: -4s;
  animation-duration: 11s;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 800px;
}

.intro-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 760px;
}

@media (max-width: 640px) {
  .intro-decor { display: none; }
  .intro-section { padding: 64px 24px; }
  .intro-body { font-size: 14px; }
}

/* Learn */
.learn-section {
  position: relative;
  background: var(--color-branco-academia);
  padding: 80px 24px;
  overflow: hidden;
}

.learn-decor {
  position: absolute;
  width: 140px;
  height: auto;
  top: 50px;
  right: 4%;
  opacity: 0.1;
  pointer-events: none;
  animation: floatSoft 10s ease-in-out infinite;
}

.learn-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.learn-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 12px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s;
}

.learn-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.55);
}

.learn-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.learn-item:hover .learn-icon { transform: scale(1.08) rotate(-4deg); }

.learn-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.learn-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 400;
  color: var(--color-azul-foguete);
}

.learn-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .learn-decor { display: none; }
  .learn-section { padding: 64px 24px; }
  .learn-desc { font-size: 14px; }
}

/* Professor */
.professor-section {
  position: relative;
  background: var(--color-azul-foguete);
  padding: 80px 24px;
  overflow: hidden;
}

.professor-blob {
  position: absolute;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(75, 184, 213, 0.38) 0%, transparent 70%);
  top: -40px;
  right: -40px;
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}

.professor-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  animation: floatSoft 9s ease-in-out infinite;
}

.professor-decor-capelo {
  width: 150px;
  height: auto;
  top: 60px;
  right: 6%;
}

.professor-decor-diamante {
  width: 110px;
  height: auto;
  bottom: 60px;
  left: 4%;
  opacity: 0.1;
  animation-delay: -3.5s;
  animation-duration: 11s;
}

.professor-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.professor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.professor-avatar-wrap {
  width: 160px;
  height: 180px;
  border-radius: 50% / 45%;
  padding: 3px;
  background: var(--gradient-marca);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}

.professor-card:hover .professor-avatar-wrap {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(75, 184, 213, 0.35);
}

.professor-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50% / 45%;
  display: block;
  background: var(--color-azul-foguete);
}

.professor-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 400;
  color: var(--color-branco-alma);
}

.professor-role {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 420px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .professor-decor { display: none; }
  .professor-role { font-size: 13px; }
}

/* Lotes */
.lotes-section {
  position: relative;
  background: var(--color-branco-academia);
  padding: 80px 24px;
  overflow: hidden;
}

.lotes-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  animation: floatSoft 10s ease-in-out infinite;
}

.lotes-decor-foguete {
  width: 170px;
  height: auto;
  top: 60px;
  right: 4%;
  opacity: 0.1;
}

.lotes-decor-diamante {
  width: 100px;
  height: auto;
  bottom: 80px;
  left: 3%;
  opacity: 0.16;
  animation-delay: -4s;
  animation-duration: 12s;
}

.lotes-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 720px;
}

.lotes-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.lotes-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.urgency-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  border-radius: 12px;
  background: var(--gradient-marca);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.urgency-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-azul-foguete);
  background: var(--color-branco-alma);
  padding: 6px 12px;
  border-radius: 6px;
  animation: badgePulse 2.4s ease-in-out infinite;
}

.urgency-message {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-branco-alma);
}

.lotes-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.lote-featured {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 36px 40px;
  border-radius: 16px;
  background: var(--color-azul-foguete);
  overflow: hidden;
  text-align: center;
  animation: pulseGlow 3.5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lote-featured:hover { transform: translateY(-4px); }

.lote-featured-decor {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 64px;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  animation: floatSoft 6s ease-in-out infinite;
}

.lote-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--gradient-marca);
  color: var(--color-branco-alma);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lote-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-azul-foguete);
}

.lote-name-featured {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--color-azul-diamante);
}

.lote-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.lote-old-price {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.lote-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.lote-currency {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-branco-alma);
}

.lote-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 52px);
  line-height: 1;
  color: var(--color-branco-alma);
}

.lote-spots {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.lote-savings {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-azul-diamante);
}

.lote-cta { width: 100%; max-width: 360px; }

.lote-warning {
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}

.lotes-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 560px) {
  .lotes-secondary { grid-template-columns: 1fr 1fr; }
}

.lote-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--color-branco-alma);
  border: 1px solid #E7F0F2;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.lote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(42, 49, 104, 0.08);
}

.lote-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lote-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--color-branco-academia);
  padding: 4px 10px;
  border-radius: 6px;
}

.lote-card-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 32px);
  color: var(--color-azul-foguete);
}

@media (max-width: 640px) {
  .lotes-decor { display: none; }
  .lote-featured { padding: 28px 24px; }
  .lote-featured-decor { width: 48px; }
  .lotes-subtitle { font-size: 14px; }
  .urgency-message { font-size: 13px; text-align: center; }
}

/* CTA Final */
.cta-final-section {
  position: relative;
  background: var(--color-branco-alma);
  padding: 96px 24px;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  pointer-events: none;
  animation: floatSoft 9s ease-in-out infinite;
}

.cta-decor-foguete {
  width: 130px;
  height: auto;
  top: 40px;
  right: 5%;
  opacity: 0.18;
}

.cta-decor-diamante {
  width: 110px;
  height: auto;
  bottom: 40px;
  left: 4%;
  opacity: 0.1;
  animation-delay: -3s;
  animation-duration: 11s;
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 820px;
}

.cta-final-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

@media (max-width: 640px) {
  .cta-decor { display: none; }
  .cta-final-section { padding: 72px 24px; }
  .cta-final-body { font-size: 14px; }
  .btn-lg { padding: 16px 28px; font-size: 14px; width: 100%; max-width: 360px; }
}

/* Footer */
.footer {
  position: relative;
  background: var(--color-azul-foguete);
  padding: 40px 24px 20px;
  overflow: hidden;
}

.footer-decor {
  position: absolute;
  width: 80px;
  height: auto;
  top: 24px;
  right: 5%;
  opacity: 0.12;
  pointer-events: none;
  animation: floatSoft 12s ease-in-out infinite;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-azul-diamante);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.footer-link:hover { opacity: 0.8; color: var(--color-branco-alma); }

.footer-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* Mobile nav */
@media (max-width: 767px) {
  .mobile-menu-btn { display: flex; }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-branco-alma);
    padding: 16px 24px 24px;
    box-shadow: 0 12px 24px rgba(42, 49, 104, 0.12);
  }

  .nav.nav-open { display: flex; }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-branco-academia);
  }

  .nav .btn { margin-top: 16px; width: 100%; }
}
