/* --- VARIÁVEIS E RESET GERAL --- */
:root {
  --primary: #0f172a;       /* Azul Profundo */
  --secondary: #1e293b;     /* Azul Ardósia */
  --gold: #d4af37;          /* Dourado Premium */
  --text: #475569;          /* Cinza Texto */
  --bg-light: #f8fafc;      /* Fundo Claro */
  --white: #ffffff;
  --secondary-hover: #d4b46e;
  --bg-white: #ffffff;
  --transition: all 0.3s ease;
  --dot:#bfa15f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open sans', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body { padding-top: 60px; }
}

h1, h2, h3 {
  color: var(--primary);
  line-height: 1.2;
}

/* Fonte Serifada para Títulos de destaque */
.serif-title {
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  list-style: none;
}

/* ==============================
   HEADER / NAVBAR
============================== */
.main-header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LOGO */
.brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  
}


.dot {
  color: var(--dot);
}

/* NAV DESKTOP */
.slide-menu {
  display: none;
}

@media (min-width: 768px) {
  .slide-menu {
    display: block;
    position: static;
    background: none;
    width: auto;
    height: auto;
    box-shadow: none;
    padding: 0;
  }

  .slide-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    padding-left: 0;
  }

  .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
  }

  .nav-link:hover {
    color: var(--dot);
  }

  .menu-btn,
  #menu-toggle {
    display: none;
  }
}

/* MENU HAMBÚRGUER (MOBILE) */
@media (max-width: 767px) {
  #menu-toggle {
    position: absolute;
    opacity: 0;
    width: 40px;
    height: 40px;
    right: 20px;
    top: 15px;
    z-index: 1003;
  }

  .menu-btn {
    display: flex;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1004;
  }

  .hamburger {
    width: 26px;
    height: 3px;
    background: var(--primary);
    position: relative;
    transition: 0.3s;
  }

  .hamburger::before,
  .hamburger::after {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    transition: 0.3s;
  }

  .hamburger::before { top: -8px; }
  .hamburger::after  { top: 8px; }

  .slide-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding-top: 70px;
    transition: 0.35s ease-in-out;
    overflow-y: auto;
  }

  .slide-menu ul {
    display: flex;
    flex-direction: column;
    padding-left: 25px;
    gap: 5px;
    list-style: none;
  }

  .slide-menu li {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .slide-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
  }

  #menu-toggle:checked ~ nav.slide-menu { right: 0; }

  #menu-toggle:checked ~ .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }

  #menu-toggle:checked + .menu-btn .hamburger {
    background: transparent;
  }

  #menu-toggle:checked + .menu-btn .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  #menu-toggle:checked + .menu-btn .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

/* ==============================
   HERO SECTION (Banner)
============================== */
.page-hero {
  height: 60vh; /* desktop */
  background:
    linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)),
    url('../Assets/salao-fundo.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: var(--white);
  padding: clamp(1.5rem, 4vh, 3rem) 1rem 0 1rem;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  opacity: 0.9;
  margin-top: 1rem;
  line-height: 1.6;
}

/* CONTEÚDO */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 20px 20px 0px var(--gold);
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

.values-section {
  background-color: var(--bg-light);
  text-align: center;
  padding: 5rem 5%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--gold);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.stats-bar {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  gap: 2rem;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-final {
  text-align: center;
  padding: 6rem 1rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 30px;
  margin-top: 2rem;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: #bfa13d;
  transform: scale(1.05);
}

footer {
  background: var(--secondary);
  color: #94a3b8;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #334155;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .story-section { grid-template-columns: 1fr; }
  .story-img { height: 300px; box-shadow: 10px 10px 0px var(--gold); }
  .page-hero h1 { font-size: 2.5rem; }
}

@media (max-width: 767px) {
  .page-hero {
    height: auto; /* ajusta altura no mobile */
    padding: 3rem 1rem 2rem 1rem;
    justify-content: flex-start;
  }

  .page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .page-hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}
