:root {
  --verde-escuro: #27500a;
  --verde-medio: #3b6d11;
  --verde-claro: #639922;
  --verde-palido: #c0dd97;
  --verde-fundo: #eaf3de;
  --laranja: #ba7517;
  --laranja-dark: #854f0b;
  --branco: #fff;
  --cinza-fundo: #f5f5f0;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cinza-fundo);
}

/* HEADER */
.header {
  background: var(--verde-escuro);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px #0003;
}
.logo-text {
  color: var(--verde-fundo);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-sub {
  color: var(--verde-palido);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  color: var(--verde-palido);
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(
    135deg,
    var(--verde-escuro) 60%,
    var(--verde-medio)
  );
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.04'%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");
  opacity: 1;
}
.hero h1 {
  color: var(--verde-fundo);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.hero p {
  color: var(--verde-palido);
  font-size: 14px;
  margin-bottom: 24px;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btn {
  background: var(--laranja);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    transform 0.1s;
}
.hero-btn:hover {
  background: var(--laranja-dark);
  transform: translateY(-1px);
}

/* TOAST */
.toast {
  background: var(--verde-escuro);
  color: var(--verde-fundo);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  box-shadow: 0 4px 16px #0004;
  white-space: nowrap;
}

/* ====== TABS DE CATEGORIA ====== */
.tab {
  display: flex;
  gap: 0;
  background: var(--verde-fundo);
  border-bottom: 2px solid var(--verde-palido);
  padding: 0 16px;
  position: relative;
  top: 56px; /* altura do header */
  z-index: 90;
  box-shadow: 0 2px 8px #27500a12;
}

.tab button {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 14px 22px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-medio);
  cursor: pointer;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}

.tab button::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verde-palido);
  transition: background 0.2s;
  flex-shrink: 0;
}

.tab button:hover {
  color: var(--verde-escuro);
  background: #d8edbb44;
}

.tab button:hover::before {
  background: var(--verde-claro);
}

.tab button.active {
  color: var(--verde-escuro);
  border-bottom-color: var(--verde-claro);
  background: transparent;
}

.tab button.active::before {
  background: var(--verde-claro);
}

.tabcontent {
  display: none;
}

/* SECTION */
.section {
  padding: 28px 16px;
}
.section-title {
  color: var(--verde-escuro);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--verde-medio);
}
.section-sub {
  color: var(--verde-claro);
  font-size: 12px;
  margin-bottom: 18px;
  margin-top: 5px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* CARD */
.card {
  background: #fff;
  border: 1px solid #ddecc8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px #27500a22;
  transform: translateY(-2px);
}

/* GALERIA */
.card-gallery {
  position: relative;
  background: var(--verde-fundo);
  height: 180px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-slides {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verde-fundo);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide .placeholder-icon {
  width: 70px;
  height: 70px;
  background: var(--verde-medio);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-slide .placeholder-icon svg {
  width: 38px;
  height: 38px;
  fill: var(--verde-fundo);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #27500acc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-nav:hover {
  background: var(--verde-escuro);
}
.gallery-prev {
  left: 6px;
}
.gallery-next {
  right: 6px;
}
.gallery-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff8;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.gallery-dot.active {
  background: #fff;
}
.gallery-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--laranja);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 2;
}

/* CARD BODY */
.card-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-name {
  color: var(--verde-escuro);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.card-price {
  color: var(--laranja);
  font-size: 17px;
  font-weight: 700;
}

/* SELECTS */
.select-label {
  color: var(--verde-escuro);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.card-select {
  width: 100%;
  font-size: 12px;
  padding: 6px 8px;
  border: 1px solid var(--verde-palido);
  border-radius: 7px;
  color: var(--verde-escuro);
  background: #f9fff4;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
}
.card-select:focus {
  outline: 2px solid var(--verde-claro);
}

/* COR ESTAMPA */
.color-swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition:
    border-color 0.15s,
    transform 0.15s;
  position: relative;
}
.swatch:hover {
  transform: scale(1.15);
}
.swatch.selected {
  border-color: var(--verde-escuro);
  box-shadow: 0 0 0 2px var(--verde-palido);
}
.swatch-label {
  font-size: 10px;
  color: var(--verde-claro);
  margin-top: 3px;
  min-height: 14px;
}

/* QUANTITY */
.qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--verde-palido);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  background: var(--verde-fundo);
  border: none;
  width: 30px;
  height: 30px;
  font-size: 17px;
  cursor: pointer;
  color: var(--verde-escuro);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.qty-btn:hover {
  background: var(--verde-palido);
}
.qty-input {
  width: 38px;
  height: 30px;
  border: none;
  border-left: 1px solid var(--verde-palido);
  border-right: 1px solid var(--verde-palido);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--verde-escuro);
  font-family: "DM Sans", sans-serif;
  background: #fff;
}
.qty-input:focus {
  outline: none;
}

/* ADD BTN */
.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  align-items: stretch;
}
.add-btn {
  flex: 1;
  background: var(--verde-medio);
  color: var(--verde-fundo);
  border: none;
  padding: 9px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
}
.add-btn:hover {
  background: var(--verde-escuro);
}
.details-btn {
  background: var(--verde-fundo);
  color: var(--verde-escuro);
  border: 1.5px solid var(--verde-palido);
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    background 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.details-btn:hover {
  background: var(--verde-palido);
  border-color: var(--verde-medio);
}

/* CART */
.cart-bar {
  background: #fff;
  border: 1px solid #ddecc8;
  border-radius: 12px;
  margin: 0 16px 20px;
  padding: 16px;
}
.cart-title {
  color: var(--verde-escuro);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-badge {
  background: var(--laranja);
  color: #fff;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 12px;
  font-family: "DM Sans", sans-serif;
}
.cart-empty {
  color: var(--verde-claro);
  font-size: 13px;
  text-align: center;
  padding: 16px 0;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--verde-fundo);
  font-size: 13px;
  gap: 6px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  color: var(--verde-escuro);
  font-weight: 600;
}
.cart-item-meta {
  color: var(--verde-claro);
  font-size: 11px;
  margin-top: 2px;
}
.cart-item-price {
  color: var(--laranja);
  font-weight: 700;
  white-space: nowrap;
}
.cart-item-rm {
  background: none;
  border: none;
  color: #a32d2d;
  cursor: pointer;
  font-size: 16px;
  padding: 0 2px;
  line-height: 1;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
  font-weight: 700;
  color: var(--verde-escuro);
  font-size: 15px;
}
.cart-total span:last-child {
  color: var(--laranja);
}
.wpp-btn {
  width: 100%;
  background: #25a244;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
}
.wpp-btn:hover {
  background: #1a7a33;
}
.wpp-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  background: var(--verde-escuro);
  color: var(--verde-palido);
  text-align: center;
  padding: 18px;
  font-size: 12px;
  margin-top: 8px;
}

/* ===== MODAL PRODUTO DETALHES ===== */
.prod-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #000b;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.prod-modal-overlay.open {
  display: flex;
}
.prod-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px #0005;
}

/* Modal image gallery */
.prod-modal-gallery {
  position: relative;
  background: var(--verde-fundo);
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.prod-modal-slides {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-modal-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #27500acc;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.prod-modal-nav:hover {
  background: var(--verde-escuro);
}
.prod-modal-prev {
  left: 10px;
}
.prod-modal-next {
  right: 10px;
}
.prod-modal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.prod-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff8;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.prod-modal-dot.active {
  background: #fff;
}

/* Modal thumbs strip */
.prod-modal-thumbstrip {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  border-bottom: 1px solid var(--verde-fundo);
}
.prod-modal-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  background: var(--verde-fundo);
}
.prod-modal-thumb.active {
  border-color: var(--verde-medio);
}
.prod-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal body content */
.prod-modal-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prod-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.prod-modal-name {
  color: var(--verde-escuro);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.prod-modal-price {
  color: var(--laranja);
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}
.prod-modal-desc {
  color: #555;
  font-size: 13px;
  line-height: 1.6;
  background: var(--verde-fundo);
  border-radius: 10px;
  padding: 12px 14px;
}

/* Info tabs */
.info-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--verde-fundo);
  margin-bottom: 0;
}
.info-tab {
  background: none;
  border: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--verde-claro);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: "DM Sans", sans-serif;
  transition: color 0.2s;
}
.info-tab.active {
  color: var(--verde-escuro);
  border-bottom-color: var(--verde-medio);
}
.info-panel {
  display: none;
  padding: 12px 0 0;
}
.info-panel.active {
  display: block;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.info-table tr:nth-child(even) {
  background: var(--verde-fundo);
}
.info-table td {
  padding: 7px 10px;
  color: var(--verde-escuro);
}
.info-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--verde-medio);
}
.info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-list li {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--verde-fundo);
}
.info-list li:last-child {
  border: none;
}
.info-list li::before {
  content: "✓";
  color: var(--verde-claro);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Modal selectors */
.prod-modal-selectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-sel-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prod-modal-colors .color-swatches {
  gap: 8px;
}
.prod-modal-colors .swatch {
  width: 26px;
  height: 26px;
}

/* Modal actions */
.prod-modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.modal-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--verde-palido);
  border-radius: 8px;
  overflow: hidden;
}
.modal-qty-btn {
  background: var(--verde-fundo);
  border: none;
  width: 36px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  color: var(--verde-escuro);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.modal-qty-btn:hover {
  background: var(--verde-palido);
}
.modal-qty-input {
  width: 44px;
  height: 38px;
  border: none;
  border-left: 1.5px solid var(--verde-palido);
  border-right: 1.5px solid var(--verde-palido);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-escuro);
  font-family: "DM Sans", sans-serif;
  background: #fff;
}
.modal-qty-input:focus {
  outline: none;
}
.modal-add-btn {
  flex: 1;
  background: var(--verde-medio);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: background 0.2s;
  min-width: 160px;
}
.modal-add-btn:hover {
  background: var(--verde-escuro);
}

/* Close button */
.prod-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #000a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.prod-modal-close:hover {
  background: #000d;
}

/* ====== LIGHTBOX ====== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-overlay.open {
  opacity: 1;
}
.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95vw;
  max-height: 95vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.lightbox-close:hover {
  color: #f66;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox-prev {
  left: -64px;
}
.lightbox-next {
  right: -64px;
}
.lightbox-counter {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero h1 {
    font-size: 22px;
  }
  .nav {
    gap: 12px;
  }
  .cart-bar {
    margin: 0 8px 16px;
  }
  .prod-modal-selectors {
    grid-template-columns: 1fr;
  }
  .prod-modal-gallery {
    height: 220px;
  }
  .prod-modal-name {
    font-size: 16px;
  }
  .prod-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .modal-add-btn {
    min-width: unset;
  }
  .tab {
    top: 50px;
  }
  .tab button {
    padding: 12px 14px;
    font-size: 12px;
  }
  .lightbox-prev {
    left: -48px;
  }
  .lightbox-next {
    right: -48px;
  }
  .lightbox-nav {
    font-size: 36px;
    padding: 6px 12px;
  }
}

/* FONTS */
/* latin-ext */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu6-K6h9Q.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ===================== BANNER PROMOCIONAL ===================== */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  margin: 20px 16px 40px;
  border-radius: 12px; /* Mantendo o padrão dos seus cards */
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  flex-wrap: wrap;
}

.promo-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.promo-content h2 {
  font-family: "Playfair Display", serif; /* Mesma fonte do seu Hero */
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1.1;
}

.promo-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.promo-btn {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 8px; /* Padrão do hero-btn */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}

.promo-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.promo-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  max-height: 280px;
  border-radius: 8px;
  object-fit: cover;
}

/* Estilo destacado para a aba de Promoção */
.tablinks.promo-tab {
  color: #a47068;
  font-weight: 700;
}
.tablinks.promo-tab::before {
  background: #a47068; /* Ponto de cor diferente na aba */
}
.tablinks.promo-tab.active {
  color: #8a5a53;
  border-bottom-color: #8a5a53;
}
.tablinks.promo-tab.active::before {
  background: #8a5a53;
}

@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
/* ===== SEÇÃO EM BREVE - AESTHETIC ===== */
.coming-soon-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
    min-height: 85vh;
}

.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 900;
    color: #D4A574;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 30px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 165, 116, 0.3),
        0 0 80px rgba(212, 165, 116, 0.2);
    line-height: 1.1;
    animation: fadeInDown 1.5s ease-out;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #E5B887;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(229, 184, 135, 0.4);
    margin-top: 20px;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .subtitle {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .coming-soon-section {
        min-height: 70vh;
    }
    
    .coming-soon-container {
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
}
}