/* ==== BASE: VARIÁVEIS ==== */
:root {
  --bg: #F5F1EC;
  --text: #111;
  --muted: #6b6b6b;
  --accent: #C9A86B;
  --nav-height: 80px;
  --radius: 16px;
  --logo-height: 70px; /* novo tamanho */
}

/* ==== BASE: RESET E TIPOGRAFIA ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Container utilitário */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* ==== HEADER PRINCIPAL ==== */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  min-height: var(--nav-height);
  height: auto;
  display: flex;
  align-items: center;
  z-index: 60;
  padding: 0 24px;
  background: rgba(8, 8, 8, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 6, 6, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

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

.logo,
.logo img {
  height: var(--logo-height);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ==== HERO ==== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

/* ==== HERO — FUNDO ==== */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../Fotos/Cozinha.webp");
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 1;
}

/* ==== HERO — CONTEÚDO CENTRAL ==== */
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
}

/* ==== HERO — BLOCO ESQUERDO ==== */
.hero-left {
  flex: 1;
  max-width: 720px;
  color: #fff;
}

/* ==== HERO — TÍTULO ==== */
.hero-left h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  margin: 6px 0;
  letter-spacing: -1px;
}

.hero-left h1 span {
  display: block;
  font-weight: 700;
}

/* ==== HERO — SUBTÍTULO ==== */
.hero-left .subtitle {
  margin: 14px 0 28px;
}

.subtitle {
  margin-top: 18px;
  font-size: 20px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

/* ==== HERO — AÇÕES ==== */
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 14px 50px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, opacity 0.14s ease;
  will-change: transform;
}

.btn-white {
  background: #fff;
  color: #111;
  box-shadow: 0 6px 22px rgba(17, 17, 17, 0.12);
}

.btn-white:hover,
.btn-white:focus {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.18);
  opacity: 1;
}


.btn-solid {
  background: #1c1208;
  color: #fff;
  border-radius: 999px;
  padding: 14px 32px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

/* ==== CTA: BOTÃO FALE CONOSCO ==== */
.btn-outline {
  border-radius: 10px;
  padding: 14px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.btn-solid:hover,
.btn-solid:focus,
.btn-outline:hover,
.btn-outline:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

/* ==== HERO — VITRINE DE CARDS ==== */
.hero-right {
  width: auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d; 
}

/* ==== HERO — CARD INDIVIDUAL ==== */
.card {
  width: 230px;      /* ajuste conforme necessário */
  height: 340px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease; /* smooth hover */
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease; /* subtle image motion on hover */
  backface-visibility: hidden;
}

/* offsets para dar efeito “mockup” — toned down so visual center stays */
.card-top,
.card-bottom {
  transform: none;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 50px rgba(10, 10, 10, 0.32);
}

.card:hover img {
  transform: translateY(-4px) scale(1.01);
}

/* ==== SEÇÃO NOSSOS PRODUTOS ==== */
.overview {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.4fr);
  gap: 48px;
  padding: 84px 0 120px;
  align-items: stretch;
}

.overview > .col {
  grid-column: 1 / -1;
}

/* ==== CARROSSEL DE PRODUTOS ==== */
.prod-carousel {
  position: relative;
  margin-top: 36px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

/* ==== JANELA DO CARROSSEL ==== */
.prod-window {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 6px clamp(64px, 10vw, 140px);
}

/* ==== TRILHO DO CARROSSEL ==== */
.prod-track {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
  will-change: transform;
  transform: translateX(0);
  touch-action: pan-y;
}

/* ==== CONTROLES DO CARROSSEL ==== */
.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(26, 18, 8, 0.85);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px) saturate(140%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-btn span {
  line-height: 1;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
  left: clamp(8px, 2vw, 28px);
}

.carousel-btn.next {
  right: clamp(8px, 2vw, 28px);
}

/* ==== CARD DE PRODUTO ==== */
.prod {
  min-width: clamp(240px, 20vw, 360px);
  flex: 0 0 clamp(240px, 20vw, 360px);
  height: 260px;
  padding: 0;
  border-radius: 22px;
  background-image: var(--prod-img);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.prod::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
}

.prod-content {
  position: relative;
  width: 100%;
  padding: 18px;
  color: #fff;
  text-align: left;
}

.prod-content h4 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.prod-content p {
  font-size: 14px;
  opacity: 0.85;
}

.prod img {
  display: none;
}

.overview-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-btn,
.wa-btn {
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-btn {
  background: #352a16;
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.about-btn:hover,
.about-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

/* ==== BOTÃO WHATSAPP ==== */
.wa-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #000000;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.wa-btn:hover,
.wa-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.contact-card {
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
  border-radius: 28px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

.contact-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.contact-actions a:hover,
.contact-actions a:focus {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.25);
}

/* =========================================
   PILARES
========================================= */
.pillars {
  padding: 90px 0 110px;
  background: linear-gradient(135deg, #fdfaf5, #f2ebe1);
}

/* ==== GRID DE PILARES ==== */
.pillars-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
  text-align: center;
}

/* ==== ITEM PILAR ==== */
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ==== ÍCONE DO PILAR ==== */
.pillar-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(30, 18, 9, 0.85), rgba(15, 9, 4, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 44px rgba(14, 8, 4, 0.35);
}

.pillar-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
}

.pillar h3 {
  font-size: 1.25rem;
  color: #1d1207;
}

.pillar p {
  color: #5f4c3c;
  line-height: 1.6;
}

.pillar-icon.years-pill {
  background: radial-gradient(circle at 35% 35%, rgba(30, 18, 9, 0.85), rgba(15, 9, 4, 0.95));
}

.pillar-icon.years-pill strong {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
}

/* ==== RESPONSIVO: ≤1100PX ==== */
@media (max-width: 1100px) {
  .hero-left h1 {
    font-size: 56px;
  }

  .card img {
    height: 240px;
  }

  .hero-right {
    width: 100%;
    justify-content: center;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  .about-link {
    width: 100%;
    justify-content: center;
  }
}

/* ==== RESPONSIVO: ≤900PX ==== */
@media (max-width: 900px) {
  .overview {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 28px;
  }
}

/* ==== RESPONSIVO: ≤768PX ==== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    padding-top: calc(var(--nav-height) + 24px);
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 4vw;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px 4vw;
    background: rgba(10, 8, 6, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 999;
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    will-change: transform;
  }

  .site-header.scrolled {
    background: rgba(10, 8, 6, 0.94);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .site-header.is-hidden {
    transform: translateY(-110%);
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    width: 100%;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .logo img {
    height: auto;
    max-height: 46px;
    width: auto;
    object-fit: contain;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    width: 100%;
    max-width: 320px;
    margin: 4px auto 0;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    flex: 0 0 calc(33.333% - 12px);
    max-width: 110px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 40px) 0 56px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 4vw;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .hero-left h1 {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .hero-left .subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
    border-radius: 999px;
  }

  .hero-right {
    display: none;
  }

  .overview {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .prod-carousel {
    padding: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .prod-window {
    width: 100%;
    margin: 0;
    padding: 6px 22px 6px 34px;
    display: flex;
    justify-content: flex-start;
  }

  .carousel-btn {
    display: none;
  }

  .prod-track {
    gap: 16px;
    margin: 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

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

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

  .prod {
    min-width: min(88vw, 360px);
    height: 260px;
    flex: 0 0 min(88vw, 360px);
  }

  .overview-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .overview-actions a {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .pillars {
    padding: 70px 0 90px;
  }

  .pillars-inner {
    gap: 22px;
  }

  .pillar-icon {
    width: 88px;
    height: 88px;
  }

  .site-tail {
    padding: 60px 0 40px;
  }

  .tail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tail-links,
  .tail-contact {
    gap: 6px;
  }
}

/* ==== SEÇÃO RODAPÉ ESTENDIDO ==== */
.site-tail {
  background: #0f0b06;
  color: #fff;
  padding: 70px 0 50px;
}

/* ==== GRID RODAPÉ ==== */
.tail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.tail-brand img {
  width: 110px;
  margin-bottom: 14px;
}

.tail-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ==== LINKS DO RODAPÉ ==== */
.tail-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tail-links h4,
.tail-contact h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.tail-links a,
.tail-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.tail-links a:hover,
.tail-contact a:hover {
  opacity: 1;
}

/* ==== BOTÃO WHATSAPP RODAPÉ ==== */
.tail-wa {
  margin-top: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: #25D366;
  color: #0f0b06;
  font-weight: 700;
}

/* ==== UTILITÁRIO: REVEAL ON SCROLL ==== */
body:not(.reveal-ready) .reveal {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-reveal-delay="short"] {
  transition-delay: 0.12s;
}

.reveal[data-reveal-delay="long"] {
  transition-delay: 0.24s;
}

