:root {
  --orange: #ff5e00;
  --orange-light: #ff8c4a;
  --light-blue: #3590cc;
  --dark-blue: #0839a3;
  --white: #ffffff;
  --light-gray: #f4f4f9;
  --dark-text: #333;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --gradient-orange: linear-gradient(45deg, var(--orange), var(--orange-light));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
header {
  background-color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  text-decoration: none;
}

.logo span {
  color: var(--orange);
}

/* Logo no header */
.logo-img {
  height: 50px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo span {
  font-weight: bold;
  color: #25D366;
  /* verde do WhatsApp, opcional */
  font-size: 1.2em;
  margin-left: 8px;
}

/* Logo no footer */
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  display: block;
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-orange);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-contato {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
}

.btn-contato:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 94, 0, 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-blue);
  cursor: pointer;
}

/* ---- MAIN CONTENT ---- */
main {
  padding-top: 80px;
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(8, 57, 163, 0.85), rgba(255, 94, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: -10px;
  display: none;
}

.hero .slogan {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-blue);
  background-color: var(--white);
  padding: 10px 25px;
  border-radius: 50px;
  display: inline-block;
  margin: 25px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-left: 5px solid var(--orange);
}

.btn-principal {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-principal:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ---- PRODUCT SECTION ---- */
.product-section {
  padding: 80px 0;
  text-align: center;
}

.product-section h2 {
  font-size: 2.5rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.product-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.filter-buttons {
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--light-blue);
  color: var(--light-blue);
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--light-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid transparent;
  justify-content: space-between;
}

.product-subtitle {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  color: #777;
  margin-top: 4px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--orange);
}

.product-image-container {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 10px;
}

.product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin: 15px 10px 10px 10px;
}

.product-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.btn-comprar {
  background: var(--dark-blue);
  color: var(--white);
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin: 0 20px 20px 20px;
  border-radius: 5px;
}

.btn-detalhes {
  background: transparent;
  border: 1px solid var(--light-blue);
  color: var(--light-blue);
  padding: 10px 16px;
  border-radius: 5px;
  margin: 0 20px 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn-detalhes:hover {
  background: var(--light-blue);
  color: #fff;
}

.btn-comprar i {
  margin-right: 8px;
}

.btn-comprar:hover {
  background-color: var(--light-blue);
}

/* ============================
   MODAL DE PRODUTO
============================ */

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.product-modal-content {
  background: #fff;
  width: 92%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 22px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* botão fechar */
.product-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

/* ============================
   GALERIA
============================ */

.modal-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 16px;
  padding-bottom: 4px;
}

.modal-gallery img {
  height: 110px;
  min-width: 110px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f3f3f3;
}

/* ============================
   TEXTO
============================ */

#modalTitle {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--dark-blue);
}

#modalDescription {
  font-size: .95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 18px;
}

/* ============================
   ÁREA DE BOTÕES
============================ */

.product-modal-content .btn-comprar,
.product-modal-content .btn-shopee {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
}

/* WhatsApp – principal */
.product-modal-content .btn-comprar {
  background: #25D366;
  color: #fff;
  margin-bottom: 10px;
}

/* Shopee – secundário */
.product-modal-content .btn-shopee {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

/* ============================
   MOBILE FINO
============================ */

@media (max-width: 480px) {

  .product-modal-content {
    padding: 18px 16px 20px;
  }

  .modal-gallery img {
    height: 90px;
    min-width: 90px;
  }

  #modalTitle {
    font-size: 1.1rem;
  }

  #modalDescription {
    font-size: .9rem;
  }
}

/* ============================
   ESPECIALISTA SECTION
============================ */
.acessorio-section {
  background: var(--dark-blue) url('https://www.transparenttextures.com/patterns/cubes.png');
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.acessorio-section .icon-assistencia {
  font-size: 4rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.acessorio-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.acessorio-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* ---- FOOTER ---- */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 0 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--white);
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-col h3 span {
  color: var(--orange);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-col a {
  text-decoration: none;
  color: var(--white);
}

.footer-col p i {
  color: var(--light-blue);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #333;
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.dev-credit {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #888;
}

.dev-credit a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.dev-credit a:hover {
  color: var(--orange);
}

/* ---- WHATSAPP FLOAT BUTTON ---- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-orange);
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 94, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 94, 0, 0);
  }
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 78px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 50px;
  }

  .logo-img {
    height: 40px;
  }

  .footer-logo {
    height: 50px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  .btn-contato {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero .slogan {
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links,
  .dev-credit {
    text-align: center;
  }
}

/* --- Estilo do modal WhatsApp --- */
.whatsapp-modal {
  display: none;
  /* escondido inicialmente */
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.whatsapp-modal-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

.whatsapp-modal h2 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.whatsapp-modal p {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.whatsapp-modal-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn-cancel,
.btn-confirm {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel {
  background: #eee;
  color: #333;
}

.btn-confirm {
  background: #25D366;
  /* cor do WhatsApp */
  color: white;
}

.btn-cancel:hover {
  background: #ddd;
}

.btn-confirm:hover {
  background: #20ba5b;
}

/* Animações suaves */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================
       SECTION DIFERENCIAIS
    ============================ */

.diferenciais {
  padding: 80px 20px;
  background: #f7f7f7;
}

.container-diferenciais {
  max-width: 1200px;
  margin: auto;
}

.titulo-diferenciais {
  text-align: center;
  margin-bottom: 50px;
}

.titulo-diferenciais h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.titulo-diferenciais p {
  font-size: 18px;
  color: #ff0000;
  font-weight: 600;
  letter-spacing: 1px;
}

.grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card-diferencial {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.card-diferencial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.icon-diferencial {
  font-size: 38px;
  color: #ff0000;
  margin-bottom: 20px;
}

.card-diferencial h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
}

.card-diferencial p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ============================
       SEÇÃO ENDEREÇO
    ============================ */

.horario-endereco {
  padding: 80px 20px;
  background: #ffffff;
}

.container-horario {
  max-width: 1100px;
  margin: auto;
}

.titulo-horario {
  text-align: center;
  margin-bottom: 50px;
}

.titulo-horario h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.titulo-horario p {
  color: #ff0000;
  font-weight: 600;
}

.grid-horario {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card-horario {
  background: #f7f7f7;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all .3s ease;
}

.card-horario:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icone-horario {
  font-size: 40px;
  color: #ff0000;
  margin-bottom: 15px;
}

.card-horario h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #111;
}

.lista-horarios {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-horarios li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.endereco {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-mapa {
  display: inline-block;
  padding: 12px 25px;
  background: #ff0000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-mapa:hover {
  background: #cc0000;
}

.status-loja {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.status-aberto {
  color: #1fa855;
}

.status-fechado {
  color: #e53935;
}

/* =====================================
CAROUSEL ATENDIMENTO
===================================== */

.atendimento-box {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.carousel-3 {
  position: relative;
}

.viewport {
  overflow: hidden;
}

.track {
  display: flex;
  transition: transform .45s ease;
}

.track img {
  flex: 0 0 calc(100% / 3);
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 12px;
  flex-shrink: 0;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #000;
  color: #fff;
  font-size: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: .8;
  z-index: 2;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.info h3 {
  margin: 12px 0 5px;
  font-size: 22px;
}

.info p {
  margin: 0;
  font-size: 14px;
}

.telefone a {
  display: block;
  margin: 12px 0;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.btn-whats {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width:520px) {

  .track img {
    flex: 0 0 100%;
  }

}

/* =====================================
GOOGLE REVIEWS PROFISSIONAL
===================================== */

#reviews {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.google-reviews-resumo {
  width: 260px;
  flex-shrink: 0;
}

.gr-box {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border: 1px solid #eee;
}

.gr-title {
  font-weight: 700;
  font-size: 1.6rem;
}

.gr-rating {
  font-size: 1.3rem;
  font-weight: bold;
}

.gr-stars {
  color: #fbbc04;
  font-size: 2.1rem;
  letter-spacing: 2px;
  animation: starsGlow 2s infinite alternate;
  top: -10px;
  position: relative;
}

@keyframes starsGlow {
  from {
    opacity: .7
  }

  to {
    opacity: 1
  }
}

.gr-count {
  font-size: 14px;
  color: #666;
  margin-top: -15px;
}

.gr-google {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.gr-google span:nth-child(1) {
  color: #4285F4
}

.gr-google span:nth-child(2) {
  color: #EA4335
}

.gr-google span:nth-child(3) {
  color: #FBBC05
}

.gr-google span:nth-child(4) {
  color: #4285F4
}

.gr-google span:nth-child(5) {
  color: #34A853
}

.gr-google span:nth-child(6) {
  color: #EA4335
}


/* =========================
CAROUSEL
========================= */

.reviews-carousel {
  flex: 1;
  position: relative;
  overflow: visible;
  width: 75%;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform .5s ease;
}

.gr-review-card {
  flex: 0 0 33.333%;
  padding: 12px;
  box-sizing: border-box;
}

.gr-review-content {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
  border: 1px solid #eee;
  height: 100%;
  transition: all .3s ease;
}

.gr-review-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.gr-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gr-review-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.gr-review-name {
  font-weight: bold;
  font-size: 14px;
}

.gr-review-stars {
  color: #fbbc04;
  font-size: 14px;
}

.gr-review-text {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  color: #444;
}

.google-reviews-section {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.google-reviews-section h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
}


/* =========================
BOTÕES
========================= */

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: .8;
}

.reviews-prev {
  left: -15px
}

.reviews-next {
  right: -15px
}

.reviews-nav:hover {
  opacity: 1;
}


/* =========================
MOBILE
========================= */

@media (max-width:900px) {

  #reviews {
    flex-direction: column;
    align-items: center;
    width: 100%;
    ;
  }

  .reviews-carousel {
    width: 100%;
  }

  .google-reviews-resumo {
    width: 100%;
    max-width: 320px;
  }

  .gr-review-card {
    flex: 0 0 100%;
  }

}

/* ========================= */
/* SOBRE A LOJA */
/* ========================= */

.sobre-section {
  background: #f8f8f8;
  text-align: center;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.sobre-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sobre-loja {
  padding: 70px 20px;
  background: #f5f5f5;
  text-align: center;
}

.sobre-loja .container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.sobre-loja h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.sobre-loja p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* ========================= */
/* FAQ */
/* ========================= */

.faq {
  padding: 70px 20px;
  background: #ffffff;
}

.faq-section {
  background: white;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px 15px;
}

.faq .container {
  max-width: 900px;
  margin: auto;
}

.faq h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  background: #f8f8f8;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.faq-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.faq-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.sobre-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

/* =====================================
CONTATO + MAPA
===================================== */

.contato-mapa {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

.contato-box {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* BLOCO TEXTO */
.contato-info {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.contato-info h2 {
  margin-top: 15px;
}

.contato-info a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  line-height: 2;
  margin-top: 20px;
}

/* BOTÃO WHATS NA LINHA 1108*/

/* =========================
MAPA (IMPORTANTE)
========================= */

.contato-mapa-frame {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  background: #ddd;
  /* fallback */
  position: relative;
}

/* iframe ocupa tudo */
.contato-mapa-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* MOBILE */
@media(max-width:768px) {

  .contato-box {
    flex-direction: column;
  }

  .contato-mapa-frame iframe {
    height: 280px;
    min-height: auto;
  }

}

.contato-section {
  background: #f5f7fb;
  text-align: center;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.contato-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* ============================================== */
/* BANNER LGPD Lei Geral de Proteção de Dados */
/* ============================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #4CAF50;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept {
  background: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-reject {
  background: #555;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

@media(max-width:700px) {

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

}