:root {
  --bg-page: #f5f7fb;
  --bg-card: #ffffff;
  --primary: #1c8b4a;
  --primary-dark: #156838;
  --accent: #ffb300;
  --text: #222;
  --muted: #666;
  --border: #e0e2ea;
  --radius-card: 18px;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.6;
}

/* TOP BAR */

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-logo {
  font-weight: 700;
  font-size: 1rem;
}

.top-badge {
  background: #e6f5eb;
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.top-timer-label {
  color: var(--muted);
}

.top-timer {
  background: #ffe8cc;
  color: #d35400;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #e6f5eb, #ffffff);
  padding: 32px 16px 24px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin-bottom: 12px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-highlights {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.hero-image img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

/* MAIN PAGE */

.page {
  max-width: 1180px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

/* PRODUCT SECTION */

.product-section {
  margin-bottom: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
}

/* GALLERY */

.product-gallery {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.product-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f0f3f9;
}

.product-main-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111827;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.product-timer-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-thumbnails {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  flex: 0 0 80px;
  cursor: pointer;
  background: #f0f3f9;
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
}

.product-thumb span {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 4px;
  border-radius: 999px;
  text-align: center;
}

.product-thumb.active {
  border-color: var(--primary);
}

/* PRODUCT INFO */

.product-info {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 20px 20px 22px;
}

.product-info h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.product-short-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.price-from {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-to {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.4rem;
}

.labels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.label-promo {
  background: #ffe8cc;
  color: #b54708;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.label-stock {
  background: #dcfce7;
  color: #166534;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.trust-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.4rem;
}

.trust-item strong {
  font-size: 0.95rem;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

.btn-cart {
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 8px;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.35);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.4);
}

.secure-text {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 14px;
}

/* OFFICIAL STORE BOX */

.official-store-box {
  border-radius: 16px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 14px 14px 12px;
}

.official-header {
  margin-bottom: 6px;
}

.official-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.official-body p {
  font-size: 0.8rem;
}

/* GENERIC SECTIONS */

.section {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  margin-bottom: 20px;
}

.section h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.section p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* PHOTO GRID */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.photo-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 260px;
}

/* GUARANTEE */

.guarantee-box ul {
  margin-top: 8px;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* REVIEWS */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.review-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 12px;
  background: #fcfcff;
}

.review-header {
  margin-bottom: 8px;
}

.review-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-profile img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  font-size: 0.85rem;
  color: #f59e0b;
}

.review-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.review-photo {
  width: 100%;
  border-radius: 10px;
  max-height: 140px;
  object-fit: cover;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  background: #f9fafb;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-weight: 700;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 8px 12px 10px;
  font-size: 0.9rem;
}

/* FOOTER */

.footer {
  background: #020617;
  color: #9ca3af;
  padding: 26px 16px 14px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer h4 {
  color: #e5e7eb;
  margin-bottom: 6px;
}

.footer p,
.footer a {
  font-size: 0.85rem;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.footer a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid #111827;
  padding-top: 10px;
  font-size: 0.8rem;
  text-align: center;
}

/* MODAL */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 18px;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 12px;
  padding: 18px 18px 16px;
}

.modal-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 450px;
}

.modal-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

#modalProductPrice {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

#modalProductShortDesc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.btn-buy {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.modal-secure-text {
  font-size: 0.8rem;
  color: var(--muted);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .modal-content {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .product-gallery,
  .product-info,
  .section {
    padding: 14px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* BOX CASA FLORENCE */
.casaF-box {
  margin-top: 40px;
}

.casaF-container {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.casaF-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c8b4a;
}

.casaF-image img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.casaF-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.55;
}

.casaF-btn {
  display: inline-block;
  background: #1c8b4a;
  padding: 14px 22px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.25s ease;
}

.casaF-btn:hover {
  background: #156838;
  transform: translateY(-2px);
}

.casaF-sub {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .casaF-title { font-size: 1.35rem; }
  .casaF-text { font-size: 0.95rem; }
  .casaF-btn { font-size: 1rem; width: 100%; }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .casaF-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}
/* PREMIUM CLEAN BOX */
.clean-premium-box {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  padding: 22px 22px 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  margin-top: 16px;
}

/* Header */
.premium-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.premium-header h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #1c8b4a;
}

.premium-header p {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
}

.premium-icon {
  width: 40px;
  height: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Stats grid */
.premium-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  width: 30px;
  height: 30px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat strong {
  font-size: 0.95rem;
  color: #111;
}

.stat span {
  display: block;
  font-size: 0.8rem;
  color: #777;
  margin-top: -2px;
}

/* Responsivo */
@media (max-width: 600px) {
  .premium-stats {
    grid-template-columns: 1fr 1fr;
  }
}
