
html, body { margin: 0; padding: 0; }

/* ==========================================================
   CART DRAWER – VISUAL IDÊNTICO AO SHOPIFY MODERNO
========================================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  z-index: 9999;
  font-family: "Helvetica Neue", Arial, sans-serif;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.cart-drawer.open { right: 0; }

/* ===== Overlay ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== Cabeçalho ===== */
.cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #111;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-close:hover {
  transform: rotate(90deg);
  opacity: 0.7;
}

/* ===== Itens ===== */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.cart-item-img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0 0 6px;
}
.cart-item-details p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

/* ===== Quantidade ===== */
.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 30px;
}
.quantity button {
  background: none;
  border: none;
  width: 28px;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  cursor: pointer;
}
.quantity input {
  width: 36px;
  text-align: center;
  border: none;
  font-size: 14px;
  color: #111;
}

/* ===== Preços ===== */
.cart-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cart-price {
  font-weight: 600;
  font-size: 15px;
  color: #111;
}
.cart-compare {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

/* ===== Footer ===== */
.cart-footer {
  border-top: 1px solid #e5e5e5;
  padding: 20px 10px;
  background: #fff;
}
.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.subtotal-row span {
  font-size: 16px;
  color: #444;
}
.subtotal-row strong {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* ===== Botões ===== */
.cart-footer button {
  width: 75%;
  margin: 0 auto 15px auto;
  display: block;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  padding: 14px;
  font-size: 15px;
}
.view-cart-btn {
  background: #00a082;
  color: #fff;
  margin-bottom: 20px;
}
.view-cart-btn:hover { background: #009373; }

.checkout-btn {
  background: #009b95;
  color: #fff;
}

.cart-footer button + button {
  margin-top: 10px;
}

/* ===== Responsividade ===== */
@media (max-width: 600px) {
  .cart-drawer { width: 100%; border-radius: 0; }
  .cart-item { gap: 10px; }
  .cart-item-img { width: 70px; height: 80px; }
  .cart-header h3 { font-size: 17px; }
  .checkout-btn, .view-cart-btn { font-size: 16px; padding: 16px; }
}

/* ==========================================================
   BARRA SUPERIOR DE PROMOÇÃO
========================================================== */

.promo-bar {
  background-color: #159896;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 6px 10px;
}

/* ==========================================================
   CABEÇALHO PRINCIPAL
========================================================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  top: 0;
  z-index: 1000;
  height: 35px;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo img {
  height: 20px;
  display: block;
}

.menu-toggle,
.cart-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle img,
.cart-toggle img {
  width: 20px;
  height: 20px;
  display: block;
}

/* ==========================================================
   BANNER SLIDER — LIMPO E OTIMIZADO (1 SLIDE POR VEZ)
========================================================== */
.banner-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.banner-slider .slides {
  display: flex;
  width: 100%;
  animation: slideShow 42s infinite ease-in-out;
}

.banner-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex: 0 0 100%;
  display: block;
  border: none;
}

/* Animação — 1 slide por vez */
@keyframes slideShow {
  0%, 11.9%   { transform: translateX(0%); }
  14.2%, 25.9% { transform: translateX(-100%); }
  28.5%, 40.2% { transform: translateX(-200%); }
  42.8%, 54.5% { transform: translateX(-300%); }
  57.1%, 68.8% { transform: translateX(-400%); }
  71.4%, 83.1% { transform: translateX(-500%); }
  85.7%, 97.4% { transform: translateX(-600%); }
  100%         { transform: translateX(0%); }
}

/* ==========================================================
   OTTO WIRELESS — SCROLLABLE PRODUCT SLIDER (LIMPO)
========================================================== */
.otto-wireless {
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
  padding: 40px 18px;
}

/* Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.see-all {
  border: 1.3px solid #111;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: #111;
  text-decoration: none;
  transition: 0.3s ease;
}

.see-all:hover {
  background: #111;
  color: #fff;
}

/* Slider horizontal */
.product-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 8px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/* Produto */
.product {
  flex: 0 0 240px;
  background: #fff;
  text-align: left;
  scroll-snap-align: start;
  position: relative;
}

.product img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
}

.badge.new { background: #1cbab2; }
.badge.sale { background: #159896; }

/* Preço */
.price {
  margin-bottom: 8px;
}

.new-price {
  color: #e63946;
  font-size: 20px;
  margin-right: 6px;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 15px;
}

/* Título e Reviews */
.product h3 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #333;
}

.stars {
  color: #00a86b;
  font-size: 20px;
}

/* Responsivo */
@media (max-width: 400px) {
  .otto-wireless { padding: 30px 14px; }
  .product { flex: 0 0 200px; }
}


/* ==========================================================
   BANNER NANO AI — FULL WIDTH (RESPONSIVO)
========================================================== */
.banner-nano {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.banner-nano img {
   width: 100%;
  height: auto;
  object-fit: cover;
  flex: 0 0 100%;
  display: block;
  border: none;
}

/* ==========================================================
   HERO SECTION — NANO AI (LIMPO E OTIMIZADO)
========================================================== */
.nano-hero {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  padding: 50px 5px 18px;
  margin: 0;
}

/* Título e Subtítulo */
.nano-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 4px;
}

.nano-hero h2 {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}

/* Descrição */
.nano-hero p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  max-width: 350px;
  margin: 0 auto 24px;
}

/* Imagem central */
.nano-image img {
  width: 190px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

/* Grade de ícones */
.nano-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 12px;
  justify-items: center;
  align-items: center;
  max-width: 380px;
  margin: 0 auto;
}

/* Ícone individual */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature img {
  width: 32px;
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: #111;
  line-height: 1.4;
  max-width: 120px;
}

/* Responsivo */
@media (max-width: 400px) {
  .nano-hero {
    padding: 36px 14px;
  }

  .nano-image img {
    width: 160px;
    margin-bottom: 20px;
  }

  .nano-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .feature img {
    width: 28px;
  }

  .feature p {
    font-size: 12.5px;
  }
}

/* ==========================================================
   DRIVE BEYOND LIMITATIONS — FINAL CLEAN VERSION
========================================================== */
.drive-section {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #111;
  background: #fff;
  padding: 10px 18px;
}

/* Título */
.drive-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 18px;
}

.drive-section h3 strong {
  color: #159896;
}

/* Tabs */
.drive-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.drive-tabs .tab {
  border: none;
  background: #e9ecef;
  color: #000;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.drive-tabs .tab.active {
  background: #159896;
  color: #fff;
}

/* Slider */
.drive-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding: 0 16px;
  scroll-behavior: smooth;
}

.drive-slider::-webkit-scrollbar {
  display: none;
}

/* Cada slide */
.drive-slide {
  flex: 0 0 90%;
  border-radius: 14px;
  scroll-snap-align: start;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.drive-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-bottom: 10px;
}

/* Texto separado da imagem */
.drive-slide p {
  font-size: 13.5px;
  line-height: 1.5;
  color: #111;
  margin: 0 auto 12px;
  max-width: 90%;
}

/* Dots */
.drive-dots {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 6px;
}

.drive-dots .dot {
  width: 26px;
  height: 4px;
  border-radius: 10px;
  background-color: #ccc;
  transition: background 0.3s;
}

.drive-dots .dot.active {
  background-color: #159896;
}

/* Responsivo */
@media (max-width: 400px) {
  .drive-section {
    padding: 30px 12px;
  }

  .drive-slide {
    flex: 0 0 95%;
  }

  .drive-slide p {
    font-size: 13px;
  }
}

/* ==========================================================
   SEÇÃO "HOW IT WORKS" — LIMPA E OTIMIZADA
========================================================== */
.how-it-works {
  background: #f4f8fa;
  text-align: center;
  padding: 36px 10px;
  font-family: 'Poppins', sans-serif;
  color: #111;
  margin: 0;
}

/* Títulos */
.how-it-works h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.how-it-works h3 strong {
  color: #159896;
}

.how-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* Etapas */
.how-step {
  margin-bottom: 30px;
}

.how-step img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  display: block;
  margin: 0 auto 10px;
}

/* Texto de cada etapa */
.how-text {
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
}

.how-text span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #159896;
  margin-bottom: 3px;
}

.how-text p {
  font-size: 20px;
  line-height: 1.55;
  color: #333;
  margin: 0;
}

.how-text strong {
  color: #000;
}

/* Responsivo */
@media (max-width: 400px) {
  .how-it-works {
    padding: 30px 8px;
  }

  .how-step img,
  .how-text {
    max-width: 320px;
  }

  .how-text span {
    font-size: 17px;
  }

  .how-text p {
    font-size: 14px;
  }
}

/* ==========================================================
   SEÇÃO APROVEITE MAIS CADA VIAGEM — VERSÃO LIMPA E AJUSTADA
========================================================== */
.travel-section {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
  color: #111;
  margin: 0;
}

/* Logo e subtítulo */
.travel-logo img {
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.travel-subtitle {
  font-size: 20px;
  color: #000;
  margin-bottom: 22px;
}

/* Slider */
.travel-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 16px;
}

.travel-slider::-webkit-scrollbar {
  display: none;
}

/* Cada slide */
.travel-slide {
  flex: 0 0 90%;
  background: #fff;
  border-radius: 12px;
  scroll-snap-align: start;
  text-align: center;
}

.travel-slide img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.travel-slide h3 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.travel-slide p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.4;
  max-width: 80%;
  margin: 0 auto 10px;
}

/* Indicadores (bolinhas) */
.travel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.travel-dots span {
  width: 24px; /* ligeiramente menor para harmonia */
  height: 4px;
  border-radius: 10px;
  background-color: #ccc;
  transition: background 0.3s ease;
}

.travel-dots span.active {
  background-color: #159896;
}

/* Responsivo */
@media (max-width: 400px) {
  .travel-logo {
    font-size: 26px;
  }

  .travel-subtitle {
    font-size: 18px;
  }

  .travel-slide p {
    font-size: 13px;
  }
}

/* ==========================================================
   ABOUT SECTION — LIMPA E AJUSTADA (ÍCONES REDONDOS)
========================================================== */
.about-section {
  background: #fff;
  color: #111;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 48px 22px;
  margin: 0;
}

/* Título principal */
.about-title {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 10px;
}

.about-title strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 3px;
}

/* História da marca */
.about-history {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 22px 14px;
  margin: 28px 0 36px;
}

.about-history h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-history p {
  font-size: 13px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Subtítulo */
.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}

/* Grade de motivos */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px 20px;
  justify-items: center;
  align-items: start;
  max-width: 420px;
  margin: 0 auto;
}

/* Cada motivo */
.reason-item {
  text-align: center;
  max-width: 140px;
}

.reason-item img {
  width: 68px;   
  height: 68px;
  object-fit: contain;  
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
}

.reason-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.reason-item p {
  font-size: 13px;
  color: #111;
  line-height: 1.4;
  margin: 0;
}

/* Responsivo */
@media (max-width: 400px) {
  .about-section {
    padding: 36px 14px;
  }

  .about-title strong {
    font-size: 17px;
  }

  .reasons-grid {
    gap: 22px 14px;
  }

  .reason-item img {
    width: 52px;
    height: 52px;
  }

  .reason-item strong {
    font-size: 12.5px;
  }

  .reason-item p {
    font-size: 12px;
  }
}

/* ==========================================================
   FEATURED ON — VERSÃO LIMPA E OTIMIZADA
========================================================== */
.featured-section {
  background: #f5f8fa;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 40px 0 28px;
  color: #000;
}

.featured-section h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Grade das logos */
.featured-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 20px;
  justify-items: center;
}

/* Box das logos */
.logo-box {
  background: #fff;
  border-radius: 12px;
  width: 145px;
  height: 78px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.logo-box img {
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* Responsivo */
@media (max-width: 400px) {
  .logo-box {
    width: 120px;
    height: 70px;
    padding: 12px 14px;
  }

  .logo-box img {
    max-height: 28px;
  }
}

/* ==========================================================
   EXPERT REVIEWS — AJUSTADO FINAL IGUAL AO MODELO ORIGINAL
========================================================== */
.review-source {
  font-weight: 700;     
  font-size: 14px;
  color: #111;
  margin-top: 2px;
}

.reviews-section {
  background: #fff;
  color: #000;
  padding: 40px 0 48px;
  font-family: 'Poppins', sans-serif;
}

.reviews-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px;
  padding: 0 18px;
}

/* Container com rolagem lateral */
.reviews-container {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 50px;
  scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

/* Cartão individual */
.review-card {
  flex: 0 0 90%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* LOGO — AJUSTE CRÍTICO */
.review-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  display: inline-flex;       
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #222;
  margin-top: 10px;
  margin-bottom: 16px;
}

.review-link {
  font-size: 13px;
  color: #159896;
  font-weight: 600;
  text-decoration: none;
}

.review-link:hover {
  text-decoration: underline;
  color: #0d6e6c;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .review-card {
    flex: 0 0 90%;
    padding: 18px 16px;
  }

  .review-card .review-logo {
    width: 36px !important;
    height: 36px !important;
  }

  .review-rating img {
    width: 13px;
    height: 13px;
  }

  .review-text {
    font-size: 12.8px;
  }
}

/* ==========================================================
   SEÇÃO BLOG — CARROSSEL DE ARTIGOS
========================================================== */
.blog-section {
  background: #fff;
  padding: 32px 16px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.blog-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 0 16px;
  scroll-behavior: smooth;
}

.blog-slider::-webkit-scrollbar {
  display: none;
}

.blog-card {
  flex: 0 0 90%;
  max-width: 300px;
  scroll-snap-align: start;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.blog-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.blog-card time {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.blog-dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.blog-dots span {
  width: 28px;
  height: 4px;
  background-color: #ccc;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.blog-dots span.active {
  background-color: #159896;
}

/* ==========================================================
   SEÇÃO DE NEWSLETTER (FOOTER) — ESTILO IDÊNTICO AO OTTOCAST
========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.newsletter-section {
  background-color: #159896;
  color: #fff;
  text-align: center;
  padding: 36px 22px 40px;
  font-family: 'Poppins', sans-serif;
}

.newsletter-section h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* Campo de email */
.newsletter-form input {
  width: 100%;
  max-width: 340px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
  text-align: center;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

/* Botão */
.newsletter-form button {
  width: 100%;
  max-width: 280px;
  height: 46px;
  border: none;
  border-radius: 50px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter-form button:hover {
  background: #f7f7f7;
}

/* Texto inferior */
.newsletter-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-top: 8px;
  letter-spacing: 0.1px;
}

/* ==========================================================
   FOOTER PRINCIPAL — MOBILE FIRST (CLEAN VERSION)
========================================================== */
.main-footer {
  background-color: #159896;
  color: #fff;
  text-align: center;
  padding: 40px 16px 30px;
  font-family: 'Poppins', sans-serif;
}

/* Container interno */
.main-footer > *:not(.footer-social):not(.footer-payments):not(.footer-copy) {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Logo */
.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 130px;
  display: inline-block;
}

/* Colunas de links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 35px;
  margin-bottom: 30px;
}

.footer-column {
  width: 45%;
  max-width: 180px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  font-size: 13px;
  color: #fff;
  opacity: 0.95;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.5;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Ícones sociais */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 26px 0 22px;
}

.footer-social img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.footer-social img:hover {
  opacity: 1;
}

/* ===== Bandeiras de pagamento lado a lado ===== */
.footer-payments img {
  height: 20px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Direitos autorais */
.footer-copy {
  font-size: 12px;
  opacity: 0.9;
}


/* Sem sublinhado nos cards clicáveis */
.otto-wireless .product {
  text-decoration: none;
  color: inherit;
  display: block; /* garante clique no card inteiro */
}
.otto-wireless .product:hover,
.otto-wireless .product:focus,
.otto-wireless .product:active {
  text-decoration: none;
  color: inherit;
}

/* Nome do produto maior */
.otto-wireless .product h3 {
  font-size: 15px;      /* antes era ~13px */
  line-height: 1.4;
  margin-bottom: 6px;
}

/* Um pouquinho maior no desktop */
@media (min-width: 768px) {
  .otto-wireless .product h3 {
    font-size: 16px;
  }
}


.cart-item-head{
  display:flex;
  align-items:center;
  gap:8px;
}

.remove-item{
  margin-left:auto;
  background:none;
  border:0;
  padding:6px;
  cursor:pointer;
  color:#9aa0a6;       /* cinza suave */
  border-radius:8px;
}

.remove-item:hover{
  color:#e53935;       /* vermelho ao hover */
  background: rgba(229,57,53,.06);
}

/* Footer payments — robust */
.footer-payments{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;              /* espaçamento moderno */
  width:100%;
  margin:20px auto 0;
}

/* Fallback de gap (se algum browser ignorar) */
.footer-payments > *{ margin: 0; }
.footer-payments.gap-fallback > *{ margin: 5px; } /* usar só se precisar */

.footer-payments img{
  height:20px;           /* força tamanho consistente (SVG/PNG) */
  width:auto;
  object-fit:contain;
  display:block;         /* evita espaçamento inline estranho */
  flex:0 0 auto;         /* não encolhe nem estica além do necessário */
}

/* Se houver alguma regra global que dá max-width:100% nas imagens e estica tudo,
   isto garante que a altura manda no tamanho final */
.footer-payments img[style*="width"],
.footer-payments img[width]{
  width:auto !important;
}

/* respiro lateral no carrossel principal */
.product-gallery{
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
/* cada slide ocupa 100% menos os gutters para não “colar” na borda */
.product-gallery img{
  flex: 0 0 calc(100% - (var(--gutter) * 2));
}

/* respiro lateral na faixa de miniaturas */
.thumbs{
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}





/* NÃO duplicar padding nas seções de conteúdo */
.products,
.product-description,
.compatibility-box,
.after-sale,
.recommended,
.nano-hero{
  padding-inline: 0; /* antes: var(--gutter) */
}

/* se quiser o respiro um pouco menor no site inteiro */
:root{
  --gutter: 8px;     /* ajuste fino (direita e esquerda) */

}
