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

/* BODY */
body {
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
}

.navbar {
  transition: transform 0.4s ease;
}

/* ESCONDIDO */
.navbar.hide {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.navbar nav {
  display: flex;
  gap: 30px;
}

/* LINKS */
.navbar nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* LINHA ANIMADA */
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #746302;
  transition: width 0.3s ease;
}

/* HOVER */
.navbar nav a:hover {
  color: #746302;
}

.navbar nav a:hover::after {
  width: 100%;
}

/* LINK ATIVO */
.navbar nav a.active {
  color: #746302;
}

.navbar nav a.active::after {
  width: 100%;
}

/* AJUSTE DE ESPAÇO */
.header {
  margin-top: 90px;

  .header {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header img {
  max-width: 400px;
}
}

/* BOTÃO TOPO */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;

  border-radius: 50%;
  cursor: pointer;

  font-size: 20px;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

/* APARECE AO SCROLL */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* HOVER */
.back-to-top:hover {
  background: #746302;
  transform: scale(1.1);
}

/* PÁGINAS */
.page {
  display: flex;
  justify-content: center;
  align-items: center;

  background: #fff;

  padding: 80px 20px;
  margin-top: 50px;

  border-bottom: 10px solid #000;
}

.page:first-of-type {
  margin-top: 0;
}

.page img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

/* FOOTER NAV STYLE */
.footer-nav {
  background: #000;
  padding: 60px 20px 30px;
  text-align: center;

  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* QUANDO APARECE */
.footer-nav.show {
  transform: translateY(0);
  opacity: 1;
}

/* MENU */
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* LINKS */
.footer-menu a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* LINHA ANIMADA (IGUAL NAVBAR) */
.footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #ffff;
  transition: width 0.3s ease;
}

/* HOVER */
.footer-menu a:hover {
  color: #746302;
}

.footer-menu a:hover::after {
  width: 100%;
}

/* LINHA DIVISÓRIA */
.footer-divider {
  margin: 40px auto;
  width: 60%;
  height: 1px;
  background: #746302;
}

/* CRÉDITOS */
.footer-creditos {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
}

.design-by {
  color: #746302; /* cinza elegante */
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .footer {
    padding: 60px 20px 20px;
  }

  .footer-creditos {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-content {
    justify-content: center;
  }

  .footer-menu {
    align-items: center;
  }

  
}


.btn-submit:hover {
  background: #907c03;
  transform: scale(1.02);
}

/* Ajuste Responsivo para Mobile */
@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}

/* LINK TELEFONE */
.phone-link {
  color: inherit;
  text-decoration: none;
  position: relative;
}

/* UNDERLINE IGUAL NAVBAR */
.phone-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #746302;
  transition: width 0.3s ease;
}

.phone-link:hover {
  color: #746302;
}

.phone-link:hover::after {
  width: 100%;
}

/* ANIMAÇÃO INICIAL */
.page {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* QUANDO APARECE */
.page.show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGEM */
.page img {
  transition: transform 0.6s ease;
}

/* HOVER (ZOOM SUAVE) */
.page:hover img {
  transform: scale(1.03);
}

/* PROFUNDIDADE (PARALLAX LEVE) */
.page {
  will-change: transform;
}

/* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* MENU PADRÃO */
.nav-menu {
  display: flex;
  gap: 30px;
}

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

  .nav-container {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;

    background: #000;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 18px;
  }
}

.page::before {
  content: "EVENTOS CORPORATIVOS";
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  font-size: 28px;
  opacity: 0;
  transition: 0.5s;
}

.page:hover::before {
  opacity: 1;
}

/* =================================================V
   ESTILIZAÇÃO DO FORMULÁRIO DE PROSPECÇÃO (FOOTER)
   ================================================= */

.footer-contact-form {
  max-width: 600px;
  margin: 0 auto 50px auto;
  background: #0d0d0d; /* Cinza quase preto para destacar do fundo #000 */
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #746302; /* Borda dourada padrão do projeto */
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-contact-form h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #746302;
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
}

/* Campos de Texto com Contraste */
.form-group input {
  width: 100%;
  padding: 15px;
  background: #1a1a1a; /* Fundo mais claro que o container */
  border: 1px solid #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder {
  color: #666;
}

.form-group input:focus {
  border-color: #746302;
  background: #222;
}

/* Seção de Escolha de Eventos (Cards) */
.event-selection p {
  color: #746302;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.event-card {
  cursor: pointer;
  position: relative;
}

.event-card input {
  position: absolute;
  opacity: 0; /* Esconde o radio button padrão */
}

.event-card span {
  display: block;
  padding: 12px;
  background: #151515;
  border: 1px solid #333;
  color: #888;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

/* Estado: Card Selecionado */
.event-card input:checked ~ span {
  background: #746302;
  color: #000;
  border-color: #fff;
  font-weight: bold;
}

.event-card:hover span {
  border-color: #746302;
}

/* Botão de Envio Premium */
.btn-submit {
  width: 100%;
  padding: 18px;
  background: #746302;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: #917c03;
  transform: translateY(-2px);
}

/* Responsividade Mobile */
@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
  
  .footer-contact-form {
    padding: 25px 20px;
  }
}





