/* ==========================================================
   SKYFIT Casa Forte — replicação fiel do site oficial
   ========================================================== */

:root {
  --navy:        #141436;
  --red:         #BB133E;
  --green:       #4CAF50;
  --green-dark:  #3CB221;
  --green-border:#002147;
  --yellow:      #FFC107;
  --white:       #FFFFFF;
  --light-yellow:#FFFFE0;
  --tag-border:  #5981e3;
  --bg-image:    url("https://static-media.hotmart.com/T2Jav6qxaoYL7tfjs0bRb_SZjmw=/filters:quality(100)/klickart-prod/uploads/media/file/9873153/bannerteste1.png");
  --max-width:   1200px;
}

@keyframes pulsate--pulsate-bck {
  0%   { transform: scale(1);   }
  50%  { transform: scale(0.9); }
  100% { transform: scale(1);   }
}

/* RESET ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Roboto, sans-serif;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; line-height: 1.5; }

/* HEADER --------------------------------------------------- */
.site-header {
  background: var(--navy);
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: flex-start;
  padding: 0 20px;
}
.logo-link {
  display: inline-flex;
  border: 0;
  outline: 0;
}
.logo-link:focus { outline: none; }
.logo-link:focus-visible {
  outline: 2px solid var(--tag-border);
  outline-offset: 4px;
  border-radius: 4px;
}
.logo {
  width: 191px;
  height: 81px;
  object-fit: contain;
  border: 0;
}
@media (max-width: 833px) {
  .site-header { padding: 10px 0; }
  .header-inner { justify-content: center; }
  .logo { width: 164px; height: 42px; }
}

/* HERO ----------------------------------------------------- */
.hero {
  background: var(--bg-image) center / cover no-repeat;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text {
  width: 100%;
  max-width: 644px;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  padding: 8px 10px;
  line-height: 1.5;
}
.hero-text:nth-of-type(2) { padding: 8px 10px 24px; }
.brand-red    { color: var(--red);    font-weight: bold; }
.brand-yellow { color: var(--yellow); font-weight: bold; }

/* TAG ENDEREÇO --------------------------------------------- */
.address-tag-section {
  background: var(--navy);
  padding: 30px 0 20px;
  display: flex;
  justify-content: center;
}
.address-tag {
  width: 255px;
  height: 94px;
  object-fit: contain;
  border: 2px solid var(--tag-border);
  border-radius: 10px;
}

/* COMO VAI FUNCIONAR -------------------------------------- */
.section-steps {
  background: var(--navy);
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title-steps {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 34px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  padding: 15px 10px 10px;
}
.steps-grid {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
}
.step-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 280px;
  background: var(--red);
  border-radius: 10px;
  padding: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 10px;
}
.step-card h3 {
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  text-align: left;
  padding: 5px 10px 10px;
}
.step-card p {
  width: 100%;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  color: var(--white);
  text-align: left;
  padding: 10px;
  line-height: 1.5;
}
.step-card .step-desire { color: var(--light-yellow); }

@media (max-width: 1023px) {
  .steps-grid { flex-wrap: wrap; gap: 16px; padding: 16px; }
  .step-card { flex: 1 1 calc(50% - 16px); max-width: 320px; }
}
@media (max-width: 833px) {
  .steps-grid { flex-direction: column; flex-wrap: nowrap; align-items: center; gap: 0; padding: 10px 0; }
  .step-card { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 10px 20px; padding: 10px; }
  .step-card:first-child { padding: 20px; }
  .step-card p { text-align: justify; }
}

/* CTA WRAP (botão verde central) -------------------------- */
.cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0 40px;
}
@media (max-width: 833px) {
  .cta-wrap { padding: 20px 0 0; }
  .cta-wrap-bottom { padding: 10px 0 20px; }
}

/* BOTÕES --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  transform-origin: center;
}
.pulsate {
  animation: pulsate--pulsate-bck 1000ms linear infinite both;
}

/* Botão do hero (Roboto, max-width 400px) */
.btn-hero {
  width: 100%;
  max-width: 400px;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green-border);
  border-radius: 13px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  padding: 12px 16px;
  margin: 0 0 20px;
}
@media (max-width: 833px) {
  .btn-hero { max-width: 242px; font-size: 20px; }
}

/* Botão CTA depois dos cards e do FAQ (Open Sans, full width) */
.btn-cta {
  width: 100%;
  max-width: 400px;
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green-border);
  border-radius: 13px;
  font-family: "Open Sans", sans-serif;
  font-size: 23px;
  padding: 12px 16px;
  margin: 0;
}
@media (max-width: 833px) {
  .btn-cta { max-width: 282px; font-size: 14px; }
}

/* Botão DÚVIDAS — verde mais escuro, sem pulsate */
.btn-duvidas {
  width: 100%;
  max-width: 400px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 19px;
  padding: 15px 16px;
  margin: 30px 0;
}
.btn-duvidas:hover { background: var(--red); }
@media (max-width: 833px) {
  .btn-duvidas { max-width: 350px; font-size: 17px; padding: 15px 10px; margin: 10px 10px 15px; }
}

/* POR QUE ESCOLHER ---------------------------------------- */
.section-why {
  background: var(--bg-image) center / cover no-repeat;
  padding: 0;
  display: flex;
  justify-content: center;
}
.why-content {
  width: 100%;
  max-width: var(--max-width);
  padding: 20px 0 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-title {
  width: 100%;
  max-width: 80%;
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-weight: bold;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  padding: 10px 10px 0;
}
.why-title em { font-style: italic; }
.why-underline {
  width: 100%;
  max-width: 545px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  text-align: left;
  padding: 0 10px 10px;
  line-height: 1;
  letter-spacing: 0;
}
.why-list {
  width: 100%;
  max-width: 545px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--white);
  text-align: justify;
  padding: 10px;
  line-height: 1.5;
}
.why-list p { margin: 0; }
.why-list br { line-height: 1.5; }

@media (max-width: 833px) {
  .why-content { padding: 20px 20px 15px; }
  .why-title { max-width: 100%; font-size: 39px; text-align: left; padding: 10px 10px 0; }
  .why-underline { padding: 2px 10px 10px; }
  .why-list { text-align: left; }
}

/* FAQ ------------------------------------------------------ */
.section-faq {
  background: var(--navy);
  padding: 12px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-title {
  width: 100%;
  font-family: Raleway, sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
  line-height: 1;
  padding: 10px;
}
.faq-grid {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
}
.faq-row {
  display: flex;
  flex-direction: row;
}
.faq-item {
  flex: 1;
  padding: 20px 30px 20px 50px;
  display: flex;
  flex-direction: column;
}
.faq-item.right {
  padding: 20px 50px 20px 30px;
}
.faq-item h3 {
  width: 100%;
  max-width: 85%;
  font-family: Raleway, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
  text-align: left;
  padding: 10px;
  line-height: 1;
}
.faq-item p {
  font-family: Raleway, sans-serif;
  font-size: 16px;
  color: var(--white);
  text-align: left;
  padding: 10px;
  line-height: 1.5;
}

@media (max-width: 833px) {
  .section-faq { padding: 10px 20px; }
  .faq-title { font-size: 32px; }
  .faq-row { flex-direction: column; }
  .faq-item, .faq-item.right { padding: 15px 30px; }
  .faq-item h3 { font-size: 18px; max-width: 100%; }
  .faq-item p { font-size: 14px; }
}

/* FOOTER --------------------------------------------------- */
.site-footer {
  background: var(--white);
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.footer-logo {
  width: 262px;
  height: 135px;
  object-fit: contain;
}
@media (max-width: 833px) {
  .site-footer { padding: 0; }
}
