/* =========================
   VARIÁVEIS
========================= */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-gold-primary: #ffd966;
  --color-gold-secondary: #f2c94c;
  --color-gold-border: #d4af37;

  --color-text-primary: #ffd966;
  --color-text-secondary: #e5e5e5;

  --container-width: 1200px;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-black);
  color: var(--color-text-secondary);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* =========================
   UTILITÁRIOS
========================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  justify-content: center;
  align-items: center;
}

/* =========================
   HEADER
========================= */
.header {
  padding: 2rem 0;
}

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

.logo img {
  max-height: 150px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text-primary);
  font-weight: 500;
  position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold-primary);
}

/* =========================
   HERO
========================= */
.hero {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text-primary);
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
}

.hero container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   FEATURES / DIFERENCIAIS
========================= */
.features {
  background-color: var(--color-gold-primary);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  color: var(--color-black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================
   BOTÃO
========================= */
.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  background-color: var(--color-gold-primary);
  color: var(--color-black);
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid var(--color-gold-border);
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--color-gold-secondary);
  transform: translateY(-2px);
}

/* CTA SPLIT */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 500px;
}

/* IMAGEM */
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTEÚDO */
.cta-content {
  background-color: #000;
  color: #ffd84d;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  color: #f1f1f1;
  max-width: 420px;
  margin-bottom: 32px;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-black);
  background-color: var(--color-gold-primary);
}

.text-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

.socials {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  animation: reveal 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

/* =========================
   CONTATO / CTA
========================= */

.contact-cta {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.contact-card {
  background-color: var(--color-gold-primary);
  border: 2px solid var(--color-gold-border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card img {
  width: 48px;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--color-black);
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 217, 102, 0.25);
}

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

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero {
    text-align: center;
    align-items: center;
  }

  .hero p {
    max-width: 100%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 220px;
  }

  .text-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  @media (max-width: 900px) {
    .cta-split {
      grid-template-columns: 1fr;
    }

    .cta-content {
      text-align: center;
      align-items: center;
      padding: 50px 30px;
    }

    .cta-content h2 {
      font-size: 2.1rem;
    }

    .cta-content p {
      max-width: 100%;
    }
  }
}
