/* 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;
}

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

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

.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;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  width: 80px;
  height: auto;
}

.back-button {
  background-color: #bfd7c4;
  color: #395346;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  font-family: "Crimson Pro", serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.back-button:hover {
  background-color: #a8c7ae;
  transform: translateY(-1px);
}

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

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 800px;
  gap: 16px;
  text-align: center;
}

.hero-title {
  font-size: 35px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #395346;
}

.steps-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1112px;
  gap: 32px;
}

.step-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 4px rgba(57, 83, 70, 0.7);
  padding: 24px;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(57, 83, 70, 0.8);
}

.step-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 84px;
  background-color: #395346;
  border-radius: 42px;
  padding: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
}

.step-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #395346;
  text-align: center;
}

.step-description {
  font-size: 16px;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #395346;
  text-align: center;
}

.step-description strong {
  font-weight: 700;
}

.step-note {
  font-size: 14px;
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: #395346;
  text-align: center;
  margin-bottom: 6px;
}

.cta-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #bfd7c4;
  padding: 32px 16px;
  text-align: center;
  gap: 20px;
}

.cta-title {
  font-size: 24px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #395346;
}

.cta-subtitle {
  font-size: 15px;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #395346;
}

.cta-highlight {
  font-size: 15px;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  line-height: 1.4;
  color: #395346;
  margin-top: 12px;
}

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

.cta-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;
}

.cta-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;
}

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

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

/* Responsive media queries */
@media (min-width: 640px) {
  .header {
    padding: 12px 32px;
  }

  .logo {
    width: 100px;
  }

  .back-button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .content-section {
    margin-top: 48px;
    gap: 64px;
    padding: 0 24px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  .steps-container {
    gap: 40px;
  }

  .step-card {
    padding: 28px;
    gap: 20px;
  }

  .step-title {
    font-size: 26px;
  }

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

  .step-note {
    font-size: 18px;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-highlight {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 28px;
    justify-content: center;
  }

  .cta-button {
    font-size: 17px;
    min-width: 250px;
  }

}

@media (min-width: 768px) {
  .header {
    padding: 12px 42px;
  }

  .logo {
    width: 110px;
  }

  .content-section {
    margin-top: 64px;
    gap: 84px;
    padding: 0 32px;
  }

  .hero-title {
    font-size: 42px;
  }

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

  .steps-container {
    gap: 46px;
  }

  .step-card {
    padding: 32px;
    gap: 24px;
  }

  .step-title {
    font-size: 28px;
  }

  .step-description {
    font-size: 20px;
  }

  .step-note {
    font-size: 20px;
  }

  .cta-section {
    padding: 48px 32px;
  }

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

  .cta-subtitle {
    font-size: 17px;
  }

  .cta-highlight {
    font-size: 17px;
  }

  .cta-button {
    font-size: 18px;
  }

  .contact-text {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .content-section {
    padding: 0 42px;
  }

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

  .hero-subtitle {
    font-size: 23px;
  }

  .step-title {
    font-size: 30px;
  }

  .cta-title {
    font-size: 35px;
  }
}

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

}
