:root {
  --background: #ffffff;
  --panel: #f9f9f9;
  --soft: #f0f0f0;
  --text: #222222;
  --muted: #666666;
  --brand: #4e2a1e;
  --brand-2: #7b4a34;
  --accent: #d2691e;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reset / base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, Arial,
    sans-serif;
  background: linear-gradient(180deg, var(--background), #0b0b0b);
  color: var(--text);
  line-height: 1.6;
}

/* Helpers */
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
}
p {
  margin: 0.25rem 0 0.75rem;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1200;
}
.topbar__cta {
  background: #fff;
  color: #000;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.75rem;
  text-decoration: none;
  position: relative;
  z-index: 1300; /* acima do header/topbar */
}

/* Header (único, fixo) */
header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  border-bottom: 2px solid #e0e0e0;
}

/* Logo */
header .logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 860px) {
  header {
    padding: 10px 15px;
  }
  header .logo img {
    height: 60px;
  }
}

/* Navegação */
header nav {
  display: flex;
  gap: 35px;
}
header nav a {
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  color: #4e2a1e;
  transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}
header nav a:hover {
  color: #7b4a34;
  transform: translateY(-2px);
}
header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #7b4a34, #d2691e);
  transition: width 0.3s ease-out;
}
header nav a:hover::after {
  width: 100%;
}

/* Responsive nav (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #4e2a1e;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }
  header nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-bottom: 2px solid #e0e0e0;
  }
  header nav.show {
    display: flex;
  }
  header nav a {
    padding: 15px 18px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  header nav a:last-child {
    border-bottom: none;
  }
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}
.hero__image img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  object-fit: cover;
  height: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.hero__text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #4e2a1e;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__text p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.hero__actions .btn {
  background: #7b4a34;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.hero__actions .btn:hover {
  background: #4e2a1e;
  transform: translateY(-2px);
}
.badges {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.badges li {
  font-size: 1rem;
  color: #7b4a34;
  font-weight: 500;
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
}

/* Features / Cards */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
.features .card {
  background: var(--panel);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #ffffff14;
}
.features .card img {
  width: 42px;
  margin-bottom: 0.5rem;
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .features .card {
    padding: 1rem;
  }
}

/* Steps */
.steps {
  padding: 2rem 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  background: var(--soft);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #ffffff10;
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (max-width: 860px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pricing */
.pricing {
  padding: 2rem 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card {
  background: var(--panel);
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid #ffffff14;
  position: relative;
}
.price-card--highlight {
  outline: 2px solid var(--brand);
  transform: translateY(-4px);
}
.price-card .tag {
  position: absolute;
  top: -10px;
  right: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
}
@media (max-width: 860px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* Depoimentos */
.testimonials {
  padding: 2rem 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
blockquote {
  background: var(--panel);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #ffffff14;
  font-style: italic;
}
cite {
  display: block;
  margin-top: 0.5rem;
  color: #eac39c;
  font-style: normal;
}
@media (max-width: 860px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq details {
  background: var(--panel);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #ffffff14;
  margin-bottom: 0.6rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}

/* Formulário */
.contact {
  padding: 2rem 0;
}
.form {
  background: var(--panel);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #ffffff14;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form input,
.form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  padding: 0.8rem;
  color: #fff;
}
.form button {
  width: 100%;
}
@media (max-width: 860px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
/* Footer – fundo branco e texto marrom */
.footer {
  margin-top: 2rem;
  background: #ffffff; /* fundo branco */
  padding: 1.5rem 0;
  border-top: 2px solid #e0e0e0; /* linha suave */
  color: #4e2a1e; /* texto marrom */
}

.footer__links a,
.footer__social a {
  color: #4e2a1e; /* marrom */
  text-decoration: none;
  font-weight: 500;
}

.footer__links a:hover,
.footer__social a:hover {
  color: #7b4a34; /* marrom mais forte no hover */
}

.copy {
  text-align: center;
  color: #7b4a34; /* marrom suave */
  margin: 1rem 0 0;
}

/* WhatsApp flutuante */
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  font-size: 1.25rem;
  z-index: 3000;
}

/* Acentos de texto */
.choco {
  background: linear-gradient(90deg, #eac39c, #cfa47b, #a87452);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === GALERIA (substitui versão antiga conflituosa) === */
.gallery {
  padding: 2rem 0;
}
.gallery__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.gallery__grid {
  display: flex;
  gap: 16px;
  padding: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery__grid::-webkit-scrollbar {
  display: none;
}

.gallery__grid img {
  flex: 0 0 auto;
  width: clamp(180px, 28vw, 300px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Botões da galeria */
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 20;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.gallery__btn--prev {
  left: 12px;
}
.gallery__btn--next {
  right: 12px;
}
.gallery__btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.gallery__btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
  transform: translateY(-50%) scale(0.98);
}

@media (max-width: 860px) {
  .gallery__grid {
    padding: 8px;
    gap: 12px;
  }
  .gallery__grid img {
    width: clamp(140px, 40vw, 220px);
  }
  .gallery__btn {
    width: 40px;
    height: 40px;
  }
}

/* Video banner */
.video-banner {
  text-align: center;
  padding: 4rem 1rem;
  background: #fffaf7;
}

.video-banner h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4e2a1e;
  font-weight: 700;
}

/* 🎬 Container do vídeo com tema de chocolate */
.video-container {
  position: relative;
  width: 60%;
  max-width: 650px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;

  /* 🍫 Duas bordas estilo barra de chocolate */
  border: 6px solid #3b2314; /* marrom escuro */
  box-shadow: 0 0 0 8px #6d4631,
    /* marrom médio ao redor */ 0 12px 24px rgba(0, 0, 0, 0.25);

  /* Animação suave */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ✨ Efeito de zoom suave no hover */
.video-container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 8px #6d4631, 0 18px 32px rgba(0, 0, 0, 0.35);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* 📱 Responsivo */
@media (max-width: 768px) {
  .video-container {
    width: 90%;
    max-width: 450px;
    border-width: 4px;
    box-shadow: 0 0 0 6px #6d4631, 0 10px 18px rgba(0, 0, 0, 0.25);
  }

  .video-banner h2 {
    font-size: 1.6rem;
  }
}

/* Header ocultando */
header.hidden {
  top: -120px;
}

body {
  padding-top: 110px;
}

/* Botão fixo (ex: "Peça um orçamento") */
.botao-fixo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(90deg, #7b4a34, #d2691e);
  color: white;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 4000;
  transition: all 0.3s ease;
}
.botao-fixo:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #4e2a1e, #7b4a34);
}

/* Botão padrão */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

/* Botão principal - tema chocolate */
.btn--primary {
  background: linear-gradient(
    135deg,
    #4b2e2e,
    #7a4a3b
  ); /* chocolate escuro → chocolate ao leite */
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #7a4a3b, #4b2e2e);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Para o botão simples do pacote corporativo */
.price-card .btn {
  background: #e4d2c1; /* tom caramelo suave */
  color: #4b2e2e;
}

.price-card .btn:hover {
  background: #d4c1b0;
  transform: translateY(-2px);
}
/* Hero da página Sobre */
.sobre-hero {
  background: linear-gradient(135deg, #4b2e2e, #7a4a3b);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.sobre-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.sobre-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Conteúdo */
.sobre-conteudo {
  padding: 60px 20px;
}

.sobre-conteudo h2 {
  color: #4b2e2e;
  margin-top: 30px;
  font-size: 1.8rem;
}

.sobre-conteudo p {
  margin: 15px 0;
  line-height: 1.7;
}

.sobre-lista {
  margin: 20px 0 30px;
  padding-left: 20px;
  list-style: none;
}

.sobre-lista li {
  font-size: 1.1rem;
  margin: 10px 0;
}
/* === PÁGINA DE CONTATO === */

.contato {
  padding-top: 150px;
  text-align: center;
}

.contato h1 {
  font-size: 2.5rem;
  color: #533018; /* chocolate escuro */
  margin-bottom: 10px;
}

.contato__desc {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #64432b;
}

.contato__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contato__card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #f3e5d8;
  transition: 0.3s;
}

.contato__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.contato__card h2 {
  color: #533018;
  margin-bottom: 10px;
}

.contato__card p {
  color: #6e4a2d;
  font-size: 0.95rem;
}

.contato__btn {
  display: inline-block;
  margin-top: 15px;
}

.contato__info,
.contato__link {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #533018;
  display: block;
}

.contato__link:hover {
  text-decoration: underline;
}

nav .active {
  font-weight: 700;
  color: #533018;
}
