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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F8F1E9;
  color: #2C2C2C;
  line-height: 1.6;
}

/* ===== 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; }
nav a:hover { opacity: 0.7; }

/* ===== 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; }
}

/* ===== BUTTON ===== */
.btn {
  background-color: #4A2C2A; color: #fff; border: none;
  padding: 0.8rem 1.4rem; cursor: pointer;
  border-radius: 999px; font-weight: 600; transition: all 0.3s ease;
  display: inline-block; text-decoration: none;
}
.btn:hover { background-color: #D4A017; color: #4A2C2A; }
.btn-secondary { background: transparent; border: 1px solid rgba(0,0,0,0.2); 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: 5rem 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.hero-content p {
  font-size: 1.05rem;
  color: #444;
  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: #fff;
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  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;
}

/* ===== 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: 360px;
  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;
}

/* ===== SOBRE ===== */
.about {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 6vw;
  text-align: center;
}

/* ===== RESERVAS ===== */
.reservations {
  max-width: 900px;
  margin: 5rem 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;
}

.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-color: #4A2C2A; color: #fff; text-align: center;
  padding: 2rem 1rem; margin-top: 3rem;
}
footer a { color: #D4A017; text-decoration: none; }

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

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

  .card img {
    height: 150px;
  }

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

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   FORÇA TOTAL DE PROPORÇÃO DE IMAGENS – HOME DONNA TAÇA
   (IGNORA QUALQUER CSS ANTIGO)
   ===================================================== */

/* Todas as imagens da página */
main img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

/* HERO / BANNER */
.hero img,
.banner img,
.banner-img {
  width: 100% !important;
  max-height: 380px !important;
  height: 380px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
}

/* DESTAQUES */
.highlights img,
.highlight-item img,
.card img {
  width: 100% !important;
  height: 180px !important;
  max-height: 180px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
}

/* EVENTOS */
.split img,
.events img {
  width: 100% !important;
  height: 320px !important;
  max-height: 320px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero img,
  .banner img {
    height: 220px !important;
    max-height: 220px !important;
  }

  .highlights img,
  .card img {
    height: 140px !important;
    max-height: 140px !important;
  }

  .split img,
  .events img {
    height: 200px !important;
    max-height: 200px !important;
  }
}

/* ===== SOBRE / MARCA ===== */
.about {
  background-color: #4A2C2A; /* fundo escuro da marca */
  padding: 4rem 1rem;
  text-align: center;
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 2rem 2.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

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

.about-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2C2C2C;
}

@media (max-width: 768px) {
  .about-card {
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
  }

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

@media (max-width: 768px) {
  .about-card {
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
  }

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

/* =====================================================
   OPEN – ESTILO PREMIUM DONNA TAÇA
   ===================================================== */

/* HERO OPEN */
.open-hero {
  text-align: center;
  padding: 5rem 6vw 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.open-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #4A2C2A;
  margin-bottom: 1rem;
}

.open-subtitle {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
  color: #444;
}

.open-hero .hero-actions {
  justify-content: center;
}

.open-hero .trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: .8;
}

/* SEÇÕES GERAIS */
.open-about,
.open-includes,
.open-for,
.open-packages-intro,
.open-final-cta,
.open-form,
.accordion {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 6vw;
}

.open-about h2,
.open-includes h2,
.open-for h2,
.open-packages-intro h2,
.options-title,
.open-final-cta h2,
.open-form h2,
.accordion h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4A2C2A;
  text-align: center;
}

/* INCLUDES */
.open-includes-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.open-includes-list li {
  background: #fff;
  padding: .9rem 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.open-note {
  margin-top: 1rem;
  font-size: .9rem;
  opacity: .75;
  text-align: center;
}

/* PERFEITO PARA */
.open-for-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.open-for-item {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.open-for-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.open-for-item span {
  font-size: 1.8rem;
}

/* PACOTES */
.options {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 6vw;
}

.options-list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.option-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}

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

.option-card.featured {
  border: 2px solid #D4A017;
}

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

.option-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4A2C2A;
}

.option-price span {
  font-size: .9rem;
  font-weight: 400;
  color: #666;
}

.option-desc {
  margin: .75rem 0 1rem;
  font-size: .95rem;
  color: #555;
}

.option-card .list {
  list-style: none;
  margin-bottom: 1rem;
}

.option-card .list li {
  font-size: .9rem;
  padding: .25rem 0;
}

/* DETALHES COLAPSÁVEIS */
.option-details {
  overflow: hidden;
  height: 0;
  transition: height .35s ease;
}

.option-details ul {
  margin-top: .75rem;
  list-style: disc;
  padding-left: 1.2rem;
}

/* CTA FINAL */
.open-final-cta {
  background: #4A2C2A;
  color: #fff;
  border-radius: 22px;
  padding: 3rem 2rem;
  text-align: center;
}

.open-final-cta h2 {
  color: #fff;
}

.open-final-cta p {
  margin-bottom: 1.5rem;
  opacity: .9;
}

/* FORMULÁRIO */
.open-form-box {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .9rem;
  margin-bottom: .3rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .6rem .7rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: .9rem;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

/* FAQ / ACCORDION */
.accordion .acc-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: .5rem;
}

.acc-head {
  width: 100%;
  background: none;
  border: none;
  padding: .9rem 0;
  display: flex;
  justify-content: space-between;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
}

.acc-body {
  display: none;
  padding-bottom: .75rem;
  font-size: .9rem;
  color: #444;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .open-final-cta {
    padding: 2rem 1.5rem;
  }
}