/* ═══════════════════════════════════════════
   JARDIM ENCANTADO — style.css
   Paleta: verde-escuro / creme / dourado
═══════════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep: #1a2e1f;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --green-pale: #a8d5b5;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --text-primary: #1a2e1f;
  --text-muted: #5a7060;
  --red-closed: #c0392b;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 40px rgba(26, 46, 31, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 46, 31, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 240, 232, .75);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.notice-pill {
  white-space: nowrap;
  background: rgba(192, 57, 43, .2);
  border: 1px solid rgba(192, 57, 43, .45);
  color: #f08080;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: .3px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('hero.png') center center / cover no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 26, 15, 0.88) 0%,
      rgba(26, 46, 31, 0.72) 60%,
      rgba(26, 46, 31, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 680px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-closed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192, 57, 43, .22);
  border: 1px solid rgba(192, 57, 43, .5);
  color: #f08080;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: .4px;
}

.badge-closed::before {
  content: '⚠️';
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(245, 240, 232, .82);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-sub strong em {
  color: #f08080;
  font-style: normal;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
  letter-spacing: .2px;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(201, 168, 76, .6);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold-light);
}

.btn-disabled {
  background: rgba(90, 112, 96, .35);
  color: rgba(245, 240, 232, .35);
  cursor: not-allowed;
  width: 100%;
  justify-content: center;
  font-size: .88rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(90, 112, 96, .25);
}

/* ── AVISO BANNER ── */
.banner-closed {
  background: linear-gradient(90deg, #2c1010, #3d1515, #2c1010);
  border-top: 1px solid rgba(192, 57, 43, .35);
  border-bottom: 1px solid rgba(192, 57, 43, .35);
  padding: 16px 0;
}

.banner-closed .container {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: rgba(240, 128, 128, .9);
}

.banner-closed span:first-child {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.banner-closed strong {
  color: #f08080;
}

/* ── SECTIONS ── */
.section {
  padding: 96px 0;
}

.section-label {
  display: block;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--green-light);
  margin-bottom: 14px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.section-desc strong {
  color: var(--red-closed);
  font-weight: 600;
}

/* ── SOBRE ── */
.sobre {
  background: var(--cream);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sobre-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

.sobre-text strong {
  color: var(--green-deep);
}

.stats-row {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-mid);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.sobre-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.sobre-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: block;
}

.img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 2px solid var(--green-pale);
  color: var(--green-mid);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26, 46, 31, .15);
}

/* ── PRODUTOS ── */
.produtos {
  background: var(--green-deep);
}

.produtos .section-label {
  color: var(--green-pale);
}

.produtos h2 {
  color: var(--cream);
}

.produtos .section-desc {
  color: rgba(245, 240, 232, .65);
}

.unavailable-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(192, 57, 43, .15);
  border: 1px solid rgba(192, 57, 43, .35);
  color: #f08080;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 12px;
  margin-bottom: 44px;
  width: fit-content;
}

.lock-icon {
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.card-unavailable {
  opacity: .78;
  filter: grayscale(25%);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.card-tag {
  display: inline-block;
  background: rgba(192, 57, 43, .2);
  border: 1px solid rgba(192, 57, 43, .4);
  color: #f08080;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.3;
}

.card p {
  font-size: .92rem;
  color: rgba(245, 240, 232, .6);
  line-height: 1.7;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  border: 1px solid var(--green-pale);
  color: #ffffff;
  font-size: .82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  box-shadow: 0 2px 10px rgba(74, 140, 92, .4);
}

.card-price {

  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .5);
  text-decoration: line-through;
  text-decoration-color: rgba(192, 57, 43, .6);
}

/* ── CONTATO ── */
.contato {
  background: var(--cream-dark);
}

.contato-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contato .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 8px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 22px 30px;
  text-decoration: none;
  color: var(--text-primary);
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(26, 46, 31, .08);
  transition: all .25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(26, 46, 31, .16);
  border-color: var(--green-pale);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.wa-icon {
  background: #25d366;
  color: white;
}

.email-icon {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: white;
}

.contact-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-value {
  display: block;
  font-size: .97rem;
  font-weight: 600;
  color: var(--green-deep);
}

/* ── FOOTER ── */
.footer {
  background: var(--green-deep);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-logo .logo-icon {
  font-size: 1.4rem;
}

.footer-msg {
  color: rgba(245, 240, 232, .55);
  font-size: .92rem;
  max-width: 440px;
  line-height: 1.6;
}

.footer-copy {
  color: rgba(245, 240, 232, .28);
  font-size: .78rem;
  margin-top: 8px;
}

/* ── DISCLAIMER ── */
.disclaimer-box {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(45, 90, 61, 0.08);
  border-left: 4px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  font-size: .88rem;
  color: var(--green-mid);
  font-weight: 500;
  line-height: 1.65;
}

.footer-disclaimer {
  color: rgba(245, 240, 232, .42);
  font-size: .78rem;
  max-width: 520px;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}

/* ── CHAT SECTION ── */
.chat-section {
  background: var(--cream);
}

.chats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.chat-window {
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(26, 46, 31, .13);
  display: flex;
  flex-direction: column;
  max-height: 620px;
}

.chat-header {
  background: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  flex-shrink: 0;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.chat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}

.chat-status {
  font-size: .75rem;
  color: var(--green-pale);
  font-weight: 500;
}

.chat-body {
  padding: 16px 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e5ddd5;
  flex: 1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bfb0' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.chat-date-divider {
  text-align: center;
  font-size: .72rem;
  color: #666;
  background: rgba(255, 255, 255, .55);
  border-radius: 999px;
  padding: 3px 14px;
  width: fit-content;
  margin: 6px auto 4px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.msg-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  max-width: 88%;
}

.msg-row.msg-left {
  align-self: flex-start;
}

.msg-row.msg-right {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-bubble {
  padding: 9px 13px;
  border-radius: 12px;
  font-size: .85rem;
  line-height: 1.55;
  max-width: 100%;
  word-break: break-word;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.msg-client {
  background: #ffffff;
  color: #1a1a1a;
  border-bottom-left-radius: 4px;
}

.msg-us {
  background: #dcf8c6;
  color: #1a1a1a;
  border-bottom-right-radius: 4px;
}

.msg-img-bubble {
  padding: 5px;
  overflow: hidden;
}

.chat-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.img-caption {
  display: block;
  font-size: .72rem;
  color: #666;
  padding: 4px 6px 2px;
}

.msg-time {
  font-size: .65rem;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.msg-time-right {
  color: #888;
}

/* ── RESPONSIVE ── */

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-img-wrap {
    order: -1;
  }

  .sobre-img {
    height: 300px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
  }

  .chats-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .contact-card {
    min-width: 100%;
  }

  .stats-row {
    gap: 20px;
  }

  .notice-pill {
    display: none;
  }

  .banner-closed .container {
    font-size: .82rem;
  }
}