:root {
  --primary-color: #ff6b00;
  --primary-dark: #e05e00;
  --secondary-color: #1a1a1a;
  --text-color: #2c3e50;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #e9ecef;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

/* Navbar Styles */
.navbar {
  background-color: rgb(255, 255, 255);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 65px;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.8rem 5%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 40px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.05);
}

.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  transition: right 0.3s;
}

.navbar .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1100;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  margin-top: 0;
  position: relative;
  height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 1s ease-out;
}

.hero-content h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.1);
  transition: transform 20s ease;
}

.hero:hover .hero-image img {
  transform: scale(1);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.section-description {
  text-align: center;
  color: var(--text-color);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Infinite Footer */
.infinite-footer {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.scrolling-text {
  display: inline-block;
  animation: scroll 25s linear infinite;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Catalogs Section */
.catalogs {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogs.campanhas-marca {
  background-color: #f8f9fa;
  padding: 3rem 2rem;
  margin-top: 2rem;
  position: relative;
}

.catalogs.campanhas-marca::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.catalogs h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.catalogs.campanhas-marca h2 {
  color: #333;
}

.catalogs .section-description {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.catalogs.campanhas-marca .section-description {
  color: #555;
  font-size: 1.2rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.catalog-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: none;
  margin: 0 auto;
}

.catalog-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.catalog-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.catalog-item a:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.catalog-item h3 {
  padding: 1rem;
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}

.catalog-item p {
  padding: 0 1.2rem;
  color: var(--text-color);
  font-size: 1rem;
  flex-grow: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  margin: 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.catalog-item .btn {
  margin: 1.2rem;
  align-self: flex-start;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 4rem 5% 1rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.footer-info p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.8rem;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary-color);
  background-color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.verdecenter-logo img {
  max-height: 20px;
}

@media (max-width: 700px) {
  .footer-bottom {
    justify-content: center;
    flex-direction: column;
  }
  .verdecenter-logo {
    margin-top: 1rem;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  padding: 6rem 5%;
  background-color: var(--white);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.05) 0%,
    rgba(255, 107, 0, 0.1) 100%
  );
  z-index: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-item:hover i {
  transform: scale(1.1);
}

.feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-item p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 4rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .features-grid {
    gap: 2rem;
  }

  .catalog-item img {
    height: 300px;
  }

  .catalogs {
    padding: 2rem 1rem;
  }

  .catalogs.campanhas-marca {
    padding: 4rem 1rem;
  }

  .catalogs h2 {
    font-size: 2rem;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 70vw;
    max-width: 320px;
    background: rgb(255, 255, 255);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem 2rem;
    gap: 1rem;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    transition: right 0.3s;
  }
  .navbar .nav-links.open {
    right: 0;
  }
  .navbar .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-description {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-info p {
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

  .catalog-item {
    max-width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.2rem;
  }

  .catalog-item img {
    height: 250px;
  }

  .catalogs {
    padding: 2rem 1rem;
    padding-top: 5rem;
  }

  .catalogs.campanhas-marca {
    padding: 4rem 1rem;
  }

  .catalogs h2 {
    font-size: 2rem;
  }

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

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

  .products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Ajustes responsivos para os catálogos */
@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-company {
  padding: 4rem 5% 2rem 5%;
  background: var(--white);
  text-align: center;
  position: relative;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.7;
}

.about-company p {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.about-company::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 2rem auto;
  position: relative;
  top: -10px;
}

@media (max-width: 768px) {
  .about-container {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .about-company p {
    font-size: 1rem;
  }
}

.products-section {
  padding: 120px 5% 4rem;
  background-color: var(--light-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-category {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-category:hover {
  transform: translateY(-5px);
}

.product-category i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-category h3 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.product-category p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 120px 5% 4rem;
  background-color: var(--light-bg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 30px;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e05e00;
}

.map-container {
  background: var(--white);
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-container,
  .contact-info {
    min-height: 300px;
  }
}

/* Produtos Page Grid */
.produtos-section {
  padding: 6rem 5% 4rem 5%;
  background: var(--light-bg);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.produto-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.produto-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  padding: 1.5rem 1rem 0.5rem 1rem;
}

.produto-titulo {
  background: #363d4a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0.7rem 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.produto-card.destaque .produto-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 1px;
}

.produto-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-4px) scale(1.01);
}

@media (max-width: 1100px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }
  .produto-card img {
    height: 140px;
  }
}

.map-fullwidth {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-fullwidth iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.tipo-rede {
  font-size: 0.95em;
  color: #888;
  font-style: italic;
  margin-left: 4px;
}

/* Sidebar de filtros da loja */
.filtros-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2rem 1rem 1rem 1rem;
  max-width: 300px;
  min-width: 300px;
  margin-right: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-self: flex-start;
}
.filtros-sidebar label {
  font-weight: 500;
  color: #23272f;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.filtros-sidebar select,
.filtros-sidebar input[type="number"],
.filtros-sidebar input[type="text"] {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: #f6f7fb;
  color: #23272f;
  transition: border 0.2s;
  margin-bottom: 0.7rem;
}
.filtros-sidebar select:focus,
.filtros-sidebar input:focus {
  border-color: #ff6b00;
  outline: none;
}
.filtros-sidebar button {
  background: #ff6b00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 2rem;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.7rem;
}
.filtros-sidebar button:hover {
  background: #e05e00;
}
@media (max-width: 900px) {
  .loja-flex {
    flex-direction: column;
  }
  .filtros-sidebar {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
}

.shop-section {
  padding: 6rem 5% 4rem 5%;
  background: var(--light-bg);
  min-height: 100vh;
}
.shop-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.shop-section::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--primary-color);
  margin: 0 auto 2rem auto;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-light);
}
.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.product-desc {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.product-price {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.add-cart-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.add-cart-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Banner de Cookies */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #23272f;
  color: #fff;
  padding: 1.2rem 2rem 1.2rem 2rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.13);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.08rem;
}
.cookies-banner button {
  background: #ff6b00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 1.5rem;
  transition: background 0.2s;
}
.cookies-banner button:hover {
  background: #e05e00;
}
@media (max-width: 700px) {
  .cookies-banner {
    flex-direction: column;
    gap: 1rem;
    font-size: 0.98rem;
    padding: 1.2rem 1rem;
  }
  .cookies-banner button {
    width: 100%;
    margin-left: 0;
  }
}

::selection {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
::-moz-selection {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Estilos para a seção de logótipos das marcas */
.brand-logos {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 0;
  background: #f8f9fa;
}

.brand-logos h2 {
  color: #23272f;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.brand-logos .section-description {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Ajustar conforme necessário */
  gap: 2rem;
  justify-items: center;
  align-items: center;
  max-width: 600px; /* Ajustar conforme necessário */
  margin: 0 auto;
  padding: 0 1rem;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  min-height: 100px;
  min-width: 150px;
}

.logo-item img {
  max-width: 150px; /* Tamanho máximo da imagem */
  max-height: 60px; /* Tamanho máximo da imagem */
  width: auto; /* Manter proporção */
  height: auto; /* Manter proporção */
  filter: grayscale(100%); /* Preto e branco */
  transition: filter 0.3s ease; /* Transição suave */
}

.logo-item img:hover {
  filter: grayscale(0%); /* Cor original ao passar o rato */
}

/* Responsividade para logótipos */
@media (max-width: 768px) {
  .brand-logos {
      padding: 1.5rem 0;
  }

  .brand-logos h2 {
      font-size: 1.5rem;
  }

  .brand-logos .section-description {
      font-size: 0.9rem;
  }

  .logos-grid {
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .logo-item img {
      max-width: 80px;
      max-height: 50px;
  }
} 