body {
      font-family: Arial, sans-serif;
      background: #fff;
      color: #222;
      margin: 0;
      padding: 0 1rem;
    }

 .hero {
  text-align: center; /* or left if preferred */
  
}

.hero-title {
  font-family: 'The Seasons', serif;
  font-size: 2.8rem; /* or larger if needed */
  font-weight: 300;
  margin: 0.5rem 0;
}

.hero-subheadline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  text-align: center;
  margin: 0.5rem auto;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;

}

@media (max-width: 600px) {
  .hero-subheadline {
    white-space: normal;
  }
}

.hero-subheadline-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  text-align: center;
  margin: 0.5rem auto;
  max-width: 600px;
}

header {
  text-align: center;
  margin: 2rem 0;
}

header h1 {
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
}

header span {
  color: #64c2c8;
}

.subscribe-box {
  max-width: 500px;
  margin: 2rem auto;
  text-align: center;
}

/* Force horizontal form layout */
.custom-form-wrapper form {
  display: flex !important;
  flex-direction: row !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
}

/* Style email input */
.custom-form-wrapper input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  border: none !important;
  border-right: 1px solid #ccc !important;
  border-radius: 0 !important;
}

/* Style submit button */
.custom-form-wrapper button[type="submit"] {
  padding: 0.7rem 1.5rem;
  background-color: #8b6d4d;
  color: #fff;
  font-size: 1rem;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.custom-form-wrapper button[type="submit"]:hover {
  background-color: #6d543c;
}

/* Responsive: Stack vertically on small screens 
@media (max-width: 480px) {
  .custom-form-wrapper form {
    flex-direction: column !important;
  }

  .custom-form-wrapper input[type="email"],
  .custom-form-wrapper button[type="submit"] {
    width: 100%;
    border-radius: 0 !important;
    border-right: none !important;
  }
}*/


.posts {
  max-width: 600px;
  margin: 3rem auto;
  border-top: 1px solid #ccc;
  padding-top: 2rem;
}

.post {
  margin-bottom: 2rem;
}

.post-date {
  color: #777;
  font-size: 0.9rem;
}

.post-title {
  font-size: 1.2rem;
  margin: 0.3rem 0;
}

.post-title span {
  font-weight: bold;
}

.post-desc {
  color: #555;
}

    /* Adicionando estilo para a imagem do header */
/* Redimensionando a imagem para um tamanho fixo */
.header-logo {
    width: 300px;  /* Altere para o valor desejado */
    height: auto;  /* Mantém a proporção da imagem */
    display: block;
    margin: 0 auto;
}


/* Highlights Section */
.highlights {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.highlight-item {
  flex: 1;
  min-width: 180px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials Section */
.testimonials {
  
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* Ensures responsiveness on small screens */
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 280px;
  flex: 1;
  min-width: 220px;
  font-style: italic;
  color: #444;
}

.testimonial .stars {
  font-size: 1.2rem;
  color: goldenrod;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
  color: #666;
}

.social {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 1rem;
  list-style: none;
}

.social li {
  position: relative;
  flex-basis: 4.5rem;
}

.social li::after {
  position: absolute;
  /* content: "Tooltip"; */
  content: attr(data-tooltip);
  inset: -45% auto auto 50%;
  z-index: -1;
  translate: -50%;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  /* background: #070707; */
  background: var(--bg, #070707);
  border-radius: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: all 0.3s ease-in-out; */
  transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
    visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.social li:has(a:hover, a:focus-visible)::after {
  opacity: 1;
  visibility: visible;
  inset-block-start: -60%;
}

.social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  font-size: 1.75rem;
  color: #070707;
  border: 1px solid;
  border-radius: 100%;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.social a > i {
  position: relative;
  z-index: 1;
}

.social a::after {
  position: absolute;
  content: "";
  inset: 100% 0 0;
  /* background: #070707; */
  background: var(--bg, #070707);
  pointer-events: none;
  transition: inset 0.3s ease-in-out;
}

.social a:hover,
.social a:focus-visible {
  color: #fff;
}

.social a:hover::after,
.social a:focus-visible::after {
  inset-block-start: 0;
}


/* Footer */
footer {
  border-top: none;
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}


