*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --gold2:   #d4b86a;
  --amber:   #c9a84c;
  --dark:    #7a4a4a;
  --dark2:   #8c5858;
  --bg:      #f0d8d2;
  --bg2:     #f7e4e0;
  --text:    #5a2e2e;
  --light:   #fdf0ee;
  --rose:    #c49090;
  --rose2:   #d4a8a0;
  --glow:    rgba(196,144,144,.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(196,160,160,0.97);
  border-bottom: 1px solid rgba(201,168,76,.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: #fdf0ee;
  text-decoration: none;
  font-size: 10pt;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 3px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; color: #fff !important; }

/* Menu mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ccc;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: #f5e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}
/* brilho central âmbar suave */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 55%, rgba(201,168,76,.10) 0%, transparent 70%);
}
/* linha dourada decorativa */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-logo { margin-bottom: 24px; }
.hero-logo img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.3));
}
.hero-tagline {
  font-family: Georgia, serif;
  font-size: 16pt;
  font-style: italic;
  color: #5a2e2e;
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-sub {
  font-size: 10pt;
  color: #7a4a4a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(139,106,46,.25);
}
.hero-btn:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── SECTIONS ── */
section { padding: 80px 20px; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-tag {
  font-size: 8pt;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 10px;
}
.section-title {
  font-family: Georgia, serif;
  font-size: 26pt;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ── SOBRE ── */
#sobre { background: linear-gradient(180deg, #f7e4e0 0%, #fdf0ee 100%); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sobre-text p {
  font-size: 10.5pt;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
  text-align: justify;
}
.sobre-destaque {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--bg);
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13pt;
  color: var(--gold);
  line-height: 1.6;
  margin-top: 20px;
}
.sobre-card {
  background: linear-gradient(170deg, #f0d8d2 0%, #e8c8c0 100%);
  color: var(--text);
  padding: 40px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(196,144,144,.25);
  box-shadow: 0 2px 16px rgba(196,144,144,.15);
}
.sobre-card .num {
  font-family: Georgia, serif;
  font-size: 52pt;
  color: var(--gold2);
  font-style: italic;
  line-height: 1;
}
.sobre-card .num-label {
  font-size: 9pt;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a6868;
  margin-bottom: 28px;
}
.sobre-card hr { border: none; border-top: 1px solid rgba(196,144,144,.3); margin: 0 0 24px; }
.sobre-card .fundadores {
  font-size: 9pt;
  color: #7a4a4a;
  letter-spacing: 1px;
  line-height: 1.8;
}
.sobre-card .fundadores strong { color: var(--gold); display: block; font-size: 11pt; margin-bottom: 6px; }

/* ── SERVIÇOS ── */
#servicos { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.card {
  background: var(--bg2);
  border-radius: 6px;
  padding: 32px 24px;
  border-top: 3px solid var(--gold2);
  box-shadow: 0 2px 12px rgba(139,106,46,.08);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(139,106,46,.18);
}
.card-icon { font-size: 28pt; margin-bottom: 14px; }
.card h3 {
  font-family: Georgia, serif;
  font-size: 14pt;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}
.card p { font-size: 9.5pt; color: #666; line-height: 1.7; text-align: justify; }

/* ── ESTRUTURA ── */
#estrutura {
  background: linear-gradient(180deg, #fde8e4 0%, #f7ddd8 100%);
  color: var(--text);
}
#estrutura .section-title { color: var(--text); }
#estrutura .divider { background: var(--gold); }
.estrutura-box {
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(196,144,144,.2);
  border-radius: 6px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  box-shadow: 0 2px 16px rgba(139,106,46,.08);
}
.estrutura-numero {
  font-family: Georgia, serif;
  font-size: 64pt;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.estrutura-texto h3 {
  font-family: Georgia, serif;
  font-size: 16pt;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}
.estrutura-texto p { font-size: 10.5pt; color: #7a4a4a; line-height: 1.9; text-align: justify; }
.estrutura-texto strong { color: var(--gold); }

/* ── HORÁRIO E COMODIDADES ── */
#horario { background: linear-gradient(180deg, #fdf0ee 0%, #f7e4e0 100%); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.info-box {
  background: var(--bg2);
  border: 1px solid rgba(139,106,46,.15);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(139,106,46,.07);
}
.info-box-title {
  font-family: Georgia, serif;
  font-size: 14pt;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(139,106,46,.15);
}
.tbl-horario { width: 100%; border-collapse: collapse; }
.tbl-horario tr { border-bottom: 1px solid rgba(139,106,46,.1); }
.tbl-horario tr:last-child { border-bottom: none; }
.tbl-horario td { padding: 9px 4px; font-size: 10pt; }
.dia { font-weight: bold; color: var(--text); width: 35%; }
.hora { color: #5a4820; }
.comodidades-lista {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.comodidades-lista li {
  font-size: 10pt;
  color: #4a3820;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(139,106,46,.08);
}

@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .comodidades-lista { grid-template-columns: 1fr; }
}

/* ── CONTATO ── */
#contato { background: linear-gradient(180deg, #f7e4e0 0%, #f0d8d2 100%); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16pt;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(201,151,58,.3);
}
.info-label {
  font-size: 8pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 4px;
}
.info-value { font-size: 10.5pt; color: #444; line-height: 1.6; }
.info-value a { color: var(--gold); text-decoration: none; }
.info-value a:hover { text-decoration: underline; }
.contato-cta {
  background: linear-gradient(160deg, #1e1710 0%, #2e2010 100%);
  padding: 40px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(201,151,58,.2);
  box-shadow: 0 4px 24px rgba(30,23,16,.3), inset 0 0 60px rgba(232,152,42,.05);
}
.contato-cta p { font-size: 10.5pt; color: #bbb; line-height: 1.8; margin-bottom: 24px; text-align: justify; }
.contato-cta .btn-wa {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 13px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 10pt;
  letter-spacing: 1px;
  font-weight: bold;
  transition: background .2s;
}
.contato-cta .btn-wa:hover { background: #1ebe5a; }
.contato-cta .btn-sistema {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 10pt;
  letter-spacing: 1px;
  margin-top: 12px;
  transition: background .2s;
}
.contato-cta .btn-sistema:hover { background: var(--gold2); }

/* ── MAPA ── */
.mapa-container {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* ── FOOTER ── */
footer {
  background: #c4a0a0;
  border-top: 1px solid rgba(201,168,76,.3);
  color: #fdf0ee;
  text-align: center;
  padding: 30px 20px;
  font-size: 9pt;
  line-height: 1.8;
}
footer .footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
  opacity: .85;
}
footer a { color: var(--gold2); text-decoration: none; }

/* ── RESPONSIVO ── */
@media (max-width: 768px) {
  .hero-logo img { height: 120px; }
  .sobre-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 30px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: rgba(196,160,160,0.99); border-top: 1px solid rgba(201,168,76,.3); padding: 20px 40px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .estrutura-box { grid-template-columns: 1fr; gap: 10px; }
  .estrutura-numero { font-size: 40pt; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-tagline { font-size: 13pt; }
}
