
:root {
  --primary-color: #ffde59;
  --text-color: #000;
  --bg-color: #fff;
  --muted-text: rgba(0, 0, 0, 0.72);
  --card-bg: #fff;
  --card-border: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======================== */
/* CABEÇALHO E MENU         */
/* ======================== */

header {
  background: var(--primary-color);
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

#header {
  box-sizing: border-box;
  height: 100px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-color);
}

#menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

#menu a {
  display: block;
  padding: 0.5rem;
}

#btn-mobile {
  display: none;
  color: #1f3c58;
  font-weight: 700;
  position: absolute;
  right: 1rem;
}

#img-logo {
  width: 100px;
  height: 100px;
  margin-right: 10px;
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: auto;
}

a {
  color: #1f3c58;
  text-decoration: none;
  font-family: sans-serif;
}

a:hover {
  background: rgba(0, 0, 0, 0.03);
}

@media (min-width: 900px) {
  #header {
    height: 120px;
    padding: 1.25rem 2rem;
  }

  #img-logo {
    width: 110px;
    height: 110px;
  }
}

/* ======================== */
/* HERO / APRESENTACAO      */
/* ======================== */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 20px 10px;
  opacity: 1;
  transform: none;
}

.hero-content {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.35), rgba(255, 222, 89, 0.05));
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-subtitle {
  color: var(--muted-text);
  margin-bottom: 16px;
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--card-border);
}

.btn-primary {
  background: #000;
  color: var(--primary-color);
  border-color: rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: rgba(0, 0, 0, 0.92);
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 10px;
}

.hero-badges li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.95rem;
}

.hero-contact {
  margin: 0;
  color: var(--muted-text);
}

.hero-contact a {
  font-weight: 700;
}

@media (max-width: 600px) {
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 100px;
    right: 0;
    background: var(--primary-color);
    transition: 0.6s;
    z-index: 1000;
    height: 0;
    visibility: hidden;
    overflow-y: hidden;
  }

  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }

  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.03);
  }

  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
    background-color: var(--primary-color);
  }

  #hamburger {
    border-top: 3px solid;
    width: 20px;
  }

  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  #nav.active #hamburger {
    border-top-color: transparent;
  }

  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }

  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .hero-content {
    padding: 18px;
  }
}

ul {
  list-style-type: none;
}

/* ======================== */
/* BOTÕES FLUTUANTES       */
/* ======================== */

.btn-whatsapp {
  margin-top: 15px;
  background: #25d366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-fixo:hover {
  background-color: #1ebe5d;
}

/* ======================== */
/* CONTEÚDO GERAL           */
/* ======================== */

section {
  padding: 30px 20px;
  max-width: 1000px;
  margin: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding: 10px 20px 40px;
}

.page-main section {
  max-width: 100%;
  margin: 0;
  padding: 24px 0;
}

.page-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.sidebar-section {
  background: #fff7cc;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.sidebar-section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #000;
  background: var(--primary-color);
  border-radius: 10px;
  padding: 4px 10px;
}

.sidebar-feed,
.sidebar-products {
  display: grid;
  gap: 12px;
}

.sidebar-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 8px;
}

.sidebar-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
}

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.sidebar-card p {
  font-size: 0.9rem;
  color: var(--muted-text);
}

.sidebar-product {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: #fff;
}

.sidebar-product img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-product .price {
  font-weight: 700;
  color: #000;
}

.sidebar-product a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
}

.sidebar-muted {
  color: var(--muted-text);
  font-size: 0.95rem;
}

.sidebar-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
}

section.services {
  background-color: black;
  color: var(--primary-color);
  border-radius: 16px;
  padding: 24px;
}

section.services h2 {
  text-align: center;
  background: var(--primary-color);
  border: none;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 20px;
  align-items: start;
}

.services-list {
  display: grid;
  gap: 10px;
  padding-left: 10px;
}

.services-aside {
  display: grid;
  gap: 14px;
}

.services-spotlight {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
}

.services-spotlight h3 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.services-spotlight p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.services-actions {
  display: grid;
  gap: 8px;
}

.services-rotate {
  position: relative;
  min-height: 64px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}

.services-rotate p {
  position: absolute;
  left: 12px;
  right: 12px;
  margin: 0;
  opacity: 0;
  color: rgba(255, 255, 255, 0.8);
  animation: rotateQuotes 9s infinite;
}

.services-rotate p:nth-child(1) { animation-delay: 0s; }
.services-rotate p:nth-child(2) { animation-delay: 3s; }
.services-rotate p:nth-child(3) { animation-delay: 6s; }

@keyframes rotateQuotes {
  0% { opacity: 0; transform: translateY(6px); }
  10% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; }
  40% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; }
}

section.contact {
  background-color: #f9f9f9;
  color: #333;
}

h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

section > h2 {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.45), rgba(255, 222, 89, 0.12));
  color: #000;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-area h2,
.how-it-works h2,
.trust h2,
.gallery h2,
.faq h2 {
  color: #000;
}

.info-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--muted-text);
}

.steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted-text);
}

.steps li {
  margin-bottom: 12px;
}

.cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted-text);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.faq-list details {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted-text);
}

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid {
    grid-template-columns: 1fr;
    padding: 10px 20px 30px;
  }

  .page-sidebar {
    position: static;
  }

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

  .services-aside {
    display: none;
  }
}

footer {
  background: #000;
  color: var(--primary-color);
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

footer a {
  color: var(--primary-color);
  font-weight: 700;
}


/* Continua abaixo com o restante... (arquivo está longo) */

/* ======================== */
/* GALERIA / TESTEMUNHOS   */
/* ======================== */

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.testimonials blockquote {
  background: #eee;
  padding: 15px;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
}

/* ======================== */
/* FORMULÁRIOS              */
/* ======================== */

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 700;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 2px dashed rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #fff7cc;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  background: #000;
  color: var(--primary-color);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
  font-weight: 700;
}

select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}

.consent input {
  margin-top: 3px;
}

button {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-scroll-top {
  position: fixed;
  text-align: center;
  bottom: -20px;
  right: 20px;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
}
.btn-scroll-top:hover {
  background-color: #ffde59;
  padding: 5px;
  border-radius: 5px;
  color: #000;
  transition: background-color 0.3s;
}
/* ======================== */
/* PRODUTOS À VENDA         */
/* ======================== */

.produtos {
  display: grid;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .produtos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .produtos {
    grid-template-columns: repeat(5, 1fr);
  }
}
.produto {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.produto:hover {
  transform: scale(1.02);
}
.produto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.produto-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.produto-content p {
  flex-grow: 1;
}
.produto-badge {
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  color: #333;
}
.produto h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.produto a {
  background-color: #25d366;
  color: white;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.9rem;
}
.produto a:hover {
  background-color: #1ebe5d;
}

/* ======================== */
/* MODAIS E SLIDES          */
/* ======================== */

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 95%;
  max-width: 800px;
}
.modal-content img {
  border-radius: 10px;
  margin-bottom: 15px;
}
.modal-content a {
  display: block;
  width: max-content;
  background-color: #25d366;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  margin: 20px auto 0;
}
.modal-content a:hover {
  background-color: #1ebe5d;
}
.modal-slider {
  position: relative;
  text-align: center;
}
.modal-slider img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  border-radius: 10px;
  margin: auto;
  display: none;
  object-fit: contain;
}
.modal-slider img.active {
  display: block;
}
.modal-thumbs {
  display: flex;
  gap: 8px;
  margin: 12px 0 4px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.thumb {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}
.thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.thumb.active {
  border-color: #000;
}
.modal-slider .prev,
.modal-slider .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
}
.modal-slider .prev { left: 10px; }
.modal-slider .next { right: 10px; }
.modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.modal-content p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}
.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

/* ======================== */
/* PAGINA DE PRODUTO        */
/* ======================== */

.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 50px;
}
.product-hero {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px;
}
.product-hero h1 {
  margin-bottom: 8px;
}
.product-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 16px;
}
.product-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--card-border);
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.product-thumbs button {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}
.product-thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.product-meta {
  margin-top: 16px;
  color: var(--muted-text);
}
.product-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-back {
  display: inline-block;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-thumbs img {
    height: 80px;
  }
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: black;
}

/* ======================== */
/* PAGINAÇÃO E FILTROS      */
/* ======================== */

.filtros {
  text-align: center;
  margin-top: 30px;
}
.filtros input, .filtros select {
  padding: 10px;
  font-size: 1rem;
  margin: 0 10px;
}
.paginacao {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}
.paginacao button {
  padding: 8px 14px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background: var(--primary-color);
  cursor: pointer;
}
.paginacao button.active {
  font-weight: bold;
  background: #ffc107;
}
