:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --text-color: #333;
  --light-text-color: #f8f8f8;
  --danger-color: #e74c3c;
  --font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-content {
  font-family: var(--font-family);
  color: var(--text-color);
}

.minisite-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding-top: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.minisite-header {
  position: relative;
  height: 350px;
  color: var(--light-text-color);
  box-shadow: none;
}

.cover-figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

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

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.863), rgba(0, 0, 0, 0.253));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.minisite-logo {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid #fff;
  object-fit: contain;
  background-color: rgba(44, 62, 80, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.minisite-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0 0 10px 0;
}

.hero-cta-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.hero-cta-button:hover {
  background-color: transparent;
  border-color: #fff;
}

.minisite-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9fafb;
}

.main-column,
.sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.minisite-section,
.info-block {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.minisite-section h2,
.info-block h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

/* --- Seção Sobre Nós --- */
.about-section-reloaded {
  display: block;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.about-title-reloaded {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  border: none;
}

.about-title-reloaded span {
  color: var(--primary-color);
}

.about-description-reloaded {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.about-bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-mission-reloaded h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.about-mission-reloaded blockquote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  font-size: 1.1rem;
  color: #666;
}

.about-image-reloaded img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-image-reloaded img:hover {
  transform: scale(1.03);
}

/* --- Seção de Produtos --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-image {
  width: 100%;
  height: 180px;
  background-color: #f0f4f9;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1rem;
  flex-grow: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--secondary-color);
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.promotional-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.original-price-strikethrough {
  font-size: 0.9rem;
  color: var(--danger-color);
  text-decoration: line-through;
}

.product-price {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
}

.product-card-footer {
  padding: 0 1rem 1rem 1rem;
}

.product-link {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.product-link:hover {
  background-color: var(--secondary-color);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-list li span,
.contact-list li a {
  display: block;
  color: var(--text-color);
}

.contact-list a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--primary-color);
}

.sidebar-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-cta-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.sidebar-cta-button svg {
  width: 20px;
  height: 20px;
}

.minisite-footer {
  padding: 2rem;
  text-align: center;
  background-color: #f9fafb;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: var(--light-text-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: #2980b9;
  transform: scale(1.05);
}

.cta-button svg {
  width: 24px;
  height: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  margin: auto 60px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
  left: 10px;
  border-radius: 3px 0 0 3px;
}

.lightbox-next {
  right: 10px;
  border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* --- Responsividade --- */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .minisite-body {
    grid-template-columns: 1fr;
  }

  .about-bottom-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .minisite-header {
    height: 250px;
    margin-bottom: 0;
  }

  .minisite-container {
    border-radius: 0;
    margin: 0 auto;
  }

  .minisite-title {
    font-size: 1.8rem;
  }

  .minisite-logo {
    width: 80px;
    height: 80px;
  }

  .header-content {
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-cta-button,
  .sidebar-cta-container {
    display: none;
  }

  .minisite-body {
    padding: 1.5rem 1rem;
  }

  .about-title-reloaded {
    font-size: 2.2rem;
  }

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

  .lightbox-content {
    margin: auto 10px;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 12px;
    font-size: 20px;
  }
}