/* ============================
   VARIÁVEIS GLOBAIS
============================ */
:root {
  --cor-dourada: #d4af37;
  --cor-dourada-hover: #e0be52;
  --cor-preta: #000;
  --cor-branca: #fff;
  --sombra-texto: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cor-preta) url('../img/img2.png') no-repeat center center fixed;
  background-size: cover;
  background-position: center center;
  filter: brightness(0.95) contrast(1.05);
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--cor-branca);
    image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../img/img2.png') no-repeat center center;
  background-size: cover;
  z-index: -1;
  opacity: 0.9;
  filter: contrast(1.05) brightness(1.1); /* melhora definição */
}


/* ============================
   HEADER
============================ */
.dark-header {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 90px;
  box-sizing: border-box;
  transition: background 0.3s ease;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

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

.logo img {
  height: 55px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 18px;
  margin: 0;
  color: var(--cor-branca);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo h1 span {
  font-size: 12px;
  color: var(--cor-dourada);
}

/* ============================
   NAVEGAÇÃO
============================ */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}


nav ul li a {
  color: var(--cor-branca);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--cor-dourada);
  transform: translateY(-2px);
}

/* ============================
   BOTÃO DE AGENDAMENTO
============================ */
.agende-btn {
  background-color: var(--cor-dourada);
  color: var(--cor-preta);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.2);
  white-space: nowrap; /* Impede quebra de linha */
}

.agende-btn:hover {
  background-color: var(--cor-dourada-hover);
}

.agende-btn:active {
  transform: scale(0.97);
  box-shadow: inset 0 0 5px rgba(0,0,0,0.4);
}

.agende-btn.grande {
  position: relative;
  padding-left: 42px;
  font-size: 15px;
  padding: 12px 22px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.hero-content h2,
.hero-content p,
.agende-btn {
  animation: fadeInUp 1s ease-out forwards;
}


.agende-btn.grande::before {
  
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}


@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
/* ============================
   HERO MODERNO COM TRANSPARÊNCIA SUAVE
============================ */

.hero {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: calc(100vh - 100px);
  padding: 0 160px;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.05)); /* mais leve */
  backdrop-filter: blur(4px);
  box-sizing: border-box;
  animation: fadeIn 1s ease-in-out;
}

/* Caixa de conteúdo com fundo mais claro e efeito vidro */
.hero-content {
  max-width: 600px;
  padding: 35px 40px;
  background-color: rgba(0, 0, 0, 0.4); /* antes estava 0.5 ou 0.65 */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.4s ease;
  
}

/* Título com leve espaçamento */
.hero-content h2 {
  font-size: 36px;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: 800;
  color: var(--cor-branca);
}

/* Destaque em dourado */
.hero-content h2 span {
  font-size: 30px;
  font-weight: 800;
  color: var(--cor-dourada);
}

/* Texto descritivo mais leve e espaçado */
.hero-content p {
  font-size: 17px;
  color: #e0e0e0;
  text-shadow: var(--sombra-texto);
  line-height: 1.8;
  letter-spacing: 0.3px;
  margin: 0;
}




/* ============================
   ANIMAÇÕES
============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ============================
   RESPONSIVIDADE
============================ */
@media (max-width: 768px) {
  .dark-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    height: auto;
  }

  nav ul {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .hero {
    justify-content: center;
    padding: 140px 20px 20px 20px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content h2 span {
    font-size: 24px;
  }
}

/* Menu mobile */


/* Estilo geral para alinhar logo e botão */
.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botão do menu */
#menu-toggle {
  font-size: 28px;
  color: var(--cor-branca);
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  nav#main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav#main-nav.ativo {
    max-height: 300px;
  }

  nav#main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    gap: 10px;
  }

  .dark-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo h1 {
    font-size: 16px;
  }
}

.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
   transition: background 0.3s ease;
   background-color: rgba(0, 0, 0, 0.85);
  padding: 15px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.footer-fixed-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 45px;
  border-radius: 6px;
}

.footer-social h4 {
  color: var(--cor-dourada);
  margin: 0 0 5px 0;
  font-size: 14px;
  text-align: right;
}

.footer-social .social-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-social .social-icons a {
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: var(--cor-dourada);
}

@media (max-width: 768px) {
  .footer-fixed-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-social h4 {
    text-align: center;
  }

  .footer-logo p {
    font-size: 13px;
    text-align: center;
    color: #aaa;
  }

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

@media (min-width: 1600px) {
  .hero {
    padding-left: 240px;
    padding-right: 120px;
  }
}

/* ========== MODAL (SOBRE / CONTATO) ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: rgba(15, 15, 15, 0.95);
  color: var(--cor-branca);
  padding: 30px 40px;
  border-radius: 14px;
  max-width: 600px;
  width: 90%;
  border: 1px solid var(--cor-dourada);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.4s ease-out;
}

.modal-content h2 {
  margin-top: 0;
  color: var(--cor-dourada);
  font-size: 24px;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.modal .fechar {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  color: var(--cor-branca);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal .fechar:hover {
  color: var(--cor-dourada-hover);
}


/* Ajustes adicionais para celular */
@media (max-width: 480px) {
  .hero {
    padding: 100px 20px 30px;
    flex-direction: column;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content h2 span {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .agende-btn.grande {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }

  .dark-header {
    padding: 15px 20px;
  }

  .logo img {
    height: 45px;
  }

  nav ul {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .footer-fixed {
    padding: 10px 20px;
  }

  .modal-content {
    padding: 25px 20px;
  }
}


.footer-social .social-icons a.icon-admin {
  color: #555;
  font-size: 15px;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a.icon-admin:hover {
  color: var(--cor-dourada);
}
