/* ==========================================================================
   AVIVAH PRESENTES - HIGH PERFORMANCE STYLESHEET (PAGE SPEED 95-100)
   Zero CDN Bloat • Pure CSS Variables • Responsive Grid • Core Web Vitals Ready
   ========================================================================== */

:root {
  --primary: #d93d6e;
  --primary-hover: #b82d57;
  --primary-light: #fff0f4;
  --primary-dark: #8c1d3f;
  --secondary: #1e293b;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-surface: #f1f5f9;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;
  --whatsapp-dark: #128c7e;
  --ml-yellow: #ffe600;
  --ml-yellow-hover: #f5dc00;
  --ml-blue: #2d3277;
  --star: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.top-bar-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* HEADER */
.site-header {
  background-color: var(--bg-card);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid var(--border);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand-logo img, .header-logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.brand-logo:hover img {
  transform: scale(1.02);
}
.brand-text-block {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SEARCH BAR */
.search-wrapper {
  flex: 1;
  max-width: 460px;
  position: relative;
}
.search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.6rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  background-color: var(--bg-surface);
  font-size: 0.875rem;
  color: var(--text-main);
  transition: var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 61, 110, 0.15);
}
.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #22c55e;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}
.btn-header-wa:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}
.btn-header-wa .status-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

/* ==========================================================================
   CLEAN & ORGANIZED E-COMMERCE NAVIGATION BAR
   ========================================================================== */
.site-nav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: #ffffff;
  position: relative;
  z-index: 50;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

/* DEPARTAMENTOS / TODAS AS CATEGORIAS BUTTON */
.nav-dept-wrapper {
  position: relative;
  flex-shrink: 0;
}
.nav-dept-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  background-color: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.nav-dept-btn:hover,
.nav-dept-wrapper:hover .nav-dept-btn,
.nav-dept-wrapper.open .nav-dept-btn {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: rgba(217, 61, 110, 0.35);
}
.nav-dept-btn .chevron-arrow {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}
.nav-dept-btn:hover .chevron-arrow,
.nav-dept-wrapper:hover .chevron-arrow,
.nav-dept-wrapper.open .chevron-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* MEGA DROPDOWN MENU PANEL */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 680px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.12), 0 6px 12px -3px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.nav-dept-wrapper:hover .mega-dropdown,
.nav-dept-wrapper.open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mega-heading {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
  padding-bottom: 0.45rem;
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 0.35rem;
}
.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84375rem;
  color: var(--text-main);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  transition: var(--transition);
  font-weight: 500;
  text-decoration: none;
}
.mega-link:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateX(3px);
}
.mega-hot {
  font-size: 0.65rem;
  font-weight: 800;
  background: #fee2e2;
  color: #dc2626;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}
.mega-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 0.85rem;
  display: flex;
  justify-content: flex-end;
}
.mega-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.mega-footer-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* NAV LINKS ROW */
.nav-links-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}
.nav-text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 0.85rem 0;
  position: relative;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-text-link:hover {
  color: var(--primary);
}
.nav-text-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}
.nav-text-link:hover::after {
  width: 100%;
}

/* SUBMENU POPOVER FOR DATAS ESPECIAIS */
.nav-sub-dropdown {
  position: relative;
}
.nav-sub-btn {
  font-family: inherit;
}
.nav-sub-popover {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 210px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-sub-dropdown:hover .nav-sub-popover,
.nav-sub-dropdown:focus-within .nav-sub-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-sub-popover a {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
}
.nav-sub-popover a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* INSTITUTIONAL RIGHT LINKS */
.nav-institutional {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-inst-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.nav-inst-link:hover {
  color: var(--primary);
}

/* RESPONSIVE NAVIGATION STYLES */
@media (max-width: 992px) {
  .nav-institutional {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-nav-inner {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  .site-nav-inner::-webkit-scrollbar {
    display: none;
  }
  .nav-dept-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
  .mega-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 80vh;
    overflow-y: auto;
    padding: 1.5rem 1.25rem;
    transform: translateY(100%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  }
  .nav-dept-wrapper.open .mega-dropdown {
    transform: translateY(0);
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .nav-links-row {
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-text-link {
    font-size: 0.8125rem;
    padding: 0.4rem 0;
  }
  .nav-sub-dropdown {
    display: none;
  }
}

/* HERO BANNER */
.hero-section {
  background: linear-gradient(135deg, #fff1f4 0%, #fdf4f7 50%, #f8fafc 100%);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(217, 61, 110, 0.2);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero-title span {
  color: var(--primary);
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(217, 61, 110, 0.3);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 61, 110, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.btn-secondary:hover {
  background-color: var(--bg-surface);
  border-color: var(--text-light);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 380px;
  width: 100%;
}
.hero-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
}
.hero-card-content {
  padding: 1rem 0.5rem 0.5rem;
}
.hero-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}
.hero-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

/* TRUST BADGES */
.trust-strip {
  padding: 2.25rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.trust-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* SECTION HEADINGS */
.section {
  padding: 3.5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-subtitle {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 61, 110, 0.3);
}
.product-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(30, 41, 59, 0.85);
  color: #ffffff;
  backdrop-filter: blur(4px);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.product-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.product-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}
.product-title a:hover {
  color: var(--primary);
}
.product-price-box {
  margin-top: auto;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
}
.product-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--secondary);
}
.product-price-note {
  font-size: 0.75rem;
  color: var(--whatsapp-dark);
  font-weight: 600;
}

/* ACTION BUTTONS (CONVERSION DUAL CHANNELS) */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.btn-wa-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}
.btn-wa-card:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}
.btn-ml-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: var(--ml-yellow);
  color: var(--ml-blue);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid rgba(45, 50, 119, 0.15);
}
.btn-ml-card:hover {
  background-color: var(--ml-yellow-hover);
}

/* HOW IT WORKS SECTION */
.how-it-works {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #f43f5e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(217, 61, 110, 0.3);
}
.step-title {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--secondary);
  margin-bottom: 0.45rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PRODUCT DETAIL PAGE */
.product-detail-section {
  padding: 2.5rem 0 4rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.detail-gallery {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 6rem;
}
.detail-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
}
.detail-category {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.detail-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.detail-sku {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.detail-price-card {
  background-color: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}
.detail-price-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.detail-price-pix {
  font-size: 0.875rem;
  color: var(--whatsapp-dark);
  font-weight: 700;
  margin-top: 0.25rem;
}

.personalization-box {
  background-color: var(--primary-light);
  border: 1.5px dashed rgba(217, 61, 110, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.personalization-box h4 {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.personalization-box p {
  font-size: 0.8125rem;
  color: var(--secondary);
  line-height: 1.45;
}

/* QUICK PERSONALIZATION BOX (TURBO WHATSAPP) */
.quick-personalize-box {
  background: #ffffff;
  border: 1.5px solid #fbcfe8;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(217, 61, 110, 0.08);
  transition: var(--transition);
}
.quick-personalize-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(217, 61, 110, 0.18);
}
.quick-personalize-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.quick-personalize-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
}
.quick-personalize-title svg {
  color: var(--primary);
}
.quick-personalize-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  border: 1px solid rgba(217, 61, 110, 0.2);
}
.quick-personalize-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}
.quick-personalize-input {
  width: 100%;
  padding: 0.85rem 3.5rem 0.85rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #fafbfc;
  color: var(--secondary);
  outline: none;
  transition: var(--transition);
}
.quick-personalize-input:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 61, 110, 0.12);
}
.quick-personalize-input::placeholder {
  color: var(--text-light);
  font-size: 0.875rem;
}
.quick-personalize-count {
  position: absolute;
  right: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  pointer-events: none;
}
.quick-personalize-info {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.quick-personalize-info .info-icon {
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}

/* ==========================================================================
   DELICATE PRODUCT ACTIONS & PERSONALIZATION MODULE
   ========================================================================== */
.delicate-card {
  background: #ffffff;
  border: 1.5px solid #fce7f3;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px -2px rgba(217, 61, 110, 0.06);
  transition: all 0.2s ease;
}
.delicate-card:focus-within {
  border-color: #f472b6;
  box-shadow: 0 6px 20px -2px rgba(217, 61, 110, 0.12);
}

.delicate-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  gap: 0.75rem;
}
.delicate-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.delicate-icon-pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff0f4;
  color: #d93d6e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.delicate-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}
.delicate-sub {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-top: 0.15rem;
}
.delicate-badge-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #d93d6e;
  background: #fff1f4;
  border: 1px solid #fecdd3;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Campo de Texto */
.delicate-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.85rem;
}
.delicate-input-field {
  width: 100%;
  padding: 0.75rem 3.5rem 0.75rem 0.95rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1e293b;
  background-color: #fafbfc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: all 0.2s ease;
}
.delicate-input-field:focus {
  border-color: #d93d6e;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 61, 110, 0.12);
}
.delicate-input-field::placeholder {
  color: #94a3b8;
  font-size: 0.8125rem;
}
.delicate-char-count {
  position: absolute;
  right: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  pointer-events: none;
}

/* Mini-Card de Embalagem (Upsell) */
.delicate-upsell-box {
  background: linear-gradient(135deg, #fff9f9 0%, #fff4f6 100%);
  border: 1.5px dashed #f472b6;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s ease;
}
.delicate-upsell-box:hover {
  background: #fff0f4;
  border-color: #d93d6e;
  transform: translateY(-1px);
}
.delicate-upsell-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.delicate-upsell-check {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: #d93d6e;
  cursor: pointer;
  flex-shrink: 0;
}
.delicate-upsell-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.delicate-upsell-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.delicate-upsell-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.delicate-upsell-title {
  font-size: 0.84375rem;
  font-weight: 700;
  color: #1e293b;
}
.delicate-upsell-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  background-color: #d93d6e;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}
.delicate-upsell-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* Dica Sutil */
.delicate-subtle-hint {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}
.delicate-subtle-hint svg {
  color: #94a3b8;
  flex-shrink: 0;
}

/* Gatilho de Produção Expressa */
.delicate-express-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #bbf7d0;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.delicate-express-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #dcfce7;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.delicate-pulse-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  animation: pulse 1.8s infinite;
}
.delicate-express-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.delicate-express-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  flex-wrap: wrap;
}
.delicate-express-title strong {
  color: #15803d;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.delicate-express-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: #166534;
  background: #dcfce7;
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
}
.delicate-express-text {
  font-size: 0.78125rem;
  color: #166534;
  line-height: 1.45;
  margin: 0;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.btn-wa-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.0625rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn-wa-large:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}
.btn-ml-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--ml-yellow);
  color: var(--ml-blue);
  font-weight: 800;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid rgba(45, 50, 119, 0.2);
}
.btn-ml-large:hover {
  background-color: var(--ml-yellow-hover);
}

.product-specs {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.product-specs h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.specs-list {
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.specs-list li {
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.specs-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.05);
}

/* FOOTER */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-top: auto;
  border-top: 1px solid #1e293b;
}
.footer-main {
  padding: 4rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logo span {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-desc {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a:hover {
  color: #ffffff;
}
.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .brand-logo img, .header-logo-img {
    height: 58px;
  }
  .header-main {
    flex-wrap: wrap;
  }
  .search-wrapper {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 0.5rem;
  }
  .hero-title {
    font-size: 1.875rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .detail-gallery {
    position: static;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FAQ ACCORDION (SEO & USER ENGAGEMENT)
   ========================================================================== */
.faq-section {
  margin-top: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  margin-bottom: 1.5rem;
}

.faq-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item[open] {
  border-color: var(--primary);
  background: #fffbfa;
}

.faq-summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 0.9375rem;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-summary::after {
  content: "−";
  font-weight: 700;
}

.faq-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

