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

body {
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}

/* Header */

.header {
  background-color: #ffffff;
  width: 100%;
  padding: 10px 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.header__logo {
  max-width: 100px;
  height: auto;
  display: block;
}

/* Hero */

.hero {
  background-image: url("https://cdn.greatsoftwares.com.br/arquivos/paginas_editor/443515-c349e7dc5d692966cc27b41d2919fdde.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  width: 200%;
  transform: translateX(-25%);
}

.hero__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  height: 700px;
  position: relative;
}

.hero__content {
  position: absolute;
  width: 850px;
  background-color: #f48120;
  border-radius: 36px;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 50px 70px 50px 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero__title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.hero__subtitle {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.hero__subtitle-line {
  color: #f48120;
  background-color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  padding: 5px 20px;
  border-radius: 0;
  display: inline-block;
  width: fit-content;
}

.hero__subtitle-line:first-child {
  padding-top: 10px;
}

.hero__subtitle-line:last-child {
  padding-bottom: 10px;
}

.hero__text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.hero__button {
  display: inline-block;
  background-color: #7dc142;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 11px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 360px;
  min-width: 260px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 5px 0 #639736;
  text-transform: uppercase;
  font-weight: 700;
}

.hero__button:hover {
  background-color: #639736;
}

.hero__button:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #639736;
}

.hero__image {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 810px;
  height: auto;
  z-index: 2;
}

/* Steps */

.steps {
  background-image: url("https://cdn.greatsoftwares.com.br/arquivos/paginas_editor/443515-a1c3609ea37caf3692260ad451016f4c.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 20px 120px;
}

.steps__container {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
}

.steps__title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.steps__highlight {
  display: block;
  margin: 3px auto;
  width: fit-content;
  background-color: #ffffff;
  color: #f48120;
  padding: 5px 20px;
}

.steps__panel {
  margin: 250px auto 150px;
  max-width: 1240px;
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 32px;
  padding: 70px;
  height: 300px;
  position: relative;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__cards {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: nowrap;
}

.steps__cta {
  margin: 240px auto 0;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.steps__cta-image {
  max-width: 240px;
  width: 100%;
  height: auto;
}

.steps__cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.steps__cta-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.steps__cta-highlight {
  color: #f48120;
  background-color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  padding: 5px 20px;
  border-radius: 0;
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
}

.steps__cta-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 auto;
  max-width: 400px;
}

.steps__cta-button {
  display: inline-block;
  align-self: center;
  background-color: #7dc142;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  width: 100%;
  max-width: 340px;
  min-width: 240px;
  box-shadow: 0 12px 0 #5b8c30;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}

.steps__cta-button:hover {
  background-color: #5b8c30;
}

.steps__cta-button:active {
  transform: translateY(3px);
  box-shadow: 0 6px 0 #5b8c30;
}

.step-card {
  background-color: #ffffff;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  flex: 0 0 310px;
  max-width: 340px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.step-card__media {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.step-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.step-card__number {
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-shadow: 4px 0 0 #f48120;
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 28px 12px;
  line-height: 1.35;
}

.step-card__text {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin: 0 28px 32px;
  line-height: 1.6;
}

/* Reasons */

.reasons {
  background-color: #ffffff;
  padding: 120px 20px 0;
}

.reasons__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  text-align: center;
}

.reasons__title {
  font-size: 48px;
  font-weight: 800;
  color: #7dc142;
  line-height: 1.2;
  margin: 0;
}

.reasons__title-highlight {
  display: inline-block;
  background-color: #f48120;
  color: #ffffff;
  padding: 4px 14px;
}

.reasons__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.reason-card {
  background: #f9fafb;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 40px 32px;
  display: grid;
  grid-template-rows: minmax(140px, auto) auto 1fr;
  gap: 24px;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.reason-card:nth-child(1),
.reason-card:nth-child(3) {
  background: #f48120;
}

.reason-card:nth-child(2) {
  background: #7dc142;
}

.reason-card__image {
  width: 120px;
  height: auto;
  justify-self: center;
  align-self: center;
}

.reason-card__title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  width: 100%;
  margin-top: 10px;
}

.reason-card:nth-child(1) .reason-card__title,
.reason-card:nth-child(3) .reason-card__title,
.reason-card:nth-child(1) .reason-card__text,
.reason-card:nth-child(3) .reason-card__text {
  color: #ffffff;
}

.reason-card:nth-child(2) .reason-card__title,
.reason-card:nth-child(2) .reason-card__text {
  color: #ffffff;
}

.reason-card__text {
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

.reasons__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.reasons__cta-title {
  font-size: 40px;
  font-weight: 800;
  color: #f48120;
  margin: 0;
}

.reasons__cta-button {
  display: inline-block;
  align-self: center;
  background-color: #7dc142;
  color: #ffffff;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  width: 100%;
  max-width: 360px;
  min-width: 260px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  text-transform: uppercase;
}

.reasons__cta-button:hover {
  background-color: #5b8c30;
}

.reasons__cta-button:active {
  transform: translateY(3px);
}

/* Repair */

.repair {
  color: #ffffff;
  padding-inline: 20px;
  background-image: url("https://cdn.greatsoftwares.com.br/arquivos/paginas_editor/443515-c349e7dc5d692966cc27b41d2919fdde.png");
  background-size: cover;
  background-position: top;
  margin-top: 120px;
  height: 590px;
  position: relative;
}

.repair::after {
  content: "";
  display: block;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;   
  z-index: 1000;
}

.repair__container {
  max-width: 1240px;
  margin: 0 auto;
  overflow: visible;
  height: 100%;
}

.repair__card {
  border-radius: 32px;
  height: 100%;
  display: flex;
  align-items: start;
}

.repair__card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.repair__card-image {
  object-fit: cover;
  height: 752px;
  position: relative;
  top: -162px;
}

.repair__card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
}

.repair__card-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 40px;
  background-image: url("https://cdn.greatsoftwares.com.br/arquivos/paginas_editor/443515-a1c3609ea37caf3692260ad451016f4c.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.repair__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.repair__subtitle {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  margin-top: 10px;
  color: #ffffff;
}

.repair__details {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
}

.repair__details-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

.repair__details-text {
  font-size: 26px;
  margin: 0;
  font-weight: 600;
  margin-top: 8px;
}

.repair__details-highlight {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  margin-top: 20px;
}

.repair__button {
  background-color: #7dc142;
  color: #ffffff;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  max-width: 340px;
  min-width: 240px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-right: auto;
  text-transform: uppercase;
  margin-top: 20px;
}

.repair__button:hover {
  background-color: #5b8c30;
}

.repair__button:active {
  transform: translateY(3px);
}

/* Media queries */

@media (max-width: 1366px) {
  .hero {
    width: 100%;
    transform: translateX(0);
  }

  .hero__container {
    max-width: 1320px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    margin-top: 60px;
  }

  .hero__image {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero__content {
    width: 100%;
    max-width: 640px;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0 auto;
    padding: 52px 60px;
  }

  .hero__image {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle-line {
    font-size: 24px;
    padding: 4px 14px;
  }

  .hero__text {
    font-size: 15px;
  }

  .hero__button {
    padding: 16px 32px;
    font-size: 26px;
    max-width: 360px;
    min-width: 240px;
  }

  .steps__cards {
    flex-wrap: wrap;
  }
  .step-card {
    flex: 1 1 280px;
    max-width: 100%;
    margin: 10px 0;
  }

  .steps__cards .step-card:nth-child(3) .step-card__image {
    object-position: 50% 30%;
  }

  .steps__panel {
    background: none;
    box-shadow: none;
    margin: 50px 32px;
    height: auto;
    padding: 44px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .steps__cta {
    margin: 0 auto 0;
    flex-direction: column;
    gap: 40px;
  }

  .repair {
    margin-top: 240px;
    height: 100%;
  }

  .repair::after {
    height: 100px;
  }

  .repair__card {
    flex-direction: column;
    align-items: start;
    gap: 0;
    text-align: center;
  }

  .repair__card-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .repair__card-image {
    max-width: 100%;
    height: auto;
    top: -178px;
  }

  .repair__card-content {
    position: relative;
    top: -178px;
  }

  .repair__button {
    margin: 40px auto;
    width: 100%;
    max-width: 360px;
    min-width: 260px;
  }

  .repair__details {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 0;
  }

  .hero__image {
    max-width: 100%;
  }

  .hero__content {
    max-width: 425px;
    padding: 36px 20px;
    gap: 14px;
    text-align: center;
  }

  .hero__subtitle-line {
    font-size: 20px;
    padding: 4px 12px;
    text-align: center;
    margin: 0 auto;
  }

  .hero__text {
    font-size: 14px;
  }

  .hero__button {
    padding: 14px 28px;
    font-size: 22px;
    max-width: 500px;
    min-width: 260px;
    margin: 0 auto;
  }

  .steps {
    padding: 54px 14px;
  }

  .steps__title {
    font-size: 30px;
  }

  .steps__panel {
    padding: 36px 20px 36px;
    margin-top: 40px;
    height: auto;
    margin-inline: 0;
  }

  .steps__cards {
    margin-top: 16px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .step-card {
    max-width: 100%;
    flex: 1 1 100%;
    margin: 8px 0;
  }

  .step-card__title {
    font-size: 22px;
    margin: 20px 16px 10px;
  }

  .step-card__text {
    margin: 0 16px 20px;
  }

  .reasons__cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .repair {
    padding: 0;
  }

  .repair__details {
    padding: 26px 10px;
  }

  .repair__title {
    font-size: 36px;
  }

  .repair__subtitle {
    font-size: 22px;
  }

  .repair__card-container, .repair__card-content {
    margin-inline: 0;
    width: 100%;
    max-width: 100%;
  }

  .repair__card-overlay {
    padding: 26px 10px; 
  }

  .repair__card-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .hero__button {
    font-size: 14px;
    padding: 12px;
    width: fit-content;
    max-width: 100%;
    min-width: 100%;
  } 
  
  .steps__cta-button {
    font-size: 14px;
    padding: 12px;
    width: fit-content;
    max-width: 100%;
    min-width: 100%;
  }

  .reasons__cta-button {
    font-size: 16px;
    padding: 12px;
    width: fit-content;
    max-width: 100%;
    min-width: 100%;
  }

  .hero__container {
    padding-inline: 5px;
  }

  .hero__content {
    padding-inline: 10px;
  }

  .steps__panel{
    padding-inline: 0px;
  }

  .reasons {
    padding-inline: 10px;
  }
}

