* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background: #f9f5f0;
  color: #2c1810;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.logo a {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

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

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

.nav-menu a {
  color: #2c1810;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-menu a:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.hero {
  background: url('../imagens/background.jpg') no-repeat center center/cover;
  color: #fff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#iniciarBtn {
  background: #d4af37;
  color: #2c1810;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-shadow: none;
}

#iniciarBtn:hover {
  background: #c19b2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.feature-item {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.feature-item h3 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95em;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .features {
    padding: 40px 15px;
    gap: 20px;
  }

  .feature-item {
    flex: 1 1 250px;
    padding: 25px;
  }

  .feature-item h3 {
    font-size: 1.1em;
  }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
  .features {
    padding: 30px 10px;
    gap: 15px;
  }

  .feature-item {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    padding: 20px;
    min-width: 0; /* Previne que o conteúdo force a largura */
  }

  .feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(100%) contrast(100%);
  }

  .feature-item h3 {
    font-size: 1em;
    margin-bottom: 10px;
    word-wrap: break-word; /* Permite quebrar palavras longas */
  }

  .feature-item p {
    font-size: 0.9em;
    word-wrap: break-word; /* Permite quebrar palavras longas */
  }
}

.video {
  text-align: center;
  padding: 40px 20px;
}

.video-container {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.play-btn {
  position: absolute;
  top: 40%;
  left: 45%;
  font-size: 2em;
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
}

.recent-work {
  padding: 40px 20px;
  text-align: center;
}

.work-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.work-item {
  background: #f5f5f5;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #eee;
}

.work-item.active {
  background: #eee;
}

.subscribe {
  background: #f1f1f1;
  padding: 60px 20px 100px 20px; /* aumentamos o padding-bottom para 100px */
  text-align: center;
}

.subscribe button {
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #333;
  background: white;
  cursor: pointer;
}

.footer {
  background: linear-gradient(to bottom, #2c1810, #4a2c1a);
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 10px;
  position: relative;
}

.social-icons {
  text-align: center;
  margin: 30px;
 
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.footer-columns h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-columns p {
  color: #e0c097;
  line-height: 1.8;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 30px;
  color: #e0c097;
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

#registerModal .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

.switch-form {
  margin-top: 15px;
  text-align: center;
}

.switch-form a {
  color: #007bff;
  cursor: pointer;
}

/* Estilos da seção de contato */
.contact {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
              url('assets/imagens/contact.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.contact h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  width: 100px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px;
  border: 1px solid #d4af37;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: auto;
  padding: 12px 30px;
  font-size: 1.1em;
  background: #1a73e8;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  font-weight: 500;
}

.contact-form .btn:hover {
  background: #1557b0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Estilos da seção de história */
.valores {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('assets/imagens/valores.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.valores-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.valores-text {
  text-align: left;
  line-height: 1.8;
  color: #333;
}

.valores-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.valores-text h3 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.valores-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #666;
}

.valores-image {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.valor-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 250px;
  height: 100%;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.valor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

.valor-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(5000%) hue-rotate(0deg) brightness(100%) contrast(100%);
  transition: transform 0.3s ease;
}

.valor-item:hover .valor-icon {
  transform: scale(1.1);
}

.valor-item h4 {
  font-size: 1.2rem;
  color: #2c1810;
  margin-bottom: 15px;
  text-align: center;
}

.valor-item p {
  color: #4a2c1a;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .history-content {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  
  .history-text {
    flex: 1;
  }
  
  .history-image {
    flex: 1;
  }
}

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

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

/* Estilos do Modal de Termos */
.termos-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.termos-texto {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 20px;
  background-color: #fff;
}

.termos-texto h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.termos-texto p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.termos-texto strong {
  color: #333;
  font-size: 1.1em;
}

.termos-texto a {
  color: #007bff;
  text-decoration: none;
}

.termos-texto a:hover {
  text-decoration: underline;
}

/* Scrollbar personalizada para o modal de termos */
.termos-texto::-webkit-scrollbar {
  width: 8px;
}

.termos-texto::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.termos-texto::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.termos-texto::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#termosModal .modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#termosModal .close {
  color: #333;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

#termosModal .close:hover {
  color: #000;
}

/* Estilos para o Modal de Código de Conduta */
.codigo-container {
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.codigo-container::-webkit-scrollbar {
  width: 8px;
}

.codigo-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.codigo-container::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

.codigo-container::-webkit-scrollbar-thumb:hover {
  background: #c19b2e;
}

.codigo-container h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.codigo-container p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.codigo-container .section {
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.codigo-container .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.codigo-container .section-title img {
  width: 32px;
  height: 32px;
}

.codigo-container ul {
  margin-left: 20px;
  color: #666;
}

.codigo-container li {
  margin-bottom: 8px;
}

.codigo-container a {
  color: #007bff;
  text-decoration: none;
}

.codigo-container a:hover {
  text-decoration: underline;
}

.modal-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.modal-link:hover {
  text-decoration: underline;
  color: #007bff;
}

.pricing-section {
  background: linear-gradient(to bottom right, #e8d9c5, #f0e6d2);
  color: #2c1810;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px 20px 0 0;
}

.pricing-header {
  margin-bottom: 40px;
}

.pricing-header .icon-crown {
  font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 15px;
  color: #d4af37;
}

.pricing-header h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #2c1810;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.pricing-header p {
  max-width: 600px;
  margin: 10px auto 40px;
  font-size: 1.1rem;
  color: #4a2c1a;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #2c1810;
  position: relative;
  padding-bottom: 15px;
}

.card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #d4af37;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #4a2c1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul li::before {
  content: '✓';
  color: #d4af37;
  font-weight: bold;
}

.card .price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2c1810;
}

.card .price span {
  font-size: 1rem;
  color: #8b7355;
}

.card button {
  background: #2c1810;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card button:hover {
  background: #4a2c1a;
  transform: scale(1.05);
}

/* Cores individuais por plano */
.card.free {
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  border: 2px solid #d4af37;
}

.card.basic {
  background: linear-gradient(135deg, #fff 0%, #f8f4e3 100%);
  border: 2px solid #8b7355;
}

.card.corporate {
  background: linear-gradient(135deg, #fff 0%, #f0e6d2 100%);
  border: 2px solid #d4af37;
}

.card.pro {
  background: linear-gradient(135deg, #fff 0%, #e8d9c5 100%);
  border: 2px solid #8b7355;
}

/* Ícones para cada plano */
.card.free h3::before {
  content: '🍷';
  margin-right: 10px;
}

.card.basic h3::before {
  content: '🍽️';
  margin-right: 10px;
}

.card.corporate h3::before {
  content: '🏢';
  margin-right: 10px;
}

.card.pro h3::before {
  content: '🌟';
  margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .features,
  .history,
  .recent-work,
  .contact {
    padding: 40px 20px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Estilos para a seção de histórico */
.history {
  padding: 4rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('assets/imagens/history.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #34a853);
  z-index: 2;
}

.history-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 1rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.history-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 115, 232, 0.15);
  backdrop-filter: blur(5px);
  grid-column: 1 / -1;
}

.history-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(26, 115, 232, 0.3);
}

.history-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8, #34a853);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.history-item:hover::before {
  opacity: 1;
}

.history-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.history-item:hover .history-icon {
  transform: scale(1.1);
}

.history-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-text h3 {
  margin: 0 0 1.5rem 0;
  color: #1a73e8;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.history-text p {
  margin: 0 0 1rem 0;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  text-align: left;
  width: 100%;
}

.history-text ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  text-align: left;
  width: 100%;
}

.history-text li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 0.5rem;
  text-align: left;
}

.history-item:hover .history-text h3 {
  color: #1a73e8;
}

.history-item:hover .history-text p,
.history-item:hover .history-text ul {
  color: #4a5568;
}

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

@media (max-width: 768px) {
  .history-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.produtos {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
              url('assets/imagens/produtos.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.produtos-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.produtos h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 40px;
}

.produto-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 300px;
  height: 100%;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #d4af37;
}

.produto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

.produto-imagem {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.produto-item h3 {
  font-size: 1.4rem;
  color: #2c1810;
  margin-bottom: 1rem;
  font-weight: 600;
}

.produto-item p {
  color: #4a2c1a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.produto-preco {
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 1rem;
}

.produto-btn {
  background: #2c1810;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.produto-btn:hover {
  background: #4a2c1a;
  transform: scale(1.05);
}

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

@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .produto-item {
    min-height: auto;
  }
}
