:root{
  --bg: #f3f0fa;
  --surface: #ffffff;
  --surface-2: #f4f5f7;
  --text: #1c1c1c;
  --muted: #545b66;
  --border: rgba(20, 20, 20, 0.10);
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  --shadow-soft: 0 10px 25px rgba(17, 24, 39, 0.08);

  /* ✅ TROCA SÓ A COR PRINCIPAL (verde -> lilás) */
  --accent: #a45bdc; /* lilás bem próximo da logo */

  --radius: 16px;
}

*{ margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif; }

body{ background: var(--bg); color: var(--text); }

.container{ width: 90%; max-width: 1200px; margin: auto; }

/* HEADER */
header{
  background: var(--surface);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav{
  display:flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color: inherit;
}
.brand-logo{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 25px rgba(17,24,39,0.08);
}
.brand-text{ display:grid; line-height:1.1; }
.brand-text strong{ font-size:14px; letter-spacing:0.2px; color:#2b2441; }
.brand-text span{ font-size:12px; color: var(--muted); }

nav a{
  margin-left: 22px;
  text-decoration:none;
  color:#2b2441;
  font-size:14px;
  font-weight:600;
  opacity:0.85;
  transition:0.2s;
}
nav a:hover{ opacity:1; transform: translateY(-1px); }

/* BOTÕES */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  transition:0.25s;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
}
.btn:hover{ transform: translateY(-2px); }
.btn-principal{ background: var(--accent); color:#fff; } /* ✅ texto branco fica mais bonito no lilás */
.btn-secundario{ background:#e9e9e9; color:#222; }

/* HERO */
.hero{ padding: 90px 0; }
.hero-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
}
.hero-text h1{
  font-size:40px;
  margin-bottom:18px;
  line-height:1.08;
  letter-spacing:-0.8px;
  color:#2b2441;
}
.hero-text p{
  margin-bottom:26px;
  line-height:1.8;
  color: var(--muted);
  font-size:15px;
  max-width:58ch;
}

.hero-image{
  width:340px;
  height:230px;
  background:#ddd;
  border-radius: var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-soft);
}
.hero-image-real{
  background:#fff;
  border-radius:18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  overflow:hidden;
}
.hero-image-real img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:22px;
}

/* CATEGORIAS */
.produtos{
  background: var(--surface);
  padding: 80px 0;
  text-align:center;
}
.produtos h2{
  font-size:28px;
  color:#2b2441;
  letter-spacing:-0.4px;
  margin-bottom:10px;
}

.categorias{
  display:flex;
  gap:18px;
  margin-top:44px;
}

.categoria{
  flex:1;
  text-align:left;
  padding:22px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border:1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:0.25s;
}
.categoria:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.categoria h3{
  margin-top:6px;
  margin-bottom:8px;
  color:#2b2441;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
}
.categoria p{
  color: var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* “abinha” premium */
.categoria-click{ cursor:pointer; }
.categoria-click:focus{
  outline: 3px solid rgba(164, 91, 220, 0.55); /* ✅ lilás */
  outline-offset: 3px;
}

.cat-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.cat-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(164, 91, 220, 0.22); /* ✅ lilás suave */
  border: 1px solid rgba(20,20,20,0.08);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:#2b2441;
}
.cat-arrow{
  width:40px; height:40px;
  border-radius:14px;
  background:#e9e9e9;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.25s;
  color:#2b2441;
}
.categoria:hover .cat-arrow{
  transform: translateX(4px) scale(1.03);
  background: var(--accent);
  color:#fff; /* ✅ melhor no lilás */
}
.cat-mini{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  font-size:12px;
  color:#2b2441;
  background: rgba(43,36,65,0.06);
  border: 1px dashed rgba(43,36,65,0.25);
  padding:6px 10px;
  border-radius:999px;
  margin-right:10px;
}

/* SOBRE */
.sobre{ padding:80px 0; }
.sobre-box{
  background: var(--surface);
  border-radius:18px;
  padding:38px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}
.sobre-box h2{
  font-size:24px;
  margin-bottom:10px;
  color:#2b2441;
}
.sobre-box p{
  color: var(--muted);
  line-height:1.8;
  font-size:14px;
  max-width:720px;
}

/* CONTATO */
.contato{
  background: var(--surface);
  padding:85px 0;
  text-align:center;
}
.contato h2{
  font-size:28px;
  margin-bottom:10px;
  color:#2b2441;
}
.contato p{ color: var(--muted); line-height:1.8; }

.botoes-contato{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:14px;
}
.contato-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  transition:0.25s;
  box-shadow: 0 10px 25px rgba(17,24,39,0.08);
}
.contato-btn i{ font-size:16px; }
.insta{ background:#e9e9e9; color:#222; }
.whatsapp{ background: var(--accent); color:#fff; } /* ✅ */
.contato-btn:hover{ transform: translateY(-2px); }

.contato-info{
  margin-top:32px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.info-card{
  background: var(--surface-2);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px 18px;
  display:flex;
  align-items:center;
  gap:12px;
  text-align:left;
  box-shadow: var(--shadow-soft);
  transition:0.25s;
}
.info-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.info-card i{ font-size:20px; color:#2b2441; }
.info-card span{
  display:block;
  color: var(--muted);
  font-size:13px;
  margin-top:2px;
}

/* DEPOIMENTOS */
.depoimentos{
  background: linear-gradient(180deg, var(--bg) 0%, #eceaf6 100%);
  padding:95px 0;
}
.dep-top{
  text-align:center;
  max-width:860px;
  margin: 0 auto 52px;
}
.dep-top h2{
  font-size:38px;
  line-height:1.12;
  letter-spacing:-0.6px;
  margin-bottom:14px;
  color:#2b2441;
}
.dep-top p{ color: var(--muted); line-height:1.7; font-size:15px; }
.dep-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}
.dep-card{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:26px 26px 22px;
  box-shadow: var(--shadow-soft);
  position:relative;
  overflow:hidden;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.dep-card::before{
  content:"";
  position:absolute;
  top:-60px; right:-60px;
  width:140px; height:140px;
  background: radial-gradient(circle, rgba(164, 91, 220, 0.40) 0%, rgba(164, 91, 220, 0.0) 65%); /* ✅ lilás */
}
.dep-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.dep-stars{ color:#2b2441; font-size:16px; letter-spacing:2px; margin-bottom:16px; opacity:0.9; }
.dep-text{ color:#1f2937; line-height:1.75; font-size:15px; margin-bottom:22px; max-width:32ch; }
.dep-user-info{
  border-top: 1px dashed rgba(20,20,20,0.18);
  padding-top:14px;
  display:grid;
  gap:2px;
}
.dep-user-info strong{ font-size:14px; color:#2b2441; }
.dep-user-info span{ font-size:13px; color: var(--muted); }

/* FOOTER */
footer{
  padding:28px;
  text-align:center;
  font-size:13px;
  color:#666;
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* WHATS FLUTUANTE */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  background: var(--accent);
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff; /* ✅ */
  font-size:26px;
  box-shadow: 0 12px 32px rgba(17,24,39,0.18);
  transition:0.25s;
  z-index:30;
}
.whatsapp-float:hover{ transform: scale(1.08); }

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  background: rgba(10,10,20,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:999;
}
.modal.show{ display:flex; }

.modal-box{
  width: min(1100px, 96vw);
  max-height: 86vh;
  background: var(--surface);
  border-radius:18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  overflow:hidden;
}
.modal-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.modal-top h3{ font-size:16px; color:#2b2441; }
.modal-close{
  border:none;
  background:#f0f1f3;
  color:#111;
  width:40px; height:40px;
  border-radius:12px;
  font-size:18px;
  cursor:pointer;
  transition:0.2s;
}
.modal-close:hover{ transform: scale(1.06); }

.modal-body{
  padding:18px;
  overflow:auto;
  max-height: calc(86vh - 64px);
}

/* grupos (gaxetas) */
.modal-group{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow-soft);
  margin-bottom:16px;
}
.modal-group h4{
  font-size:15px;
  color:#2b2441;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:10px;
}
.modal-group .group-desc{
  color: var(--muted);
  line-height:1.7;
  font-size:14px;
  white-space: pre-line;
  margin-bottom:12px;
}

.modal-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}

.modal-item{
  background:#fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:14px;
  box-shadow: 0 12px 28px rgba(17,24,39,0.08);
  transition:0.25s;
}
.modal-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(17,24,39,0.14);
}

/* imagem clicável (zoom) */
.modal-item img{
  width:100%;
  height:180px;
  object-fit: contain;
  background:#fff;
  border-radius:14px;
  padding:10px;
  margin-bottom:10px;
  cursor: zoom-in;
}

.item-title{
  font-weight: 900;
  color:#2b2441;
  font-size: 14px;
  margin: 4px 0 8px;
}

.item-desc{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-line;
  margin-bottom: 12px;
}

.modal-item a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background: var(--accent);
  text-decoration:none;
  color:#fff; /* ✅ */
  font-size:13px;
  font-weight:900;
  transition:0.25s;
  box-shadow: 0 12px 28px rgba(17,24,39,0.10);
}
.modal-item a:hover{ transform: translateY(-2px); }

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}
.lightbox.show{ display:flex; }

.lightbox img{
  width: min(1100px, 96vw);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.12);
}
.lightbox-close{
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: none;
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  transition: 0.2s;
}
.lightbox-close:hover{ transform: scale(1.06); }

/* RESPONSIVO */
@media (max-width: 980px){
  .hero-content{ flex-direction:column; text-align:center; }
  .hero-image{ width:100%; max-width:520px; }
  .categorias{ flex-direction:column; }
  .sobre-box{ flex-direction:column; text-align:center; }
  .contato-info{ grid-template-columns: 1fr; }
  .dep-grid{ grid-template-columns: 1fr; }
  nav{ display:none; }
}

/* ===== PREVIEW / CARROSSEL (3 IMAGENS) ===== */
.preview{
  padding: 40px 0 20px;
}

.preview-inner{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(17,24,39,0.10);
  backdrop-filter: blur(8px);
  padding: 26px;
}

.preview-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.preview-title{
  font-size: 20px;
  letter-spacing: -0.4px;
  color: #2b2441;
}

.preview-sub{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 52ch;
  text-align: right;
}

.preview-carousel{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.preview-slot{
  border-radius: 18px;
  overflow:hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 32px rgba(17,24,39,0.10);
  position: relative;
  min-height: 170px;
}

.preview-slot::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 0%, rgba(164, 91, 220, 0.22) 0%, rgba(164, 91, 220, 0.0) 55%); /* ✅ lilás */
  pointer-events:none;
}

.preview-slot img{
  width:100%;
  height: 190px;
  object-fit: contain;
  padding: 12px;
  display:block;
  opacity: 1;
  transform: scale(1);
  transition: opacity .35s ease, transform .35s ease;
  cursor: default;
}

.preview-slot img.is-fading{
  opacity: 0;
  transform: scale(0.985);
}

@media (max-width: 980px){
  .preview-top{
    align-items:flex-start;
    flex-direction: column;
  }
  .preview-sub{ text-align:left; }
  .preview-carousel{
    grid-template-columns: 1fr;
  }
  .preview-slot img{ height: 210px; }
}

/* =========================================================
   ✅ HERO LOGO (SEM GIRAR)
   ========================================================= */
.hero-image-real img.hero-logo{
  image-orientation: none;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}