/* ── RESET & BASE ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-1: #e5e5e5;
  --bg-2: #ffffff;
  --surface: #f5f5f3;
  --surface2: #eaeae6;
  --border: #d5d5d0;
  --border2: #c0c0b8;
  --text: #1a1a18;
  --text2: #4a4a44;
  --muted: #7a7a72;
  --muted2: #a0a098;
  --gold: #c5a059;
  --gold-dark: #a8863e;
  --gold-dim: rgba(197, 160, 89, 0.12);
  --gold-border: rgba(197, 160, 89, 0.3);
  --white: #ffffff;
  --dark: #1a1a18;
  --dark-surface: #222220;
  --dark-border: #333330;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-2);
  /* Fundo branco base */
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

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

/* ── PARALLAX BACKGROUND ── */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/parallax-bg.png');
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* Fica atrás de tudo */
  opacity: 0.25;
  /* Mais visível como solicitado */
  pointer-events: none;
}

.section-bg-1 {
  background: var(--bg-1);
  /* Cinza sólido, cobre a logo */
  position: relative;
  z-index: 1;
}

.section-bg-2 {
  background: transparent;
  /* Transparente, revela a logo no fundo */
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

h1 {
  font-size: clamp(24px, 5vw, 60px);
  white-space: nowrap;
}

h2 {
  font-size: clamp(22px, 4vw, 42px);
  white-space: nowrap;
}

h3 {
  font-size: clamp(18px, 2vw, 24px);
}

.hero-sub {
  color: var(--white);
  font-size: clamp(10px, 1.6vw, 18px);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
  white-space: normal;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PILL NAV ── */
.pill-nav-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: auto;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.pill-nav-container.hidden {
  transform: translateX(-50%) translateY(-100px);
  opacity: 0;
  pointer-events: none;
}

.pill-nav {
  background: rgba(255, 255, 255, 0.15);
  /* Ainda mais transparente */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.pill-nav a {
  text-decoration: none;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.pill-nav a.active {
  background: #000;
  color: #fff !important;
}

.pill-nav a:not(.active):hover {
  background: rgba(255, 255, 255, 0.3);
}

.pill-lang-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  padding: 3px;
  margin-left: 8px;
}

.pill-lang-toggle .lang-btn {
  background: none;
  border: none;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
}

.pill-lang-toggle .lang-btn.active {
  background: #fff;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pill-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: 4px;
}

.pill-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .pill-nav-container {
    top: 15px;
    width: 95%;
  }

  .pill-nav {
    width: 100%;
    justify-content: space-between;
    padding: 4px 8px;
  }

  .pill-nav a {
    padding: 8px 16px;
    font-size: 12px;
  }

  .pill-lang-toggle {
    display: none;
  }

  .pill-hamburger {
    display: flex;
  }
}

display: flex;
justify-content: flex-end;
/* Tudo para a direita */
align-items: center;
max-width: 96%;
margin: 0 auto;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 10px;
  /* Pequeno ajuste de respiro no final */
}

.logo-img {
  height: 50px;
  /* Aumentei um pouco para destaque */
  width: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.1);
}

.lang-toggle {
  display: flex;
  gap: 8px;
}

.nav-cta {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  border-radius: 25px;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  gap: 4px;
  margin-left: 24px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--white);
  /* Alterado para branco para visibilidade */
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
}

.lang-btn:hover {
  color: var(--gold);
  opacity: 0.8;
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

/* Garante que os botões fiquem escuros quando a barra de navegação for branca (ao rolar) */
nav.scrolled .lang-btn {
  color: var(--muted);
}

nav.scrolled .lang-btn.active {
  color: var(--gold);
}

nav.scrolled .lang-btn:hover {
  color: var(--text);
}

.lang-btn img {
  width: 18px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

@media (max-width: 960px) {

  .nav-links,
  .lang-toggle {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(229, 229, 229, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
}

.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.mobile-lang .lang-btn {
  font-size: 14px;
  padding: 8px 16px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 48vh 24px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: revealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
  white-space: nowrap;
}

/* ── MOBILE REFINEMENTS ── */
@media (max-width: 768px) {

  .section-bg-1,
  .section-bg-2,
  .method,
  .contact,
  .partners,
  .diffs,
  .audience,
  .callout {
    padding: 60px 0;
    /* Mais compacto para telas menores */
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }

  /* Hero Mobile */
  .hero {
    padding-top: 45vh;
    padding-left: 16px;
    padding-right: 16px;
    background-position: center 15%;
  }

  .hero h1 {
    letter-spacing: 1px;
    white-space: normal;
    padding: 0;
    line-height: 1.25;
    font-size: clamp(20px, 6vw, 26px);
  }
  
  h1, h2 {
    white-space: normal !important;
  }

  .hero-sub {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 0;
    white-space: normal;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Carousel Mobile */
  .partner-card {
    min-width: 200px;
    height: 130px;
    padding: 15px;
  }

  .partners-track {
    padding: 0;
    gap: 20px;
  }

  /* Layout Grids */
  .contact-inner {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .contact-text {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 40px;
  }

  .contact-form {
    width: 100% !important;
  }

  .contact-social {
    justify-content: center !important;
    margin-top: 20px;
  }

  .container {
    padding: 0 20px !important;
    width: 100% !important;
  }

  .nav-inner {
    justify-content: space-between;
    padding: 0 20px;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .nav-actions {
    gap: 8px;
  }

  .logo-img {
    height: 28px;
  }

  .lang-selector {
    gap: 4px;
  }

  .lang-btn {
    padding: 4px 6px;
    font-size: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  /* Premium Footer Mobile */
  .premium-footer {
    padding: 60px 0 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }

  .footer-logo-section {
    align-items: center;
  }

  .footer-logo-section img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  /* Stats grid mobile */
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(18px, 5vw, 22px);
    white-space: normal !important;
  }
  
  h1, h2 {
    white-space: normal !important;
  }

  .hero-sub {
    font-size: 9px;
    letter-spacing: 1.5px;
    white-space: normal;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero {
    padding-top: 42vh;
  }

  .partner-card {
    min-width: 180px;
  }

  .premium-footer {
    padding: 50px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-col p,
  .footer-col a {
    font-size: 12px;
  }
}




/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 16px 48px;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.2);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 16px 48px;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 25px;
  color: var(--gold);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── SECTIONS ── */
.section-bg-1 {
  background: var(--bg-1);
}

.section-bg-2 {
  background: var(--bg-2);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

/* ── OPERAÇÃO VIRTUAL ── */
.operation {
  padding: 100px 0;
  background: var(--bg-1);
  text-align: center;
}

.operation h2 {
  margin-bottom: 48px;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
  background: transparent;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  background: #000; /* Fundo preto enquanto carrega */
}

/* ── CALLOUT ── */
.callout {
  padding: 80px 0;
  background: var(--bg-2);
  text-align: center;
  position: relative;
}

.callout h2 {
  margin-bottom: 40px;
  max-width: 1000px;
  /* Aumentado para ajudar no encaixe do texto longo */
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(20px, 3vw, 34px);
  /* Reduzido para garantir o encaixe da primeira linha */
  letter-spacing: 2px;
}

/* ── MÉTODO SLIM ── */
.method {
  padding: 120px 0;
  background: var(--bg-1);
}

.method-header {
  text-align: center;
  margin-bottom: 64px;
}

.method-header h2 {
  margin-bottom: 16px;
}

.method-header p {
  color: var(--text2);
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.method-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.method-content p {
  font-size: 18px;
  /* Aumentado em 3px */
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 20px;
}

.method-content strong {
  color: var(--text);
}

.method-list {
  list-style: none;
  margin-bottom: 40px;
  display: inline-block;
  text-align: left;
}

.method-list li {
  font-size: 18px;
  /* Aumentado em 3px */
  color: var(--text2);
  line-height: 1.9;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.method-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.method-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text);
  font-style: italic;
  text-align: center;
  margin: 40px 0;
  padding: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── TOQUE ÚNICO ── */
.unique {
  padding: 120px 0;
  background: var(--bg-2);
}

.unique-header {
  text-align: center;
  margin-bottom: 72px;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: all 0.4s ease;
}

/* Quando o mouse entra no grid, todos os cards tentam ficar levemente opacos/desfocados */
.unique-grid:hover .unique-card {
  opacity: 0.6;
  filter: blur(2px);
  transform: scale(0.98);
}

/* O card que está com o mouse em cima ganha destaque total e o salto */
.unique-grid:hover .unique-card:hover {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
  z-index: 2;
}

.unique-card {
  padding: 48px 32px;
  text-align: center;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.unique-card:hover::after {
  transform: scaleX(1);
}

.unique-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  /* Remove o fundo branco */
  filter: contrast(1.1) brightness(1.05);
  /* Deixa as cores mais vivas */
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.unique-card h3 {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.unique-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .unique-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PARA QUEM É ── */
.audience {
  padding: 120px 0;
  background: var(--bg-1);
}

.audience-header {
  text-align: center;
  margin-bottom: 72px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Efeito de foco: quando o mouse entra no grid, todos os cards suavizam */
.audience-grid:hover .audience-card {
  opacity: 0.6;
  filter: blur(2px);
  transform: scale(0.98);
}

/* O card sob o mouse ganha destaque total e o salto */
.audience-grid:hover .audience-card:hover {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
  z-index: 2;
}

.audience-card {
  padding: 48px 24px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  /* Transição suave e premium */
  position: relative;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  border-radius: 10px 10px 0 0;
}

.audience-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.audience-card:hover::before {
  transform: scaleX(1);
}

.audience-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PARCEIROS ── */
.partners {
  padding: 100px 0;
  background: var(--bg-2);
  text-align: center;
}

.partners h2 {
  margin-bottom: 16px;
}

.partners-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 56px;
  letter-spacing: 1px;
}

.partners-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 40px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  gap: 20px;
  /* padding removido para centralização precisa */
}

.partner-card {
  min-width: 320px;
  height: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: blur(2px) grayscale(1);
  opacity: 0.3;
  transform: scale(0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card.active {
  filter: blur(0) grayscale(0);
  opacity: 1;
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  background: var(--white);
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all 0.3s;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ── FORMULÁRIO ── */
.contact {
  padding: 120px 0;
  background: var(--bg-1);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  margin-bottom: 24px;
}

.contact-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 16px;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  background: var(--gold);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 18px 48px;
  border: none;
  border-radius: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.form-submit:hover {
  background: #c5a059;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
  .form-submit {
    width: 100%;
    text-align: center;
  }
}

.form-submit:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.2);
}

@media (max-width: 960px) {
  .hero {
    background-position: center 10%;
    /* Ajuste fino para mobile */
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
/* ── NEW PREMIUM FOOTER ── */
.premium-footer {
    background: #000;
    color: #fff;
    padding: 100px 0 80px;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-col p, .footer-col a {
    font-size: 11px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 0;
    display: block;
    letter-spacing: 0.5px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-logo-section img {
    height: 45px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* Logo white as in image */
}

.footer-logo-section .footer-copy {
    display: none;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    width: 100%;
}

.footer-bottom .footer-copy {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer-bottom {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
  color: white;
  font-size: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.5);
}

/* ── ANIMATIONS ── */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ── i18n: Language control ── */
[data-lang-pt],
[data-lang-en],
[data-lang-es] {
  display: none;
}

html[lang="pt-BR"] [data-lang-pt] {
  display: inline;
}

html[lang="en"] [data-lang-en] {
  display: inline;
}

html[lang="es"] [data-lang-es] {
  display: inline;
}

/* For block elements */
[data-lang-block-pt],
[data-lang-block-en],
[data-lang-block-es] {
  display: none !important;
}

html[lang="pt-BR"] [data-lang-block-pt] {
  display: block !important;
}

html[lang="en"] [data-lang-block-en] {
  display: block !important;
}

html[lang="es"] [data-lang-block-es] {
  display: block !important;
}