
::-webkit-scrollbar-thumb:hover{
  background: #e09b00;
}

html{
  scrollbar-width: thin;
  scrollbar-color: #1c1e2b5b #fab117;
}

::selection{
  background-color: #fab117;
  color: #1c1e2b;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--color-dark);
  color: var(--color-white);
  overflow-x: hidden;
}

h1{
  font-size: var(--font-h1);
}

h2{
  font-size: var(--font-h2);
}

h3{
  font-size: var(--font-h3);
}

h4{
  font-size: var(--font-h4);
}

p{
  font-size: var(--font-p);
}


/* HERO */

.hero{
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 40px;
  background-color: var(--color-dark);
  max-width: 1440px;
  margin: 40px auto 0;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 90%;
}

.hero-content h1{
  font-size: clamp(3.5rem, 4.2vw, 4.6rem);
  margin-top: 20px;
  color: var(--color-white);
  width: 88%;
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-content p{
  max-width: 90%;
  color: var(--color-gray);
  font-size: var(--font-p);
  line-height: 1.7;
}

.hero-pill:hover{
  background-color: var(--color-white);
  color: var(--color-dark);
  cursor: pointer;
  box-shadow: 3px 10px var(--color-yellow);
  border: 1px solid var(--color-yellow    );
}

.pill-icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1;
}

.pill-1{
  top: 20%;
  left: 7%;
}

.pill-3{
  top: 22%;
  right: 6.5%;
}

.pill-5{
  bottom: 30%;
  left: 12%;
}

.pill-6{
  bottom: 23%;
  right: 25%;
}

.hero-pill{
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(9px, 0.9vw, 12px) clamp(14px, 1.4vw, 20px);
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark);
  animation: heroFloat 5s ease-in-out infinite;
}

.pill-2,
.pill-5{
  animation-delay: 0.6s;
}

.pill-3,
.pill-6{
  animation-delay: 1.1s;
}

.pill-4{
  animation-delay: 1.6s;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-cta{
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid var(--color-dark);
  transition: all 0.3s ease;
  box-shadow: 5px 10px var(--color-dark);
}

.hero-cta:hover{
  transform: translateY(-2px);
  box-shadow: none;
}

/* MÉTODO */

.metodo{
  width: 100%;
  height: auto;
  display: flex;
  padding-bottom: 120px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-dark);
  overflow-x: hidden;
}

.metodo-content{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  border: 1px solid #8b8fa313;
  gap: 10px;
  padding: 25px 25px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.metodo-head h2{
  font-size: var(--font-h2);
  color: var(--color-white);
  width: 50%;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.metodo-head h2 span{
  font-style: italic;
  font-weight: 400;
  color: var(--color-yellow);
}

.metodo-head{
  width: 90%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.metodo-head a{
  padding: 20px 50px;
  background-color: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  color: var(--color-dark);
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark);
}

.metodo-head a:hover{
  box-shadow: 3px 10px var(--color-yellow);
  border: 1px solid var(--color-yellow);
  transform: translateY(-3px);
}

.text-card{
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
  padding: 50px 50px;
  border: 1px solid #8b8fa313;
  border-radius: 15px;
  flex-direction: column;
  text-align: start;
  transition: all 0.3s ease;
}

.text-card:nth-child(1){
  background-color: var(--color-white);
}

.text-card:nth-child(1) h3{
  color: var(--color-dark);
}

.text-card:nth-child(1) ul li{
  color: var(--color-dark);
}

.text-card:nth-child(1):hover{
  box-shadow: 5px 15px var(--color-gray);
  transform: translateY(-5px);
  border: 1px solid var(--color-gray);
}

.text-card:hover{
  box-shadow: 5px 15px var(--color-yellow);
  transform: translateY(-5px);
  border: 1px solid var(--color-yellow);
}

.text-card h3{
  font-size: var(--font-h3);
  margin-bottom: 20px;
  color: var(--color-white);
  width: 40%;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.text-card p{
  font-size: var(--font-p);
  margin-bottom: 20px;
  color: var(--color-gray);
  width: 100%;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.text-card ul{
  margin-bottom: 50px;
  list-style-type: none;
  text-align: left;
  padding: 0;
}

.text-card ul li{
  border-bottom: 1px solid #8b8fa315;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.text-card ul li:hover{
  background-color: #8b8fa3;
  color: var(--color-dark);
}

/* MARCAS */

.secao-marcas-inspire{
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -100px;
  background: var(--color-dark);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

.headline-baloes{
  width: 100%;
  margin: 0 auto 92px;
  padding: 0 3vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 25px;
  transform: rotate(-2deg);
  position: relative;
  z-index: 3;
  max-width: 1440px;
}

.headline-baloes h4{
  align-items: center;
  justify-content: center;
  background: var(--color-white, #ffffff);
  color: var(--color-dark, #1c1e2b);
  border-radius: 999px;
  padding: 30px 45px;
  font-size: var(--font-h3);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  border: 1px solid var(--color-yellow);
  box-shadow: 9px 15px var(--color-yellow);
  margin: 0;
}

.caixa-marcas-inspire{
  width: 115vw;
  margin-left: -7.5vw;
  background: var(--color-yellow, #fab117);
  padding: 0 0;
  transform: rotate(-2deg);
  overflow: hidden;
  position: relative;
}

.caixa-marcas-inspire::before,
.caixa-marcas-inspire::after{
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.caixa-marcas-inspire::before{
  left: 0;
  background: linear-gradient(90deg, #fab117 0%, rgba(250, 177, 23, 0) 100%);
}

.caixa-marcas-inspire::after{
  right: 0;
  background: linear-gradient(270deg, #fab117 0%, rgba(250, 177, 23, 0) 100%);
}

.marquee-logos{
  overflow: hidden;
  background: var(--color-white);
}

.marquee-track{
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 28px;
  width: max-content;
  animation: carrosselLogos 100s linear infinite;
}

.logo-card{
  width: 120px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img{
  width: 100px;
  max-width: 80%;
  height: auto;
  display: block;
}

@keyframes carrosselLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* MATRÍCULAS */

.matriculas{
  background-color: var(--color-dark);
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 40px;
  z-index: 2;
}

.matriculas > div{
  width: 90%;
  max-width: 1440px;
}

.matriculas h2{
  font-size: var(--font-h2);
  width: 60%;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.matriculas p{
  color: var(--color-gray);
  font-size: var(--font-p);
  width: 50%;
}

.matriculas div{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.matriculas-destaque{
  font-style: italic;
  font-weight: 400;
  color: var(--color-yellow);
  font-size: var(--font-h3);
  margin: 0;
}

.btn-matriculas{
  padding: 25px 60px;
  background-color: var(--color-white);
  text-decoration: none;
  border-radius: 999px;
  display: inline-block;
  color: var(--color-dark);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 6px 15px var(--color-yellow);
  border: 1px solid var(--color-dark-2);
  transform: translateY(-6px);
  text-transform: uppercase;
}

.btn-matriculas:hover{
  border: 1px solid var(--color-dark);
  box-shadow: none;
  background-color: var(--color-yellow);
  color: var(--color-dark);
  transform: translateY(0);
}

/* CONTEÚDOS */

.conteudo-cta{
  width: 100%;
  padding-top: 80px;
  height: auto;
  padding-bottom: 120px;
}

.conteudo-card{
  background-color: var(--color-white);
  padding: 50px 50px;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  box-shadow: 10px 25px var(--color-yellow);
  width: 100%;
  border-radius: 15px;
  margin-top: 0px;
  height: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards ul a {
    text-decoration: none;
    color: var(--color-dark);
    margin: 5px;
}

.conteudo-card h2{
  font-size: var(--font-h2);
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 600;
  margin: 0 auto;
  width: 80%;
}

.conteudo-destaque{
  font-style: italic;
  font-weight: 400;
  color: var(--color-yellow);
  font-size: var(--font-h3);
  margin: 10px auto 24px;
  width: 80%;
  text-align: center;
}

.conteudo-card p{
  text-align: center;
  font-size: var(--font-p);
  color: var(--color-gray);
  margin: 0 auto;
}

.btn-conteudo{
  padding: 15px 50px;
  background-color: var(--color-yellow);
  text-decoration: none;
  border-radius: 999px;
  color: var(--color-dark);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--color-dark);
  box-shadow: 6px 15px var(--color-dark);
  transform: translateY(-6px);
  text-transform: uppercase;
}

.btn-conteudo:hover{
  box-shadow: 0px 0px var(--color-yellow);
  transform: translateY(0px);
  background-color: var(--color-white);
  border: 1px solid var(--color-dark);
}

.cards{
  width: 100%;
}

.arrow-circle-down{
  fill: var(--color-yellow);
  transition: all 0.6s ease;
}

.cards ul{
  width: 100%;
}

.cards ul li{
  display: flex;
  justify-content: start;
  gap: 20px;
  background-color: #e8e9ec2f;
  border-radius: 10px;
  list-style-type: none;
  padding: 20px 30px;
  border: 1px solid #1c1e2b0e;
  transition: all 0.3s ease;
}

.cards ul li:hover{
  background-color: var(--color-yellow);
  color: var(--color-dark);
  box-shadow: 5px 10px var(--color-dark);
  border: 1px solid var(--color-dark);
  transform: translateY(-6px);
}

.cards ul li:hover .arrow-circle-down{
  fill: var(--color-dark);
}

/* RODAPÉ */

footer{
  width: 100%;
  background: var(--color-light);
  border-top: 1px solid var(--color-gray);
  padding: 90px 0 40px;
  font-family: "Poppins", sans-serif;
}

.footer-top,
.footer-bottom{
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  margin-bottom: 54px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--color-gray);
}

.footer-brand-name{
  margin-bottom: 18px;
}

.footer-brand-name span{
  color: var(--color-dark);
}

.footer-logo{
  display: block;
  width: 100px;
  height: auto;
}

.footer-desc{
  margin: 0;
  max-width: 330px;
  color: var(--color-dark);
  font-size: var(--font-p);
  line-height: 1.7;
  font-weight: 500;
}

.footer-col-title{
  margin-bottom: 20px;
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-links{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.footer-links a{
  color: var(--color-dark);
  font-size: 0.88rem;
  line-height: 1.45;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover{
  color: #fab117;
  transform: translateX(3px);
}

.footer-address{
  margin: 0;
  color: var(--color-dark);
  font-size: var(--font-p);
  line-height: 1.7;
  font-weight: 400;
}

.footer-email{
  margin-top: 16px;
}

.footer-email a,
.footer-address a{
  color: var(--color-dark-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email a:hover,
.footer-address a:hover{
  color: var(--color-yellow);
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy{
  margin: 0;
  color: var(--color-dark);
  font-size: var(--font-p);
  line-height: 1.6;
  font-weight: 400;
}

/* =========================================================
   LAYOUT GLOBAL E BREAKPOINTS PADRONIZADOS
   1440px: desktop padrão
   1280px: notebook e desktop compacto
   1024px: notebook pequeno e tablet horizontal
   768px: tablet vertical e mobile
   450px: celulares pequenos
========================================================= */

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

.hero,
.metodo,
.secao-marcas-inspire,
.matriculas,
footer{
  width: 100%;
}

.hero{
  max-width: var(--layout-max);
  margin-inline: auto;
}

.hero-content{
  width: 100%;
  max-width: 1100px;
  padding-inline: var(--layout-gutter);
}

.metodo-head,
.metodo-content,
.headline-baloes,
.matriculas > div:first-child,
.conteudo-cta,
.footer-top,
.footer-bottom{
  width: calc(100% - (var(--layout-gutter) * 2));
  max-width: var(--layout-max);
  margin-inline: auto;
}

.metodo-content{
  align-items: stretch;
}

.text-card,
.conteudo-card,
.cards,
.cards ul,
.cards ul li{
  min-width: 0;
}

.text-card{
  justify-content: flex-start;
}

.text-card ul{
  margin-top: auto;
}

.conteudo-cta{
  padding-inline: 0;
}

.conteudo-card{
  width: 100%;
  max-width: none;
}

.cards{
  margin-top: 32px;
}

.cards ul{
  margin: 0;
  padding: 0;
}

.cards ul a{
  display: block;
  margin: 0 0 16px;
}

.cards ul a:last-child{
  margin-bottom: 0;
}

.cards ul li{
  align-items: center;
}

.cards ul li svg{
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: var(--color-yellow);
  transition: fill 0.3s ease;
}

.cards ul li:hover svg{
  fill: var(--color-dark);
}

.btn-matriculas,
.btn-conteudo,
.metodo-head a,
.hero-cta{
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.secao-marcas-inspire{
  margin-top: 0;
}

/* =========================================================
   1440PX — DESKTOP PADRÃO
========================================================= */

@media (max-width: 1440px){
  :root{
    --layout-gutter: clamp(32px, 4vw, 58px);
  }

  .hero{
    height: clamp(720px, 88vh, 880px);
  }

  .hero-content h1{
    width: min(88%, 930px);
    font-size: 56px;
  }

  .hero-content p{
    width: min(78%, 720px);
  }

  .pill-1{
    top: 28%;
    left: 9%;
  }

  .pill-3{
    top: 21%;
    right: 11%;
  }

  .pill-5{
    bottom: 28%;
    left: 16%;
  }

  .pill-6{
    bottom: 21%;
    right: 20%;
  }

  .metodo{
    padding-bottom: 110px;
  }

  .metodo-head h2{
    width: min(58%, 760px);
  }

  .metodo-content{
    gap: 14px;
    padding: 22px;
  }

  .text-card{
    padding: 40px 34px;
  }

  .headline-baloes{
    gap: 14px;
    margin-bottom: 72px;
  }

  .headline-baloes h4{
    padding: 24px 26px;
    font-size: 20px;
    box-shadow: 7px 11px var(--color-yellow);
  }

  .matriculas h2{
    width: min(68%, 850px);
  }

  .matriculas p{
    width: min(56%, 720px);
  }
}

/* =========================================================
   1280PX — NOTEBOOK E DESKTOP COMPACTO
========================================================= */

@media (max-width: 1280px){
  :root{
    --layout-gutter: clamp(28px, 3.6vw, 46px);
    --font-h1: 52px;
    --font-h2: 44px;
  }

  .hero{
    height: clamp(680px, 84vh, 820px);
    margin-top: 40px;
  }

  .hero-content{
    max-width: 960px;
  }

  .hero-content h1{
    width: 82%;
    font-size: var(--font-h1);
  }

  .hero-content p{
    width: 72%;
  }

  .hero-pill{
    font-size: 0.8rem;
  }

  .pill-1{
    top: 31%;
    left: 5%;
  }

  .pill-3{
    top: 23%;
    right: 7%;
  }

  .pill-5{
    bottom: 25%;
    left: 10%;
  }

  .pill-6{
    bottom: 19%;
    right: 14%;
  }

  .metodo-head{
    margin-bottom: 42px;
  }

  .metodo-head h2{
    width: 64%;
    font-size: var(--font-h2);
  }

  .metodo-head a{
    padding: 17px 34px;
    font-size: 1rem;
  }

  .metodo-content{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 20px;
  }

  .text-card{
    min-height: 440px;
    padding: 38px;
  }

  .text-card h3{
    width: 100%;
  }

  .headline-baloes{
    max-width: 1040px;
    flex-wrap: wrap;
    gap: 16px;
    transform: rotate(-1deg);
  }

  .headline-baloes h4{
    flex: 0 1 auto;
    padding: 22px 30px;
  }

  .secao-marcas-inspire{
    padding-block: 90px;
  }

  .matriculas h2{
    width: 74%;
  }

  .matriculas p{
    width: 62%;
  }

  .conteudo-cta{
    padding-top: 72px;
    padding-bottom: 110px;
  }

  .footer-top{
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 42px;
  }

  .footer-top > div:first-child{
    grid-column: span 3;
  }

  .footer-desc{
    max-width: 520px;
  }
}

/* =========================================================
   1024PX — NOTEBOOK PEQUENO E TABLET HORIZONTAL
========================================================= */

@media (max-width: 1024px){
  :root{
    --layout-gutter: clamp(24px, 4vw, 38px);
    --font-h1: 48px;
    --font-h2: 40px;
  }

  .hero{
    height: clamp(650px, 80vh, 760px);
  }

  .hero-content{
    max-width: 820px;
    padding-bottom: 20px;
  }

  .hero-content h1{
    width: 86%;
    font-size: var(--font-h1);
  }

  .hero-content p{
    width: 74%;
  }

  .hero-pill{
    padding: 9px 14px;
    font-size: 0.76rem;
  }

  .pill-1{
    top: 27%;
    left: 4%;
  }

  .pill-3{
    top: 18%;
    right: 5%;
  }

  .pill-5{
    bottom: 20%;
    left: 6%;
  }

  .pill-6{
    bottom: 13%;
    right: 9%;
  }

  .metodo{
    padding-bottom: 96px;
  }

  .metodo-head{
    align-items: flex-end;
    gap: 28px;
  }

  .metodo-head h2{
    width: 68%;
    font-size: var(--font-h2);
  }

  .metodo-head a{
    flex: 0 0 auto;
    padding: 15px 28px;
  }

  .metodo-content{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
  }

  .text-card{
    min-height: 420px;
    padding: 32px 28px;
  }

  .text-card p{
    line-height: 1.55;
  }

  .text-card ul{
    margin-bottom: 0;
  }

  .headline-baloes{
    max-width: 850px;
    gap: 13px;
    margin-bottom: 58px;
  }

  .headline-baloes h4{
    padding: 19px 24px;
    font-size: 18px;
    box-shadow: 6px 9px var(--color-yellow);
  }

  .caixa-marcas-inspire::before,
  .caixa-marcas-inspire::after{
    width: 100px;
  }

  .matriculas{
    gap: 34px;
  }

  .matriculas h2{
    width: 82%;
    font-size: var(--font-h2);
  }

  .matriculas p{
    width: 70%;
  }

  .conteudo-card{
    padding: 44px 38px;
    box-shadow: 8px 18px var(--color-yellow);
  }

  .conteudo-card h2{
    width: 100%;
    font-size: var(--font-h2);
  }

  .conteudo-destaque{
    width: 100%;
  }

  .footer-top{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 30px;
  }

  .footer-top > div:first-child{
    grid-column: span 2;
  }
}

/* =========================================================
   768PX — TABLET VERTICAL E MOBILE
========================================================= */

@media (max-width: 768px){
  :root{
    --layout-gutter: clamp(20px, 5vw, 32px);
    --font-h1: 42px;
    --font-h2: 36px;
    --font-h3: 22px;
  }

  .hero{
    min-height: auto;
    height: auto;
    margin-top: 60px;
    padding: 92px var(--layout-gutter) 72px;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
  }

  .hero-content{
    order: 1;
    flex: 0 0 100%;
    max-width: 680px;
    padding: 0;
    margin-bottom: 28px;
  }

  .hero-content h1{
    width: 100%;
    margin: 0;
    font-size: var(--font-h1);
    line-height: 0.98;
  }

  .hero-content p{
    width: 100%;
    max-width: 580px;
    margin: 24px auto 0;
    line-height: 1.65;
  }

  .hero-pill{
    position: static;
    order: 2;
    animation: none;
    transform: none;
    padding: 10px 15px;
    font-size: 0.78rem;
  }

  .hero-pill:hover{
    transform: translateY(-2px);
  }

  .pill-icon{
    width: 18px;
    height: 18px;
    font-size: 0.82rem;
  }

  .metodo{
    padding-bottom: 82px;
  }

  .metodo-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 36px;
  }

  .metodo-head h2{
    width: 100%;
    margin: 0;
    font-size: var(--font-h2);
  }

  .metodo-head a{
    width: 100%;
    padding: 16px 24px;
  }

  .metodo-content{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .text-card{
    min-height: auto;
    padding: 32px 28px;
  }

  .text-card h3{
    font-size: var(--font-h3);
  }

  .text-card ul{
    margin-bottom: 0;
  }

  .secao-marcas-inspire{
    padding-block: 78px;
  }

  .headline-baloes{
    width: calc(100% - (var(--layout-gutter) * 2));
    max-width: 660px;
    margin-bottom: 42px;
    padding: 0;
    gap: 10px;
    transform: rotate(-1deg);
  }

  .headline-baloes h4{
    flex: 0 1 auto;
    padding: 16px 20px;
    font-size: 16px;
    box-shadow: 5px 7px var(--color-yellow);
  }

  .caixa-marcas-inspire{
    width: 120vw;
    margin-left: -10vw;
    transform: rotate(-1deg);
  }

  .caixa-marcas-inspire::before,
  .caixa-marcas-inspire::after{
    width: 70px;
  }

  .marquee-track{
    gap: 22px;
    padding-block: 24px;
  }

  .logo-card{
    width: 100px;
  }

  .logo-card img{
    width: 86px;
  }

  .matriculas{
    gap: 30px;
    padding-top: 24px;
  }

  .matriculas > div:first-child{
    width: calc(100% - (var(--layout-gutter) * 2));
  }

  .matriculas h2{
    width: 100%;
    font-size: var(--font-h2);
  }

  .matriculas p{
    width: min(100%, 620px);
    line-height: 1.65;
  }

  .btn-matriculas{
    width: calc(100% - (var(--layout-gutter) * 2));
    padding: 18px 24px;
    font-size: 1rem;
  }

  .conteudo-cta{
    width: calc(100% - (var(--layout-gutter) * 2));
    padding-top: 64px;
    padding-bottom: 92px;
  }

  .conteudo-card{
    padding: 38px 28px;
    box-shadow: 7px 14px var(--color-yellow);
  }

  .conteudo-card h2{
    width: 100%;
    font-size: var(--font-h2);
  }

  .conteudo-destaque{
    width: 100%;
    font-size: var(--font-h3);
  }

  .conteudo-card p{
    max-width: 600px;
    line-height: 1.65;
  }

  .cards ul li{
    padding: 17px 20px;
    gap: 14px;
  }

  .btn-conteudo{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  footer{
    padding: 72px 0 34px;
  }

  .footer-top{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 26px;
    margin-bottom: 42px;
    padding-bottom: 42px;
  }

  .footer-top > div:first-child{
    grid-column: span 2;
  }

  .footer-bottom{
    align-items: flex-start;
  }
}

/* =========================================================
   450PX — CELULARES PEQUENOS
========================================================= */

@media (max-width: 450px){
  :root{
    --layout-gutter: 18px;
    --font-h1: 36px;
    --font-h2: 32px;
    --font-h3: 21px;
    --font-p: 15px;
  }

  .hero{
    margin-top: 60px;
    padding: 72px var(--layout-gutter) 58px;
    gap: 8px;
  }

  .hero-content{
    margin-bottom: 24px;
  }

  .hero-content h1{
    font-size: 2.8em;
    letter-spacing: -0.05em;
  }

  .hero-content p{
    margin-top: 20px;
    font-size: var(--font-p);
  }

  .hero-pill{
    width: calc(50% - 4px);
    min-height: 42px;
    justify-content: center;
    padding: 9px 10px;
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  .metodo{
    padding-bottom: 66px;
  }

  .metodo-head{
    width: calc(100% - 36px);
    margin-bottom: 30px;
    gap: 22px;
  }

  .metodo-head h2{
    font-size: var(--font-h2);
    line-height: 1.08;
  }

  .metodo-content{
    width: calc(100% - 36px);
    padding: 0;
    gap: 16px;
    border: 0;
    background: transparent;
  }

  .text-card{
    padding: 28px 22px;
    border-radius: 14px;
  }

  .text-card h3{
    margin-bottom: 16px;
  }

  .text-card p{
    margin-bottom: 18px;
    font-size: var(--font-p);
  }

  .text-card ul li{
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .secao-marcas-inspire{
    padding-block: 62px;
  }

  .headline-baloes{
    width: calc(100% - 36px);
    margin-bottom: 34px;
    gap: 8px;
    transform: none;
  }

  .headline-baloes h4{
    flex: 1 1 calc(50% - 4px);
    padding: 14px 10px;
    font-size: 14px;
    text-align: center;
    box-shadow: 4px 6px var(--color-yellow);
  }

  .caixa-marcas-inspire{
    width: 116vw;
    margin-left: -8vw;
    transform: none;
  }

  .caixa-marcas-inspire::before,
  .caixa-marcas-inspire::after{
    width: 42px;
  }

  .marquee-track{
    gap: 16px;
    padding-block: 20px;
  }

  .logo-card{
    width: 86px;
  }

  .logo-card img{
    width: 74px;
  }

  .matriculas{
    gap: 26px;
    padding-top: 18px;
  }

  .matriculas > div:first-child{
    width: calc(100% - 36px);
  }

  .matriculas h2{
    font-size: var(--font-h2);
  }

  .matriculas p{
    width: 100%;
    font-size: var(--font-p);
  }

  .btn-matriculas{
    width: calc(100% - 36px);
    padding: 17px 20px;
    font-size: 0.92rem;
    box-shadow: 5px 10px var(--color-yellow);
  }

  .conteudo-cta{
    width: calc(100% - 36px);
    padding-top: 54px;
    padding-bottom: 76px;
  }

  .conteudo-card{
    padding: 32px 18px;
    border-radius: 12px;
    box-shadow: 5px 10px var(--color-yellow);
  }

  .conteudo-card h2{
    font-size: var(--font-h2);
  }

  .conteudo-destaque{
    margin-bottom: 20px;
    font-size: var(--font-h3);
  }

  .conteudo-card p{
    font-size: var(--font-p);
  }

  .cards{
    margin-top: 26px;
  }

  .cards ul li{
    padding: 14px 13px;
    gap: 11px;
    font-size: 0.9rem;
  }

  .cards ul li svg{
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .btn-conteudo{
    font-size: 0.95rem;
    box-shadow: 5px 9px var(--color-dark);
  }

  footer{
    padding: 62px 0 30px;
  }

  .footer-top,
  .footer-bottom{
    width: calc(100% - 36px);
  }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .footer-top > div:first-child{
    grid-column: auto;
  }

  .footer-logo{
    width: 96px;
  }

  .footer-desc,
  .footer-address,
  .footer-copy{
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
  }

  .footer-copy{
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}