@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}


/* FUNDO GERAL */
body {
  background: #0b3b78;
}
.dashboard-body {
  font-family: 'Poppins', sans-serif;
}
.modal-label {
  font-family: 'Poppins', sans-serif;
}
.modal-content h3 {
  font-weight: 600;
}

.modal-label {
  font-weight: 500;
}

.modal-content input {
  font-weight: 400;
}

.modal-actions button {
  font-weight: 500;
}

h1, h2, h3, h4,
.section-title,
.contact-title {
 /* font-family: 'Bebas Neue', sans-serif;*/
  letter-spacing: 1.5px;
}

/* ================= HEADER ================= */

.top-header {
  position: relative;
  z-index: 10;
}

.header-wrapper {
  background: #ffffff;
  border-radius: 0 0 35px 35px;
  padding: 14px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + MENU */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* MENU PNG */
.menu-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-icon img {
  width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(60%);
  transition: filter 0.3s ease;
}

.menu-icon:hover img {
  filter: brightness(0) saturate(100%)
          invert(22%) sepia(93%) saturate(2476%)
          hue-rotate(203deg) brightness(92%) contrast(101%);
}

/* LOGO */
.logo {
  height: 45px;
}

/* SEARCH */
.search-box {
  flex: 1;
  max-width: 500px;
  margin: 0 30px;

  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 25px;
  padding: 8px 15px;
}

.search-box i {
  color: #777;
  font-size: 16px;
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  margin-left: 10px;
  width: 100%;
  font-size: 14px;
}

/* ENDEREÇO */
.address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
}

.address i {
  color: #004aad;
}

/* ================= CONTAINER PADRÃO ================= */



.container-center {
  width: 95%;
  max-width: none;
  margin: auto;
  border-radius: 25px;
}

/* ================= BANNER ================= */

.banner-slider {
  height: 500px;
  position: relative;
 /* overflow: hidden;*/
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ================= TRANSPARÊNCIA NAS LATERAIS DO BANNER ================= */

.banner-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.0) 20%,
    rgba(0, 0, 0, 0.0) 80%,
    rgba(0, 0, 0, 0.15) 92%,
    rgba(0, 0, 0, 0.35) 100%
  );
}


/* ================= SEÇÕES ================= */

.section-gray {
  background: #ededed;
  padding: 40px;
  border-radius: 0px;
}

.section-white {
  margin: 0 40px 40px;
  padding: 40px;
}



/* ================= TÍTULOS ================= */

.section-title {
  font-size: 32px;
  text-transform: uppercase;
}


/* ================= LUBRIFICANTES ================= */

.lub-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.lub-big,
.lub-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.lub-big {
  height: 360px;
}

.lub-item {
  height: 170px;
}

.lub-big img,
.lub-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lub-small {
  display: grid;
  gap: 20px;
}

.lub-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
  max-width: 80%;
}

/* ================= PRODUTOS ================= */

.products {
  text-align: center;
}

.tag {
  color: #c62828;
  font-size: 12px;
  font-weight: bold;
}

/* grid permanece igual */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

/* card do produto */
.product {
  background: #fff;
  border-radius: 12px;

  /* NÃO altera tamanho */
  padding: 0;

  /* sombra leve */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product h4 {
  font-size: 13px;   /* ajuste aqui */
  font-weight: 600;
}

/* hover discreto */
.product:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* imagem mantém proporção */
.product img {
  height: 160px;
  width: auto;
  max-width: 100%;
  margin-top: 15px;
}

/* botão */
.product button,
.product-btn {
  background: #c62828;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  margin: 12px 0 18px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
}

.product button:hover,
.product-btn:hover {
  opacity: 0.9;
}

/* botão ver mais */
.more {
  background: #e0e0e0;
  border: none;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
}

/* ================= DICAS ================= */

/* FUNDO (não muda de tamanho com a mídia) */
.section-light {
  background: #f3f3f3;
  margin: 0 40px;
  padding: 40px;
  border-radius: 1px;
}

/* CARD INTERNO */
.tips-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: center;
}

/* TEXTO */
.tips-text {
  max-width: 100%;
}

/* MÍDIA (AGORA LIVRE PARA AJUSTAR) */
.tips-media {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.tips-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.dots .active {
  background: #c62828;
}

/* ================= FUNDO BRANCO CONTÍNUO ================= */

.main-white {
  position: relative;
  z-index: 5;
  background: transparent;   /* azul vem do body */
  margin-top: -380px;        /* mesma altura do banner */
  padding-top: 360px;        /* empurra o conteúdo para baixo */
  padding-bottom: 40px;
}



.main-white-inner {
  width: 95%;           /* <<< AQUI */
  max-width: none;      /* <<< remove limite */
  margin: auto;
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 0;
}


/* ================= FALE CONOSCO ================= */

.contact-section {
  margin: 60px 0 20px;
  text-align: center;
}

.contact-title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #333;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: auto;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

/* BOTÃO */
.contact-form button {
  align-self: center;
  background: #c62828;
  color: #fff;
  border: none;
  padding: 14px 60px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #b71c1c;
}

/* ================= RODAPÉ ================= */

.footer {
  background: url("assets/footer-bg.jpg") center/cover no-repeat;
  position: relative;
  margin-top: 60px;
  z-index: 2;
}

/* OVERLAY ESCURO */
.footer-overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 60px 0 20px;
}

/* CONTAINER */
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  color: #fff;
}

/* ESQUERDA */
.footer-logo {
  height: 45px;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
}

/* DIREITA */
.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-item i {
  font-size: 16px;
  color: #fff;
}

/* REDES SOCIAIS */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: #c62828;
  border-color: #c62828;
  color: #fff;
}

/* RODAPÉ FINAL */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #ccc;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}
/* ================= BOTÃO WHATSAPP FIXO ================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;

  background: #25d366;
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
  z-index: 9999;

  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* MENSAGEM DO FORMULÁRIO */
.form-response {
  margin-top: 15px;
  font-size: 14px;
  display: none;
}

.form-response.success {
  color: #2e7d32;
}

.form-response.error {
  color: #c62828;
}
/* STATUS DO FORM */
.form-status {
  margin-top: 15px;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
}

.form-status.show {
  display: flex;
}

.form-status.success {
  color: #2e7d32;
}

.form-status.error {
  color: #c62828;
}

/* LOADER */
.loader {
  width: 18px;
  height: 18px;
  border: 3px solid #ccc;
  border-top: 3px solid #c62828;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-status.success .loader,
.form-status.error .loader {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
/* ================= REFLEXO DO BANNER NO FUNDO AZUL ================= */

:root {
  --solid-bg: #0b3b78;
}

.banner-bg-reflection {
  position: fixed;
  inset: 0;
  
  pointer-events: none;

  background: var(--solid-bg);
  transition: background-color 1s ease;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.card span {
  font-size: 32px;
  font-weight: 600;
  color: #0b3b78;
}

.card-alert span {
  color: #c62828;
}

.product-desc {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.product-price {
  display: block;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0b3b78;
}

.product-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #0b3b78;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.product-btn:hover {
  opacity: 0.85;
}


.produto-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}

.produto-galeria img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
}

.produto-detalhes h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.produto-slogan {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.produto-descricao {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.produto-preco {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #0b3b78;
  margin-bottom: 20px;
}

.produto-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #25d366;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

/* ================= PRODUTO DETALHE ================= */

.produto-highlight {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.produto-card-detalhe {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px;
  max-width: 1100px;
  width: 100%;
}

.produto-img-box img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
}

.produto-info-box h1 {
  font-size: 34px;
  margin-bottom: 12px;
  font-weight: 700;
}

.produto-slogan {
  font-size: 16px;
  color: #666;
  margin-bottom: 22px;
}

.produto-descricao {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}

.produto-preco-box {
  font-size: 30px;
  font-weight: 700;
  color: #0b3b78;
  margin-bottom: 25px;
}

.produto-whats-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s;
}

.produto-whats-btn:hover {
  transform: scale(1.05);
}

/* ===== filtro de categorias ===== */

.catalog-filters {
  margin: 30px 0;
  text-align: center;
}

.catalog-filters select {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  min-width: 240px;
  cursor: pointer;
}

/* ===== menu categorias ===== */

.menu-area {
  position: relative;
}

.menu-icon {
  cursor: pointer;
}

.menu-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 10px 0;
  width: 220px;
  display: none;
  z-index: 9999;
}

.menu-dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: #1b1b1b;
  text-decoration: none;
  transition: background 0.2s;
}

.menu-dropdown a:hover {
  background: #f2f2f2;
}
.menu-title {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* ================= CARRINHO HEADER ================= */

.cart-area {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.cart-icon {
  position: relative;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.cart-icon:hover {
  opacity: 0.85;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e50914; /* vermelho padrão do site */
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .cart-area {
    margin-left: 10px;
  }

  .cart-icon {
    font-size: 18px;
  }
}

/* ================= PÁGINA DO CARRINHO ================= */
/* ================= CARRINHO – PADRÃO HOME ================= */

.cart-page {
  position: relative;
  z-index: 5;
  background: transparent;
  margin-top: 40px;
  padding-bottom: 0;
}

/* reaproveita o card branco da home */
.cart-page .main-white-inner {
  border-radius: 0 0 25px 25px; /* borda SÓ embaixo */
  padding-bottom: 210px;        /* espaço interno */
}

/* espaço azul antes do footer */
.cart-page::after {
  content: "";
  display: block;
  height: 120px;               /* <<< distância do footer */
  background: transparent;
}

.cart-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
   
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* LISTA */
.cart-list,
.cart-summary {
  background: #444;
  border-radius: 12px;
  padding: 25px;
  color: #fff;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.cart-header h2 {
  font-size: 20px;
}

.cart-clear {
  background: transparent;
  border: 1px solid #287ac6;
  color: #287ac6;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-empty {
  text-align: center;
  opacity: 0.7;
  padding: 40px 0;
}

/* ITEM */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 140px 120px 30px;
  gap: 20px;
  align-items: center;

  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cart-img {
  width: 70px;
  border-radius: 6px;
}

.cart-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-info small {
  font-size: 12px;
  color: #ccc;
}

/* QTD */
.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #333;
  border: 1px solid #555;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.cart-price {
  font-weight: 600;
}

/* REMOVER */
.cart-remove {
  background: none;
  border: none;
  color: #ff4d4d;
  font-size: 22px;
  cursor: pointer;
}

/* RESUMO */
.cart-summary h3 {
  margin-bottom: 25px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 25px;
}

.cart-finish {
  display: block;
  background: #0f9d58;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 15px;
  text-decoration: none;
  font-weight: 600;
}

.cart-continue {
  display: block;
  text-align: center;
  color: #ccc;
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cart-container {
    grid-template-columns: 1fr;
  }
}

/* PÁGINAS INTERNAS NÃO HERDAM O EFEITO DA HOME */
.page-interna .main-white {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* FOOTER NORMAL EM PÁGINAS INTERNAS */
.cart-page + .footer,
.cart-page ~ .footer {
  margin-top: 0 !important;
}

/* ===== ÍCONE DO CARRINHO (PNG) ===== */

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-img-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #c62828;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
