/* =============================================
   OUTLET ARANTINA — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #f5f5f3;
  color: #111;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

/* VARIÁVEIS */
:root {
  --vermelho: #dc2626;
  --vermelho-escuro: #b91c1c;
  --preto: #111111;
  --branco: #ffffff;
  --cinza-claro: #f5f5f3;
  --cinza-borda: #e5e5e5;
  --cinza-texto: #555;
  --raio: 12px;
  --sombra: 0 4px 24px rgba(0,0,0,0.08);
  --sombra-hover: 0 8px 32px rgba(0,0,0,0.14);
}

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
}

h1 { font-size: clamp(48px, 8vw, 80px); }
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: 18px; font-weight: 600; }

/* =============================================
   BOTÕES
   ============================================= */
.btn-primary {
  display: inline-block;
    background-color: transparent;   ;
  color: var(--branco);
  padding: 14px 32px;
  border-radius: var(--raio);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--vermelho-escuro);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 13px 28px;
  border-radius: var(--raio);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.section-label {
  display: inline-block;
  background: var(--vermelho);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* =============================================
   HEADER
   ============================================= */
header {
  background: var(--preto);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: white;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--preto);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(220,38,38,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 24px;
  margin: 0 auto 36px;
  border: 2px solid rgba(255,255,255,0.1);
}

.hero h1 {
  color: #f5e6c8;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--vermelho);
}

.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  top: 36px;
  right: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 8px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* =============================================
   ESTATÍSTICAS
   ============================================= */
.stats {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--cinza-borda);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 300px;
}

.stat-item strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 1px;
  color: var(--vermelho);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza-texto);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--cinza-borda);
}

/* =============================================
   PRODUTOS
   ============================================= */
.produtos-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.produtos-section h2 {
  margin-bottom: 48px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.produto-card {
  background: white;
  border-radius: var(--raio);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.produto-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
  padding: 0;
}

.produto-card:hover .produto-img-wrap img {
  transform: scale(1.04);
}

.produto-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--vermelho);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}

.produto-info {
  padding: 20px;
}

.produto-info h3 {
  margin-bottom: 12px;
  color: var(--preto);
}

.produto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.produto-preco {
  font-size: 22px;
  font-weight: 700;
  color: var(--vermelho);
}

.btn-comprar {
  display: inline-block;
  background: var(--preto);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-comprar:hover {
  background: #333;
}

.catalogo-cta {
  text-align: center;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--preto);
  color: white;
  padding: 100px 24px;
}

.sobre-inner {
  max-width: 760px;
  margin: 0 auto;
}

.sobre h2 {
  color: white;
  margin-bottom: 32px;
}

.sobre p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* =============================================
   LOCALIZAÇÃO
   ============================================= */
.localizacao {
  background: white;
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}

.localizacao h2 {
  margin-bottom: 32px;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--cinza-texto);
}

.loc-item svg {
  color: var(--vermelho);
  flex-shrink: 0;
}

/* =============================================
   AVALIAÇÕES
   ============================================= */
.feedbacks {
  background: var(--cinza-claro);
  padding: 80px 24px;
  max-width: 100%;
}

.feedbacks > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.feedbacks h2 {
  margin-bottom: 40px;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.avaliacao-card {
  background: white;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--raio);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.avaliacao-card:hover {
  box-shadow: var(--sombra);
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.avaliacao-card p {
  color: #444;
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.avaliacao-card strong {
  font-size: 13px;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FORMULÁRIO */
.form-section {
  background: white;
  border-radius: var(--raio);
  border: 1px solid var(--cinza-borda);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.form-section h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.form-feedback {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-feedback input,
.form-feedback select,
.form-feedback textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--preto);
  background: var(--cinza-claro);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-feedback input:focus,
.form-feedback select:focus,
.form-feedback textarea:focus {
  border-color: var(--vermelho);
  background: white;
}

.form-feedback textarea {
  min-height: 130px;
  resize: vertical;
}

.form-feedback .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
}

.form-success {
  text-align: center;
  font-size: 17px;
  color: #16a34a;
  font-weight: 600;
  padding: 24px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--preto);
  color: white;
  padding: 64px 24px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-sub {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 13px 24px;
  border-radius: var(--raio);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 13px 24px;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-insta:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  nav.open {
    display: flex;
  }

  nav a {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 100px 24px 80px;
  }

  .hero-badge {
    position: static;
    display: inline-block;
    margin-bottom: 24px;
  }

  .stats {
    flex-direction: column;
    gap: 0;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .stat-item {
    padding: 32px 24px;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 24px 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .produto-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-comprar {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .btn-whatsapp,
  .btn-insta {
    width: 100%;
    justify-content: center;
  }
}/* Configuração do Carrinho Flutuante */
.floating-cart {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #e52e2e !important;
    color: #ffffff !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5) !important;
    z-index: 99999 !important;
    transition: transform 0.2s ease !important;
    cursor: pointer !important;
}

.floating-cart:hover {
    transform: scale(1.1) !important;
}

.floating-cart svg {
    stroke: #ffffff !important;
    display: block !important;
}


@media (max-width: 768px) {
  /* tudo que já existe */

  .hero h1 {
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
    color: #f5e6c8 !important;
  }
}/* Configuração do Toast */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 320px;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    transform: translateX(400px);
    transition: all .35s ease;
    opacity: 0;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.sucesso {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.toast.erro {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.toast.info {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.stat-item strong {
  display: inline-block;
  color: var(--branco) !important;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.stat-item:hover strong {
  transform: translateY(-4px);
  text-shadow: 0 15px 10px rgba(255, 255, 255, 0.15);
  color: var(--branco) !important;
}
/* --- APLICANDO O MESMO EFETO NO TÍTULO INTEIRO --- */

/* Estado normal do título (assim como o .stat-item strong) */
.hero h1 {
  color: #f5e6c8 !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

/* O GATILHO DO HOVER: Aplica exatamente o mesmo efeito do bloco de estatísticas */
.hero h1:hover {
  transform: translateY(-4px) !important; /* Sobe a mesma distância */
  text-shadow: 0 15px 10px rgba(255, 255, 255, 0.15) !important; /* Mesmo reflexo sombreado embaixo */
  color: var(--branco) !important;
}
.carousel-produto{
    position:relative;
    overflow:hidden;
    border-radius:12px 12px 0 0;
    aspect-ratio:4 / 5;
    background:linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
}

.carousel-track{
    display:flex;
    height:100%;
    transition:transform .35s ease;
}

.carousel-img{
    width:100%;
    min-width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    padding:0;
    display:block;
    background:transparent;
}

.carousel-track img{
    transform:none !important;
}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(4px);
    color:#111;
    cursor:pointer;
    z-index:10;
    opacity:0;
    transition:.25s;
    font-size:14px;
    font-weight:700;
}

.carousel-produto:hover .carousel-btn{
    opacity:1;
}

.carousel-btn.prev{
    left:10px;
}

.carousel-btn.next{
    right:10px;
}

.carousel-dots{
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
}

.carousel-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
}

.carousel-dot.active{
    background:#fff;
}
