/* Importação das fontes */
@font-face {
    /* Na hora de configurar os escritos - font-family: 'Crimson Pro', sans-serif; */
    font-family: 'Crimson Pro';
    src: url('../fonts/crimson_pro/CrimsonPro-VariableFont_wght.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */

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

body {
  background-color: #f9f6f1;
  color: #395346;
  line-height: 1.6;
}

/* Layout components */
.main-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  background-color: #395346;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
}

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

.logo {
  width: 110px;
  height: 56px;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0 16px;
}

.intro-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 30 16px;
}

.main-title {
  font-size: 28px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #395346;
  margin-bottom: 16px;
}

.intro-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #395346;
  margin-bottom: 8px;
}

.intro-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #395346;
}

.professional-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #395346;
  border-radius: 16px;
  padding: 16px;
  margin: 0 16px;
}

.professional-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff4e2;
  margin-bottom: 16px;
}

.professional-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #fff4e2;
  margin-bottom: 18px;
  width: 90%;
}

.professional-text .bold {
  font-weight: 500;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #395346;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 18px;
  margin-bottom: 12px;
}

.contact-button:hover {
  background-color: #395346;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
  width: 26px;
  height: 26px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  padding: 0 16px;
  margin-bottom: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 14px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  color: #395346;
  margin-bottom: 6px;
}

.product-price {
  background-color: #395346;
  color: #f9f6f1;
  border-radius: 10px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
  display: inline-block;
}

.product-price.discounted {
  background-color: transparent;
  color: #97ac9b;
}

.product-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #395346;
  margin-bottom: 16px;
  width: 96%;
}

.product-seller {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
}

.seller-icon {
  width: 12px;
  height: 20px;
  margin-right: 6px;
}

.seller-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #395346;
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #395346;
  color: #f9f6f1;
  border: none;
  border-radius: 8px;
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Crimson Pro", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(57, 83, 70, 0.37);
  width: 100%;
  margin-top: 8px;
}

.product-button:hover {
  background-color: #2d4238;
  transform: translateY(-1px);
  box-shadow: 0px 6px 8px rgba(57, 83, 70, 0.4);
}

.product-button img {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

/* Typography */
.crimson-font {
  font-family: "Crimson Pro", serif;
}

/* Responsive media queries */
@media (min-width: 640px) {
  .main-container {
    gap: 46px;
  }

  .header {
    padding: 12px 42px;
  }

  .content-section {
    gap: 46px;
    margin: 0 56px;
  }

  .intro-section {
    margin: 30 56px;
  }

  .main-title {
    font-size: 36px;
  }

  .intro-text {
    font-size: 18px;
  }

  .intro-description {
    font-size: 18px;
  }

  .professional-section {
    margin: 0 42px;
  }

  .professional-title {
    font-size: 32px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 42px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-price {
    font-size: 18px;
  }

  .product-description {
    font-size: 16px;
  }

}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .main-title {
    font-size: 45px;
  }

  .intro-text {
    font-size: 23px;
  }

  .intro-description {
    font-size: 23px;
  }

  .professional-title {
    font-size: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 94px;
  }
}

@media (min-width: 1280px) {
  .header-content {
    max-width: 1400px;
  }
}

/* Interactive states */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

button:active {
  transform: scale(0.98);
}
