.elementor-373 .elementor-element.elementor-element-e263847{--display:flex;}/* Start custom CSS *//* ===========================================================
    PALETA DE CORES — ESCOLHIDA PARA ALTA CONVERSÃO
=========================================================== */
:root {
  --primary: #004AAD;     /* Azul Royal */
  --primary-dark: #003680;
  --secondary: #FFB800;   /* Amarelo Premium */
  --light: #F5F5F5;       /* Cinza Gelo */
  --text-dark: #202020;
  --text-light: #555;
  --white: #FFFFFF;
  --gray-border: #DDDDDD;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: var(--light);
  color: var(--text-dark);
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

/* ===========================================================
                        HEADER
=========================================================== */
.top-header {
  background: var(--primary);
  padding: 18px 0;
  color: var(--white);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Barra de pesquisa */
.search-box {
  display: flex;
  width: 45%;
}

.search-box input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px 0 0 6px;
  border: none;
  outline: none;
  font-size: 15px;
}

.search-box button {
  background: var(--secondary);
  border: none;
  padding: 12px 18px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: 0.2s;
}

.search-box button:hover {
  background: #e0a100;
}

/* Ícones do header */
.header-icons a {
  color: var(--white);
  margin-left: 22px;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-icons a:hover {
  opacity: 0.8;
}

/* ===========================================================
                    MENU PRINCIPAL + MEGA MENU
=========================================================== */
.main-menu {
  background: var(--primary-dark);
  color: white;
  padding: 12px 0;
}

.menu-container {
  display: flex;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu-item a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  display: block;
}

.menu-item a:hover {
  color: var(--secondary);
}

/* --------- Mega Menu --------- */
.mega-trigger {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 120%;
  background: var(--white);
  width: 850px;
  padding: 20px 30px;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  z-index: 20;
}

.mega-trigger:hover .mega-menu {
  display: flex;
  gap: 40px;
}

.mega-column h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.mega-column a {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 8px;
}

.mega-column a:hover {
  color: var(--secondary);
}

/* ===========================================================
                    LAYOUT PRINCIPAL
=========================================================== */
.main-layout {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

/* ===========================================================
                    SIDEBAR
=========================================================== */
.sidebar {
  width: 260px;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  height: fit-content;
}

.sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
}

.sidebar ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
}

.sidebar ul li a:hover {
  color: var(--primary);
}

/* ===========================================================
                    CARROSSEL (BANNERS)
=========================================================== */
.carousel {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 25px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.7s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 28px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

.prev { left: 15px; }
.next { right: 15px; }

.carousel-btn:hover {
  background: rgba(0,0,0,0.6);
}

/* ===========================================================
                BLOCO DE CATEGORIAS
=========================================================== */
.section-title {
  font-size: 22px;
  margin: 25px 0 10px;
  font-weight: 700;
  color: var(--primary);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.category-card {
  background: var(--white);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--gray-border);
  transition: 0.2s ease-in-out;
}

.category-card:hover {
  border-color: var(--primary);
  transform: scale(1.03);
}

.category-card img {
  width: 90px;
  margin-bottom: 15px;
}

.category-card h4 {
  font-size: 16px;
  font-weight: 600;
}

/* ===========================================================
                GRADE DE PRODUTOS
=========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--gray-border);
  transition: 0.2s;
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 16px;
  margin: 12px 0 5px;
}

.price {
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
}

.btn-buy {
  margin-top: 10px;
  padding: 10px 0;
  background: var(--secondary);
  border: none;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.btn-buy:hover {
  background: #e0a100;
}

/* ===========================================================
                        FOOTER
=========================================================== */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 40px 0 10px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col a, .footer-col p {
  display: block;
  color: white;
  opacity: 0.8;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
  opacity: 0.7;
}

/* ===========================================================
                     MOBILE RESPONSIVO
=========================================================== */
@media (max-width: 880px) {

  .main-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .search-box {
    width: 60%;
  }

  .menu-list {
    gap: 15px;
  }
}

@media (max-width: 600px) {

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .search-box {
    width: 100%;
  }

  .menu-list {
    display: none; /* Aqui vamos ativar com JS */
  }
}
/* Sombras suaves */
.category-card, .product-card {
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.category-card:hover, .product-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Botões mais profissionais */
.btn-buy {
  background: linear-gradient(90deg, var(--secondary), #ffcd40);
  color: #1c1c1c;
  font-weight: 700;
}

.btn-buy:hover {
  filter: brightness(1.05);
}

/* Título com barra amarela */
.section-title {
  position: relative;
  padding-left: 10px;
}

.section-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--secondary);
  position: absolute;
  left: 0;
  top: 3px;
}/* End custom CSS */