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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F8F1E9;
  color: #2C2C2C;
  line-height: 1.75;
  letter-spacing: 0.2px;
}

/* ===== HEADER ===== */
header {
  background-color: #4A2C2A;
  color: #fff;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .3s ease, opacity .3s ease;
}

nav a:hover {
  color: #D4A017;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #4A2C2A;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    text-align: right;
    padding: 1rem;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== BUTTONS ===== */
.btn {
  background: linear-gradient(135deg, #4A2C2A, #2E1B1A);
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn:hover {
  background: linear-gradient(135deg, #D4A017, #E6B83C);
  color: #2A1B1A;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.25);
  color: #4A2C2A;
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.05);
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 6vw 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  filter: saturate(1.05) contrast(1.05);
  transition: transform .6s ease, box-shadow .6s ease;
}

.hero-media img:hover {
  transform: scale(1.02);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #4A2C2A;
  letter-spacing: .4px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #3E3E3E;
  max-width: 520px;
}

.hero-actions {
  margin: 2rem 0 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ===== DESTAQUES ===== */
.highlights {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.card {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #4A2C2A;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== EVENTOS ===== */
.split {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.split-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4A2C2A;
}

.split-content p {
  font-size: 1.05rem;
  color: #444;
}

/* ===== RESERVAS ===== */
.reservations {
  max-width: 900px;
  margin: 6rem auto;
  padding: 0 6vw;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: .5rem;
  color: #4A2C2A;
}

.section-head p {
  font-size: 1rem;
  opacity: .85;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #2A1716, #1C0F0E);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}

footer a {
  color: #D4A017;
  text-decoration: none;
}

footer small {
  font-size: .8rem;
  letter-spacing: .3px;
  opacity: .85;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-media img {
    height: 260px;
  }

  .card img {
    height: 150px;
  }

  .split-media img {
    height: 240px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .about-card {
    padding: 1.75rem 1.4rem;
    border-radius: 16px;
  }

  .about-card h2 {
    font-size: 1.6rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }
}

/* =========================================
   SOBRE / MARCA – BLOCO PREMIUM FLUTUANTE
   ========================================= */

.about {
  background-color: #F8F1E9; /* mesma cor do site */
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}

.about-card {
  max-width: 820px;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 24px;
  padding: 3rem 3rem;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.45),
    0 0 0 1px rgba(212,160,23,0.15);
  text-align: center;
  position: relative;
}

/* Linha dourada sutil no topo */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A017, transparent);
  border-radius: 999px;
}

.about-card h2 {
  font-family: 'Playfair Display', serif;
  color: #4A2C2A;
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 1rem;
}
.about-highlight {
  background: rgba(212, 160, 23, 0.08);     /* dourado bem suave */
  border-left: 4px solid #D4A017;
  padding: 1.8rem 2rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  position: relative;
}

.about-highlight p {
  margin: 1.2rem 0;
  color: #3A2A28;
  line-height: 1.9;
}

.about-highlight p strong {
  color: #4A2C2A;
  font-weight: 700;
}
.about-intro {
  background: rgba(255,255,255,0.95);  /* cartão claro */
  color: #2C2C2C;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(212,160,23,0.25);
  border: 1px solid rgba(212,160,23,0.15);
  line-height: 1.85;
  font-size: 1.1rem;
}

.about-intro strong {
  color: #E8C56A;                         /* dourado mais vivo pros destaques */
  font-style: normal;
  font-weight: 700;
}

/* Ajuste responsivo (mobile fica ainda mais bonito) */
@media (max-width: 768px) {
  .about-intro {
    padding: 1.8rem 1.8rem;
    margin: 1.5rem 0;
    border-radius: 12px;
  }
}

.cta,
.split {
  background-color: #F8F1E9;
}
