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

body {
  font-family: 'Inter', sans-serif;
  background: #0c130d;
  color: #f5f5f5;
}

/* ===================== NAV ===================== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
}

.nav {
  background: rgba(182, 241, 119, 0.2);
  border: 1px solid rgba(182, 241, 119, 0.2);
  border-radius: 100px;
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: relative;
  isolation: isolate;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: -1;
}

.nav-logo { display: flex; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  color: #f5f5f5;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}


.nav-divider {
  height: 35px;
  width: 1px;
  background: #f5f5f5;
  opacity: 0.5;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 720px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #43562a;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  width: 100%;
  padding: 120px 32px;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: #f5f5f5;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #f5f5f5;
}

.bignumbers {
  display: flex;
  gap: 8px;
  width: 100%;
}

.bignumber {
  flex: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(182, 241, 119, 0.2);
  border: 1px solid rgba(182, 241, 119, 0.2);
  border-radius: 24px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 16px;
}

.bignumber-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(182, 241, 119, 0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}

.bignumber-text { display: flex; flex-direction: column; text-align: left; }

.bignumber-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #b6f177;
}

.bignumber-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #b6f177;
}

/* ===================== SECTIONS ===================== */
section { width: 100%; }

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 64px 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.72px;
  color: #f5f5f5;
  text-align: center;
  width: 100%;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #f5f5f5;
  text-align: center;
  width: 100%;
}

/* ===================== CATEGORIES ===================== */
.categories {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 2px solid #43562a;
  padding: 0;
}

.cat-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
  border-radius: 24px;
  color: #43562a;
  transition: all 0.2s;
}

.cat-btn.active {
  background: #43562a;
  border-color: #43562a;
  color: #b6f177;
}

/* ===================== CARDS ===================== */
.cards-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.card-label {
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(245, 245, 245, 0.6);
  border: 1px solid rgba(245, 245, 245, 0.6);
  border-radius: 24px;
  padding: 4px 16px;
  width: 100%;
}

.card-label p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #111;
}

/* ===================== PARTNERS ===================== */
.row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.partner-card {
  flex: 1;
  background: #152018;
  border: 1px solid #1b2a1e;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #b6f177;
}

.partner-divider {
  height: 1px;
  background: #1b2a1e;
  width: 100%;
  margin: 2px 0;
}

.partner-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #f5f5f5;
}

.logo-card {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  width: 100%;
}

/* ===================== CONTACT ===================== */
.contact-card {
  flex: 1;
  background: #152018;
  border: 1px solid #1b2a1e;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 8px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #1b2a1e;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
}

.contact-info { display: flex; flex-direction: column; }

.contact-info strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #b6f177;
}

.contact-info span {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #b6f177;
}

/* ===================== FOOTER ===================== */
footer {
  background: #152018;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-logo span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #f5f5f5;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: #f5f5f5;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-right p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #f5f5f5;
  text-align: right;
}

/* ===================== MODAL ===================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

#modal-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 24px;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(245, 245, 245, 0.6);
  border: 1px solid rgba(245, 245, 245, 0.6);
  border-radius: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  transition: all 0.2s ease;
  flex-shrink: 0;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(245, 245, 245, 0.8);
  border-color: rgba(245, 245, 245, 0.8);
}

.modal-title-glass {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(245, 245, 245, 0.6);
  border: 1px solid rgba(245, 245, 245, 0.6);
  border-radius: 24px;
  padding: 12px 20px;
  width: 100%;
  margin-top: 20px;
}

.modal-title-glass p {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #111;
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */

/* Mobile (até 640px) */
@media (max-width: 640px) {
  .nav-wrapper {
    padding: 12px;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 40;
  }

  .nav-menu.active {
    max-height: 100vh;
    padding: 16px;
    border: 1px solid rgba(182, 241, 119, 0.2);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background: rgba(182, 241, 119, 0.2);
  }

  .nav-btn {
    font-size: 12px;
    padding: 12px 16px;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    border-radius: 0;
  }

  .nav-divider {
    display: none;
  }

  .nav-phone {
    font-size: 12px;
    padding: 12px 16px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    cursor: pointer;
  }

  .nav-divider {
    height: 1px;
    background: #1b2a1e;
    margin: 8px 0;
  }

  .hero {
    height: 500px;
    padding-top: 80px;
  }

  .hero-content {
    padding: 80px 16px;
    gap: 12px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .bignumbers {
    flex-direction: column;
    gap: 12px;
  }

  .bignumber {
    padding: 12px;
    gap: 8px;
  }

  .bignumber-icon {
    width: 28px;
    height: 28px;
  }

  .bignumber-title {
    font-size: 12px;
    line-height: 16px;
  }

  .bignumber-desc {
    font-size: 11px;
    line-height: 16px;
  }

  .section-inner {
    padding: 24px 16px;
    gap: 12px;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.48px;
  }

  .section-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .categories {
    flex-wrap: wrap;
    border-radius: 50px;
  }

  .cat-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .cards-list {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .card {
    width: 100%;
    aspect-ratio: 1;
    padding: 16px;
    border-radius: 16px;
  }

  .card-label {
    border-radius: 16px;
    padding: 4px 12px;
  }

  .card-label p {
    font-size: 12px;
    line-height: 16px;
  }

  .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  #logos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-card {
    aspect-ratio: 1;
    height: auto;
    min-height: 150px;
    width: 100%;
    flex: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .partner-card {
    padding: 16px;
    gap: 6px;
  }

  .partner-card-title {
    font-size: 14px;
    line-height: 20px;
  }

  .partner-item {
    font-size: 13px;
    line-height: 20px;
  }

  .contact-card {
    padding: 12px;
    gap: 8px;
  }

  .contact-icon {
    width: 28px;
    height: 28px;
  }

  .contact-info strong {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-info span {
    font-size: 11px;
    line-height: 16px;
  }

  footer {
    padding: 24px 16px;
    justify-content: center;
    gap: 12px;
  }

  .footer-container {
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo {
    gap: 6px;
  }

  .footer-logo span {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-right {
    gap: 6px;
  }

  .footer-right p {
    font-size: 11px;
    line-height: 16px;
  }
}

/* Tablet (641px a 1023px) */
@media (min-width: 641px) and (max-width: 1023px) {
  .nav-wrapper {
    padding: 14px;
  }

  .nav {
    padding: 12px 20px;
  }

  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    flex-direction: row;
    max-height: none;
    gap: 24px;
    padding: 0;
    background: none;
    border: none;
    border-bottom: none;
    border-radius: 0;
    overflow: visible;
    transition: none;
    z-index: auto;
    align-items: center;
  }

  .nav-menu.active {
    max-height: none;
    padding: 0;
  }

  .nav-btn {
    font-size: 13px;
    padding: 6px;
    width: auto;
    white-space: normal;
    border-radius: 8px;
  }

  .nav-phone {
    font-size: 13px;
    padding: 8px;
    width: auto;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .nav-divider {
    height: 35px;
    width: 1px;
    background: #f5f5f5;
    margin: 0;
  }

  .hero {
    height: 600px;
  }

  .hero-content {
    padding: 100px 24px;
    gap: 14px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: -0.72px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .bignumbers {
    gap: 12px;
  }

  .section-inner {
    padding: 28px 24px;
    gap: 14px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .cat-btn {
    font-size: 13px;
    padding: 7px 14px;
  }

  .cards-list {
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
  }

  .card {
    width: 100%;
    aspect-ratio: 1;
  }

  .card-label p {
    font-size: 14px;
    line-height: 20px;
  }

  .partner-card {
    padding: 20px;
  }

  .logo-card {
    aspect-ratio: 1;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-card {
    padding: 14px;
  }

  footer {
    padding: 28px 24px;
  }

  .footer-container {
    gap: 16px;
  }

  .footer-logo span {
    font-size: 15px;
  }

  .footer-right p {
    font-size: 11px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    flex-direction: row;
    max-height: none;
    gap: 24px;
    padding: 0;
    background: none;
    border: none;
    border-bottom: none;
    border-radius: 0;
    overflow: visible;
    transition: none;
    z-index: auto;
  }

  .nav-menu.active {
    max-height: none;
    padding: 0;
  }

  .nav-btn {
    width: auto;
    white-space: normal;
    border-radius: 8px;
  }

  .nav-phone {
    width: auto;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .nav-divider {
    height: 35px;
    width: 1px;
    background: #f5f5f5;
    margin: 0;
  }
}