/* 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 {
  font-family: "Crimson Pro", serif;
  background-color: #f9f6f1;
  color: #395346;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout components */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.section {
  width: 100%;
  padding: 24px 16px;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.header {
  background-color: #395346;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  margin: 0 auto;
}

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

.header-icon {
  background-color: #bfd7c4;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.header-icon img {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero-section {
  padding: 18px 16px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: 100%;
}

.hero-logo-stack {
  position: relative;
  width: 100%;
  max-width: 314px;
  height: 158px;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-vector {
  position: absolute;
  top: 60px;
  right: -10px;
  width: 14px;
  height: 56px;
}

.hero-title {
  font-size: 28px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  line-height: 32px;
  color: #395346;
  text-align: center;
}

.hero-subtitle {
  font-size: 18px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  line-height: 22px;
  color: #395346;
  text-align: center;
  margin-top: 16px;
}

.cta-button-desktop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #395346;
  color: #f9f6f1;
  padding: 14px 20px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.cta-button-mobile {
  display: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button img {
  width: 32px;
  height: 32px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 572px;
  height: 400px;
  margin: 0 auto;
}

.hero-image {
  width: 90%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(249, 246, 241, 0) 0%,
    rgba(249, 246, 241, 0.7) 50%,
    #f9f6f1 100%
  );
  border-radius: 0 0 10px 10px;
}

/* Services Section */
.services-section {
  background-color: #f9f6f1;
  padding: 52px 24px;
  margin-top: 12px;
}

.services-title {
  font-size: 50px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  line-height: 36px;
  color: #395346;
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 4px 4px #395346;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px; /* Flex properties for responsive cards */
  max-width: 300px; /* Adjust as needed */
}

.service-icon {
  background-color: #395346;
  border-radius: 32px;
  padding: 18px;
  margin-bottom: 28px;
}

.service-icon img {
  width: 64px;
  height: 64px;
}

.service-title {
  font-size: 30px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 22px;
  color: #395346;
  margin-bottom: 12px;
}

.service-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #395346;
}

.services-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #395346;
  border: solid #395346 0.5px;
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  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;
}

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

.services-button img {
  width: 20px;
  height: 20px;
}

.atendimentos-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.atendimentos-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #395346;
  color: #ffffff;
  padding: 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.atendimentos-button:hover {
  transform: translateY(-2px);
}

.atendimentos-button img {
  width: 30px;
  height: 30px;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #395346;
  color: #ffffff;
  padding: 18px 20px 18px 52px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.secondary-button:hover {
  transform: translateY(-2px);
}

.secondary-button img {
  width: 24px;
  height: 24px;
}

/* About Section */
.about-section {
  background-color: rgba(191, 215, 196, 0.76);
  background-image: url("../assets/images/img_image_1.png");
  background-size: cover;
  background-position: center;
  padding: 106px 16px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.about-icon {
  background-color: #f9f6f1;
  border-radius: 32px;
  padding: 16px;
  margin-bottom: 16px;
}

.about-icon img {
  width: 64px;
  height: 64px;
}

.about-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 28px;
  color: #395346;
  margin-bottom: 38px;
}

.about-text {
  font-size: 16px;
  line-height: 24px;
  color: #395346;
  margin-bottom: 16px;
}

.about-text strong {
  font-weight: 700;
}

/* Professional Section */
.professional-section {
  background-color: #f9f6f1;
}

.decorative-element{
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.professional-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
}

.professional-title {
  font-size: 32px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  line-height: 40px;
  color: #395346;
  text-align: center;
  margin-bottom: 32px;
}

.professional-image {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 32px;
}

.professional-info {
  background-color: #395346;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 32px;
  box-shadow: 0px 4px 4px rgba(57, 83, 70, 0.25);
}

.professional-info h3 {
  font-size: 20px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 24px;
  color: #f9f6f1;
  margin-bottom: 16px;
}

.professional-info ul {
  list-style: none;
  padding: 0;
}

.professional-info li {
  font-size: 14px;
  line-height: 19px;
  color: #f9f6f1;
  margin-bottom: 6px;
}

.professional-description {
  text-align: center;
  max-width: 600px;
}

.professional-description p {
  font-size: 16px;
  line-height: 24px;
  color: #395346;
  margin-bottom: 16px;
}

.professional-description .highlight {
  font-size: 20px;
  font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #bfd7c4;
  padding: 52px 16px;
}

.testimonials-title {
  font-size: 32px;
  font-family: "Crimson Pro", serif;
  font-weight: 700;
  line-height: 40px;
  color: #395346;
  text-align: center;
  margin-bottom: 66px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  width: 100%;
  height: 24px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 22px;
  color: #395346;
  margin-bottom: 16px;
}

.testimonial-author {
  border-top: 1px solid #395346;
  padding-top: 16px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #395346;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  line-height: 17px;
  color: #395346;
}

.testimonial-line {
  width: 100%;
  height: 1px;
  background-color: #395346;
  margin: 12px 0 22px;
}

/* Products Section */
.products-section {
  background-color: #f9f6f1;
  padding: 50px 16px;
  text-align: center;
}

.products-card {
  background-color: #395346;
  border-radius: 20px;
  padding: 38px 24px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  max-width: 502px;
  margin: 0 auto;
}

.products-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 28px;
  color: #f9f6f1;
  margin-bottom: 42px;
}

.products-description {
  font-size: 15px;
  line-height: 18px;
  color: #f9f6f1;
  margin-bottom: 14px;
}

.products-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #395346;
  padding: 12px 24px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.products-button:hover {
  transform: translateY(-2px);
}

.products-button img {
  width: 20px;
  height: 20px;
}

/* Contact Section */
.contact-section {
  background-color: #f9f6f1;
  padding: 48px 16px;
  text-align: center;
}

.contact-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 32px;
  color: #395346;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 17px;
  line-height: 21px;
  color: #395346;
  margin-bottom: 20px;
}

.contact-highlight {
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
  color: #395346;
  margin-bottom: 30px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.contact-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #395346;
  color: #ffffff;
  padding: 14px 22px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #395346;
  padding: 16px 28px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.contact-button-primary:hover,
.contact-button-secondary:hover {
  transform: translateY(-2px);
}

.contact-button-primary img,
.contact-button-secondary img {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  background-color: #395346;
  color: #f9f6f1;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.footer-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

.footer-title {
  font-size: 16px;
  line-height: 20px;
}

.footer-license {
  font-size: 14px;
  line-height: 20px;
}

.footer-section-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.footer-contact-item, .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-contact-item img, .footer-social img {
  width: 20px;
  height: 20px;
}

.footer-contact-text, .footer-social-text {
  font-size: 16px;
  line-height: 19px;
}

.footer-copyright {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding: 24px;
  border-top: 1px solid #f9f6f1;
}


/* Responsive media queries */

@media (max-width: 767px) {
  .section {
    padding: 32px 24px;
  }

  .column{
    gap: 0px;
  }

  .hero-content{
    gap: 0px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 24px;
  }

  .hero-logo-stack {
    margin: 0 auto;
  }

  .cta-button-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #395346;
    color: #f9f6f1;
    padding: 14px 20px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    width: fit-content;
  }

  .cta-button-desktop {
    display: none;
  }

  .services-title {
    font-size: 35px;
    font-family: "Crimson Pro", serif;
    font-weight: 700;
    line-height: 36px;
    color: #395346;
    text-align: center;
    margin-bottom: 50px;
  }

  .atendimentos-button{
    text-align: center;
  }

  .professional-bg {
    height: 746px;
  }

  .header-icon {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    align-items: center;
  }

  .footer-contact-item, .footer-social {
    justify-content: center;
  }

  .professional-bg {
    height: 746px;
  }
}

@media (min-width: 768px){
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
  }

  .hero-text {
    width: 50%;
    text-align: left;
  }

  .hero-title {
    font-size: 36px;
    line-height: 40px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 24px;
    line-height: 28px;
    text-align: left;
  }

  .hero-image-stack {
    width: 46%;
    height: 500px;
  }

  .hero-image {
    height: 500px;
  }

  .services-title {
    font-size: 40px;
    line-height: 44px;
  }

  .about-content {
    flex-direction: row;
    text-align: left;
    gap: 64px;
  }

  .about-title {
    font-size: 28px;
    line-height: 32px;
    text-align: left;
  }

  .professional-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px 56px;
  }

  .professional-title {
    font-size: 40px;
    line-height: 48px;
    text-align: left;
    margin-bottom: 0;
  }

  .professional-image {
    width: 300px;
    height: 500px;
    margin-bottom: 0;
  }

  .footer-column {
    text-align: left;
  }

  .footer-contact-item, .footer-social {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 48px 56px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 45px;
  }

  .hero-subtitle {
    font-size: 30px;
    line-height: 25px;
  }

  .cta-button-desktop {
    font-size: 20px;
  }

  .services-title {
    font-size: 50px;
    line-height: 50px;
  }

  .service-title {
    font-size: 23px;
    line-height: 28px;
  }

  .about-title {
    font-size: 35px;
    line-height: 35px;
  }

  .about-text {
    font-size: 20px;
    line-height: 24px;
  }

  .professional-title {
    font-size: 50px;
    line-height: 56px;
  }

  .testimonials-title {
    font-size: 50px;
    line-height: 55px;
  }

  .products-title {
    font-size: 30px;
    line-height: 30px;
  }

  .contact-title {
    font-size: 35px;
    line-height: 39px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 80px;
  }
}
