
:root {
  --primary-color: #3483fa;
  --primary-hover: #2968c8;
  --secondary-color: #e60023;
  --background-color: #f5f5f5;
  --text-color: #333;
  --header-bg: #ffffff;
  --footer-bg: #333;
  --footer-text: #ffffff;
}
/* Nova regra para .container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 0 auto;
}
/* Reset e estilos básicos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}
/* Header - Desktop */
header .header-container {
  display: flex;
  flex-direction: column;
  background-color: var(--header-bg);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.header-top .logo img {
  max-height: 60px;
}
.header-top .search-bar {
  flex: 1;
  margin: 0 20px;
  display: flex;
}
.header-top .search-bar input[type="text"] {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.header-top .search-bar button {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 4px 4px 0;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
}
.header-top .cart-icon {
  font-size: 1.5rem;
  color: var(--text-color);
}
.header-bottom {
  padding: 10px 20px;
  background-color: var(--header-bg);
}
.header-bottom nav.menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.header-bottom nav.menu ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}
.header-bottom nav.menu ul li a:hover {
  color: var(--primary-color);
}
/* Header - Mobile */
.mobile-header {
  display: none;
  background-color: var(--header-bg);
  border-bottom: 1px solid #e0e0e0;
}
.mobile-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.mobile-header .logo img {
  max-height: 50px;
}
.mobile-header .hamburger {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}
.mobile-header .search-mobile {
  margin: 10px 20px;
  display: flex;
  gap: 10px;
}
.mobile-header .search-mobile input[type="text"] {
  flex: 1;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}
.mobile-header .search-mobile button {
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 4px 4px 0;
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--header-bg);
  border-top: 1px solid #e0e0e0;
}
.mobile-menu ul {
  list-style: none;
  padding: 10px 20px;
}
.mobile-menu ul li {
  margin-bottom: 10px;
}
.mobile-menu ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1rem;
}
/* Bloco 1: Product Section */
.product-section {
  background-color: #ffffff;
  padding: 40px;
  margin: 40px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.product-gallery {
  flex: 1 1 400px;
  text-align: left;
}
.product-gallery .main-image {
  width: 100%;
  max-width: 500px;
  height: 500px; /* Tamanho fixo */
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 15px;
}
.product-gallery .thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-gallery .thumbnails img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-gallery .thumbnails img:hover {
  transform: scale(1.05);
}
.product-details {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.product-details h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.product-details .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
}
/* Bloco: Frete e Parcelamento */
.shipping-info {
  margin-bottom: 20px;
}
.shipping-info p {
  font-size: 1rem;
  margin-bottom: 5px;
}
.free-shipping {
  font-weight: bold;
  color: green;
}
/* Seletor de Quantidade */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.quantity-selector label {
  font-size: 1rem;
  color: var(--text-color);
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}
.quantity-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #fff;
}
.quantity-btn:hover {
  background-color: var(--primary-hover);
}
.quantity-input {
  width: 60px;
  padding: 8px;
  font-size: 1rem;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.quantity-desc {
  font-size: 0.9rem;
  color: var(--text-color);
}
/* Botões de Ação */
.btn-buy, .btn-pickup {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}
.btn-buy {
  background-color: var(--primary-color);
  color: #ffffff;
}
.btn-buy:hover {
  background-color: var(--primary-hover);
}
.btn-pickup {
  background-color: #4CAF50;
  color: #ffffff;
}
.btn-pickup:hover {
  background-color: #43a047;
}
.payment-info {
  font-size: 0.9rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.payment-info img {
  width: 24px;
  height: auto;
}
/* Bloco 2: Shipping Section */
.shipping-section {
  background-color: #ffffff;
  padding: 30px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.shipping-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.shipping-section p {
  font-size: 1rem;
  margin-bottom: 10px;
}
/* Bloco 3: Informações Importantes */
.info-section {
  background-color: #ffffff;
  padding: 30px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.info-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.info-section .policy {
  font-size: 1rem;
  margin-bottom: 15px;
  text-align: left;
}
.info-section .policy strong {
  display: block;
  margin-bottom: 5px;
}
/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 20px;
  margin-top: 40px;
}
footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
footer .footer-section {
  flex: 1;
  min-width: 200px;
}
footer .footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}
footer .footer-section ul {
  list-style: none;
}
footer .footer-section ul li {
  margin-bottom: 10px;
}
footer .footer-section ul li a {
  color: var(--footer-text);
  text-decoration: none;
}
footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
  font-size: 0.9rem;
}
/* Responsividade */
@media (max-width: 768px) {
  .product-section,
  .shipping-section,
  .info-section {
    flex-direction: column;
    align-items: center;
  }
  header .header-container {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  header .menu ul {
    flex-direction: column;
    align-items: center;
  }
  footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (min-width: 768px){
    .header-top .search-bar {
        max-width: 50%;
    }
}


.header-desktop {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.fa-shopping-cart {
  color: #000;
}

div.footer-section img {
  width: 80%;
}