/* ==========================================================================
   Sinestesia Imports — Landing Page Provisória (Design System V4)
   Base: V4 (Paleta Orgânica Contemporânea: Creme, Esmeralda Florestal e Dourado)
   WhatsApp Oficial: (11) 94645-2974
   ========================================================================== */

:root {
  /* Paleta V4 Oficial */
  --background: #fbfaf6;
  --foreground: #17372b;
  --card: #ffffff;
  --card-foreground: #17372b;
  
  --primary: #173f31;
  --primary-hover: #123327;
  --primary-foreground: #ffffff;
  
  --secondary: #edf1eb;
  --secondary-foreground: #17372b;
  
  --muted: #f2efe8;
  --muted-foreground: #60736b;
  
  --accent: #eadcb7;
  --accent-foreground: #4b3b12;
  
  --gold-v4: #a07b20;
  --gold-light: #dfc777;
  --gold-glow: #f7f2e6;
  
  --border: #dfe5df;
  --border-light: rgba(23, 63, 49, 0.08);
  
  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-hover: #20ba5a;
  --whatsapp-dark: #128c7e;

  /* Fontes */
  --font-serif: Georgia, "Playfair Display", "Times New Roman", serif;
  --font-sans: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;

  /* Raios Orgânicos V4 */
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 9999px;

  /* Sombras V4 */
  --shadow-sm: 0 4px 12px rgba(23, 63, 49, 0.04);
  --shadow-md: 0 12px 32px rgba(23, 63, 49, 0.08);
  --shadow-lg: 0 20px 48px rgba(23, 63, 49, 0.12);
  --shadow-whatsapp: 0 10px 30px rgba(37, 211, 102, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: normal;
  color: var(--foreground);
  line-height: 1.15;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Barra de Topo V4 */
.top-announcement {
  background-color: var(--primary);
  color: #f7f2e6;
  padding: 0.65rem 1rem;
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-badge {
  background-color: var(--gold-light);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.top-phone-link {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.25rem;
}

/* Cabeçalho V4 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(251, 250, 246, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 63, 49, 0.1);
  padding: 0.9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-header-whatsapp:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* Hero Section V4: Grid duplo assimétrico */
.hero-section {
  padding: 2.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-card-left {
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23, 63, 49, 0.06);
}

@media (max-width: 640px) {
  .hero-card-left {
    padding: 2.25rem 1.5rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-v4);
  margin-bottom: 1.25rem;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: normal;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--foreground);
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: #51675f;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary-v4 {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(23, 63, 49, 0.25);
}

.btn-primary-v4:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 63, 49, 0.35);
}

.btn-secondary-v4 {
  background-color: #ffffff;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-secondary-v4:hover {
  background-color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero-card-right {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #eee9dc;
  border: 1px solid rgba(23, 63, 49, 0.06);
}

@media (max-width: 960px) {
  .hero-card-right {
    min-height: 380px;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.floating-tag-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-v4);
}

.floating-tag-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--foreground);
  margin-top: 0.15rem;
}

/* ==========================================================================
   Barra / Card de Consulta Inteligente WhatsApp (Perfeitamente Centralizada)
   ========================================================================== */
.inquiry-section-wrapper {
  padding: 1rem 1.5rem 3.5rem;
}

.inquiry-box-v4 {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.inquiry-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.inquiry-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  color: var(--foreground);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.inquiry-subtext {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.inquiry-form-v4 {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.inquiry-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.4rem 0.4rem 1.25rem;
  box-shadow: 0 4px 18px rgba(23, 63, 49, 0.06);
  transition: all 0.2s ease;
}

.inquiry-search-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(23, 63, 49, 0.1);
}

.search-icon-svg {
  color: var(--gold-v4);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.inquiry-input-v4 {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  min-width: 0;
}

.inquiry-input-v4::placeholder {
  color: #8c9e96;
}

.inquiry-btn-v4 {
  background-color: var(--whatsapp);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.inquiry-btn-v4:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

@media (max-width: 680px) {
  .inquiry-box-v4 {
    padding: 2rem 1.25rem;
  }
  .inquiry-search-bar {
    flex-direction: column;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    gap: 0.75rem;
  }
  .inquiry-input-v4 {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }
  .inquiry-btn-v4 {
    width: 100%;
    justify-content: center;
  }
}

.inquiry-tags-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tags-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-right: 0.25rem;
}

.tag-btn-v4 {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-btn-v4:hover {
  background: #ffffff;
  border-color: var(--gold-v4);
  color: var(--gold-v4);
  transform: translateY(-1px);
}

/* Banners de Categoria V4 */
.categories-section-v4 {
  padding: 1rem 0 4rem;
}

.categories-grid-v4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .categories-grid-v4 {
    grid-template-columns: 1fr;
  }
}

.category-card-v4 {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card-v4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-perfumes-v4 {
  background-color: var(--primary);
  color: #ffffff;
}

.category-cosmeticos-v4 {
  background-color: var(--accent);
  color: var(--foreground);
}

.category-badge-v4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.category-perfumes-v4 .category-badge-v4 {
  color: var(--gold-light);
}

.category-cosmeticos-v4 .category-badge-v4 {
  color: #755813;
}

.category-title-v4 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  max-width: 320px;
  line-height: 1.15;
}

.category-perfumes-v4 .category-title-v4 {
  color: #ffffff;
}

.category-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 2rem;
}

.category-perfumes-v4 .category-link-cta {
  color: #ffffff;
}

.category-cosmeticos-v4 .category-link-cta {
  color: var(--foreground);
}

.category-card-img {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  max-width: 300px;
  pointer-events: none;
}

/* Curadoria Institucional V4 */
.curadoria-section-v4 {
  background-color: var(--primary);
  color: #ffffff;
  padding: 5.5rem 0;
  margin-top: 2rem;
}

.curadoria-grid-v4 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .curadoria-grid-v4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.curadoria-badge-v4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.curadoria-title-v4 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #ffffff;
  line-height: 1.15;
}

.curadoria-text-v4 {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.curadoria-pillars-v4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pillar-item-v4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}

.pillar-icon-svg {
  color: var(--gold-light);
}

/* Banner de Atendimento VIP WhatsApp */
.vip-card-v4 {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  margin: 4rem 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.vip-badge-pill {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.vip-title-v4 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.vip-desc-v4 {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.vip-actions-v4 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-whatsapp-large {
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-whatsapp);
  transition: all 0.2s ease;
}

.btn-whatsapp-large:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

/* FAQ Accordion */
.faq-section-v4 {
  padding: 2rem 0 5rem;
}

.faq-title-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list-v4 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item-v4 {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item-v4:hover {
  border-color: var(--primary);
}

.faq-question-v4 {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--foreground);
  cursor: pointer;
}

.faq-icon-arrow {
  color: var(--gold-v4);
  transition: transform 0.3s ease;
}

.faq-item-v4.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-v4 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item-v4.active .faq-answer-v4 {
  max-height: 250px;
  padding: 0 1.75rem 1.35rem;
}

/* Rodapé V4 */
.site-footer-v4 {
  background-color: var(--muted);
  border-top: 1px solid rgba(23, 63, 49, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid-v4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid-v4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid-v4 {
    grid-template-columns: 1fr;
  }
}

.footer-brand-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-bio {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-item {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(23, 63, 49, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float-v4 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background-color: var(--whatsapp);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.25s ease;
}

.whatsapp-float-v4:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-float-text-v4 {
    display: none;
  }
  .whatsapp-float-v4 {
    padding: 0.85rem;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}

/* Toast Notification */
.toast-msg-v4 {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.toast-msg-v4.show {
  opacity: 1;
  transform: translateY(0);
}
