
/* =========================================================
ONTIME LOJA
CSS PRINCIPAL
========================================================= */

:root {
--ontime-red: #ffffff;
--ontime-red-dark: #8f1010;
--ontime-red-light: #fdf0f0;

```
--text: #202124;
--text-light: #666;
--muted: #888;

--white: #fff;
--bg: #ffffff;

--border: #e8e8e8;

--shadow-sm: 0 4px 14px rgba(0,0,0,.06);
--shadow-md: 0 10px 30px rgba(0,0,0,.10);
--shadow-lg: 0 18px 45px rgba(0,0,0,.14);

--radius: 16px;
--radius-sm: 10px;
```

}

/* =========================================================
RESET
========================================================= */

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
margin: 0;
padding: 0;
width: 100%;
max-width: 100%;
overflow-x: hidden;
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
width: 100%;
max-width: 100%;
overflow-x: hidden;

```
font-family: 'Montserrat', Arial, sans-serif;

background: var(--bg);
color: var(--text);

line-height: 1.5;

-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
```

}

img {
max-width: 100%;
}

button,
input,
textarea,
select {
font-family: inherit;
}

/* =========================================================
MENU PRINCIPAL
========================================================= */

.topnav {

```
width: 100%;

display: flex;
align-items: center;
justify-content: flex-start;

gap: 42px;

padding: 14px 28px;

background: rgba(255,255,255,.97);

border-bottom: 1px solid rgba(0,0,0,.06);

box-shadow: 0 3px 16px rgba(0,0,0,.06);

position: sticky;
top: 0;

z-index: 1000;

font-family: 'Montserrat', sans-serif;

backdrop-filter: blur(10px);
```

}

/* =========================================================
LOGO
========================================================= */

.topnav .logo {
display: flex;
align-items: center;
flex-shrink: 0;
}

.topnav .logo img {

```
height: 50px;
width: auto;

display: block;

object-fit: contain;

transition: transform .25s ease;
```

}

.topnav .logo:hover img {
transform: scale(1.03);
}

/* =========================================================
MENU
========================================================= */

.topnav .menu {

```
display: flex;
align-items: center;

gap: 28px;

margin: 0;
padding: 0;
```

}

.topnav .menu a {

```
position: relative;

display: inline-flex;
align-items: center;

min-height: 40px;

padding: 5px 0;

color: #333;

font-size: .95rem;
font-weight: 500;

text-decoration: none;

transition:
    color .25s ease,
    font-weight .25s ease;
```

}

.topnav .menu a::after {

```
content: "";

position: absolute;

left: 0;
bottom: 0;

width: 0;
height: 2px;

background: var(--ontime-red);

transition: width .25s ease;
```

}

.topnav .menu a:hover {

```
color: var(--ontime-red);

font-weight: 700;
```

}

.topnav .menu a:hover::after {
width: 100%;
}

/* =========================================================
BANNER - CARROSSEL INFINITO
========================================================= */

.banner-container {

```
position: relative;

width: 100vw;

max-width: 100vw;

height: clamp(360px, 43vw, 620px);

margin-left: 50%;
transform: translateX(-50%);

margin-bottom: 0;

overflow: hidden;

background: #111;

border-radius: 0;

isolation: isolate;
```

}

/*
Caso o HTML utilize uma trilha de slides,
este bloco permite o movimento contínuo.
*/

.banner-track {

```
display: flex;

width: 100%;
height: 100%;

transition: transform .7s cubic-bezier(.4,0,.2,1);

will-change: transform;
```

}

.banner-slide {

```
position: relative;

flex: 0 0 100%;

width: 100%;
height: 100%;

overflow: hidden;
```

}

.banner-slide img {

```
width: 100%;
height: 100%;

display: block;

object-fit: cover;

object-position: center;

user-select: none;

-webkit-user-drag: none;

transition: transform 7s ease;
```

}

/*
Zoom suave no banner ativo.
*/

.banner-slide.active img {
transform: scale(1.04);
}

/* =========================================================
BANNER ORIGINAL
Compatibilidade caso exista apenas .banner-container img
========================================================= */

.banner-container > img {

```
width: 100%;
height: 100%;

display: block;

object-fit: cover;

object-position: center;

user-select: none;

-webkit-user-drag: none;
```

}

/* =========================================================
SOBREPOSIÇÃO DO BANNER
========================================================= */

.banner-overlay {

```
position: absolute;

inset: 0;

width: 100%;
height: 100%;

background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.28) 45%,
        rgba(0,0,0,.08) 100%
    );

z-index: 2;

pointer-events: none;
```

}

/* =========================================================
TEXTO DO BANNER
========================================================= */

.banner-text {

```
position: absolute;

top: 50%;
left: 50%;

transform: translate(-50%, -50%);

width: min(1100px, 90%);

text-align: center;

color: #fff;

padding: 20px;

z-index: 5;

pointer-events: none;
```

}

.banner-text h1 {

```
margin: 0 0 16px;

font-size: clamp(2rem, 4vw, 3.7rem);

line-height: 1.08;

font-weight: 800;

letter-spacing: -.03em;

color: #fff;

text-shadow:
    0 3px 12px rgba(0,0,0,.45),
    0 8px 25px rgba(0,0,0,.25);
```

}

.banner-text p {

```
margin: 0 auto;

max-width: 800px;

font-size: clamp(1rem, 1.8vw, 1.35rem);

line-height: 1.55;

color: #fff;

text-shadow: 0 2px 8px rgba(0,0,0,.65);
```

}

.banner-text .btn-banner {

```
pointer-events: auto;

display: inline-flex;

align-items: center;
justify-content: center;

min-height: 48px;

padding: 12px 28px;

margin-top: 25px;

border-radius: 999px;

background: var(--ontime-red);

color: #fff;

text-decoration: none;

font-size: .95rem;
font-weight: 700;

box-shadow: 0 8px 24px rgba(0,0,0,.22);

transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
```

}

.banner-text .btn-banner:hover {

```
background: var(--ontime-red-dark);

transform: translateY(-3px);

box-shadow: 0 12px 30px rgba(0,0,0,.28);
```

}

/* =========================================================
CONTROLES DO BANNER
========================================================= */

.banner-arrow {

```
position: absolute;

top: 50%;

transform: translateY(-50%);

width: 48px;
height: 48px;

border: 0;

border-radius: 50%;

background: rgba(0,0,0,.35);

color: #fff;

display: flex;
align-items: center;
justify-content: center;

cursor: pointer;

z-index: 10;

font-size: 18px;

transition:
    background .25s ease,
    transform .25s ease;
```

}

.banner-arrow:hover {

```
background: var(--ontime-red);

transform: translateY(-50%) scale(1.06);
```

}

.banner-arrow.prev {
left: 22px;
}

.banner-arrow.next {
right: 22px;
}

/* =========================================================
INDICADORES DO BANNER
========================================================= */

.banner-dots {

```
position: absolute;

left: 50%;
bottom: 20px;

transform: translateX(-50%);

display: flex;
align-items: center;

gap: 8px;

z-index: 15;
```

}

.banner-dot {

```
width: 9px;
height: 9px;

padding: 0;

border: 0;

border-radius: 50%;

background: rgba(255,255,255,.55);

cursor: pointer;

transition:
    width .25s ease,
    background .25s ease;
```

}

.banner-dot.active {

```
width: 26px;

border-radius: 20px;

background: #fff;
```

}

/* =========================================================
BUSCA
========================================================= */

nav {

```
width: 100%;

padding: 20px;

background: #fff;

border-bottom: 1px solid var(--border);

box-shadow: 0 3px 12px rgba(0,0,0,.04);

text-align: center;
```

}

nav input {

```
width: min(92%, 560px);

min-height: 48px;

padding: 12px 20px;

border: 1px solid #ddd;

border-radius: 999px;

outline: none;

background: #fafafa;

color: #333;

font-size: .95rem;

box-shadow: inset 0 1px 2px rgba(0,0,0,.02);

transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
```

}

nav input::placeholder {
color: #999;
}

nav input:focus {

```
background: #fff;

border-color: var(--ontime-red);

box-shadow:
    0 0 0 4px rgba(180,24,24,.08);
```

}

/* =========================================================
CATEGORIAS
========================================================= */

.categorias {

```
width: 100%;

display: flex;

flex-wrap: wrap;

justify-content: center;
align-items: center;

gap: 10px;

padding: 20px 20px 5px;

margin: 0;
```

}

.categoria {

```
display: inline-flex;

align-items: center;
justify-content: center;

gap: 8px;

min-height: 42px;

padding: 9px 17px;

background: #fff;

border: 1px solid var(--border);

border-radius: 999px;

box-shadow: var(--shadow-sm);

cursor: pointer;

font-size: .86rem;

font-weight: 600;

color: #444;

transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
```

}

.categoria:hover {

```
color: #fff;

background: var(--ontime-red);

border-color: var(--ontime-red);

transform: translateY(-2px);

box-shadow: 0 7px 18px rgba(180,24,24,.18);
```

}

.categoria.active {

```
color: #fff;

background: var(--ontime-red);

border-color: var(--ontime-red);

box-shadow: 0 7px 18px rgba(180,24,24,.20);
```

}

.categoria i {

```
color: var(--ontime-red);

font-size: 1rem;

transition: color .25s ease;
```

}

.categoria:hover i,
.categoria.active i {
color: #fff;
}

/* =========================================================
CURSOS
========================================================= */

.container {

```
width: 100%;

max-width: 1800px;

margin: 0 auto;

padding: 30px 24px 55px;

display: grid;

grid-template-columns:
    repeat(
        auto-fit,
        minmax(300px, 1fr)
    );

gap: 28px;

align-items: stretch;
```

}

/* =========================================================
CARD
========================================================= */

.card {

```
min-width: 0;

background: #fff;

border: 1px solid rgba(0,0,0,.05);

border-radius: var(--radius);

overflow: hidden;

box-shadow: var(--shadow-sm);

display: flex;

flex-direction: column;

cursor: pointer;

min-height: 500px;

transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
```

}

.card:hover {

```
transform: translateY(-7px);

border-color: rgba(180,24,24,.10);

box-shadow: var(--shadow-lg);
```

}

/* =========================================================
IMAGEM DO CARD
========================================================= */

.card img {

```
width: 100% !important;

height: 275px !important;

display: block !important;

object-fit: contain !important;

background: #fff !important;

padding: 8px;

transition: transform .35s ease !important;
```

}

.card:hover img {

```
transform: scale(1.025);
```

}

/* =========================================================
CORPO
========================================================= */

.card-body {

```
flex: 1;

display: flex;

flex-direction: column;

padding: 18px 18px 8px;
```

}

.card-body h3 {

```
margin: 0 0 8px;

color: #151515;

font-size: 1.08rem;

line-height: 1.3;

font-weight: 750;
```

}

.card-body p {

```
margin: 0;

color: #666;

font-size: .87rem;

line-height: 1.55;
```

}

/* =========================================================
RODAPÉ CARD
========================================================= */

.card-footer {

```
display: flex;

flex-direction: column;

gap: 7px;

padding: 8px 18px 18px;
```

}

.rating {

```
color: #f4b400;

font-size: .9rem;

letter-spacing: 1px;
```

}

.students {

```
color: #777;

font-size: .8rem;
```

}

.price {

```
color: var(--ontime-red);

font-size: 1.15rem;

font-weight: 800;

margin-top: 2px;
```

}

/* =========================================================
BOTÃO CARD
========================================================= */

.btn-card {

```
width: 100%;

display: inline-flex;

align-items: center;
justify-content: center;

min-height: 44px;

margin-top: 8px;

padding: 10px 15px;

border-radius: 999px;

background: var(--ontime-red);

color: #fff;

text-decoration: none;

font-size: .88rem;

font-weight: 700;

box-shadow: 0 6px 16px rgba(180,24,24,.16);

transition:
    transform .25s ease,
    background .25s ease,
    box-shadow .25s ease;
```

}

.btn-card:hover {

```
background: var(--ontime-red-dark);

color: #fff;

transform: translateY(-2px);

box-shadow: 0 9px 22px rgba(180,24,24,.23);
```

}

/* =========================================================
FAIXA EXPLORAR
========================================================= */

.faixa-explorar {

```
width: 100%;

background: #fff;

color: #000;

padding: 75px 25px;

border-top: 1px solid var(--border);
```

}

.faixa-explorar-container {

```
width: 100%;

max-width: 1300px;

margin: auto;

display: grid;

grid-template-columns:
    repeat(
        auto-fit,
        minmax(220px,1fr)
    );

gap: 45px;
```

}

.faixa-explorar-col h3 {

```
display: flex;

align-items: center;

gap: 10px;

margin: 0 0 13px;

color: #111;

font-size: 1.15rem;

font-weight: 750;
```

}

.faixa-explorar-col i {

```
color: var(--ontime-red);

font-size: 1.3rem;
```

}

.faixa-explorar-col p {

```
margin: 0;

color: #555;

font-size: .92rem;

line-height: 1.7;
```

}

.explorar-texto {

```
display: inline-flex;

margin-top: 13px;

color: var(--ontime-red);

font-weight: 700;

text-decoration: none;

transition: color .2s ease;
```

}

.explorar-texto:hover {

```
color: var(--ontime-red-dark);

text-decoration: underline;
```

}

/* =========================================================
DEPOIMENTOS
========================================================= */

.depoimentos {

```
width: 100%;

padding: 90px 25px;

background: #f7f5f2;

overflow: hidden;
```

}

.depoimentos-header {

```
text-align: center;

margin-bottom: 50px;
```

}

.depoimentos-header h2 {

```
margin: 0 0 10px;

color: #161616;

font-size: clamp(1.8rem, 3vw, 2.4rem);

font-weight: 800;
```

}

.depoimentos-header p {

```
margin: 0;

color: #666;

font-size: 1rem;
```

}

.depoimentos-wrapper {

```
position: relative;

width: 100%;

max-width: 1300px;

margin: auto;
```

}

.depoimentos-carousel {

```
display: flex;

gap: 30px;

overflow-x: auto;

scroll-behavior: smooth;

padding: 10px 5px 20px;

scrollbar-width: none;

overscroll-behavior-x: contain;
```

}

.depoimentos-carousel::-webkit-scrollbar {
display: none;
}

/* =========================================================
CARD DEPOIMENTO
========================================================= */

.depoimento-card {

```
flex: 0 0 340px;

background: #fff;

border-radius: 18px;

overflow: hidden;

box-shadow: 0 8px 25px rgba(0,0,0,.07);

transition:
    transform .3s ease,
    box-shadow .3s ease;
```

}

.depoimento-card:hover {

```
transform: translateY(-7px);

box-shadow: 0 18px 45px rgba(0,0,0,.14);
```

}

/* =========================================================
THUMB
========================================================= */

.thumb {

```
position: relative;

width: 100%;

aspect-ratio: 16 / 9;

background: #000;

overflow: hidden;
```

}

.thumb img {

```
position: absolute;

inset: 0;

width: 100%;
height: 100%;

object-fit: cover;

transition: transform .4s ease;
```

}

.depoimento-card:hover .thumb:not(.active) img {

```
transform: scale(1.05);
```

}

/* =========================================================
VIDEO
========================================================= */

.video-frame {

```
position: absolute;

inset: 0;

width: 100%;
height: 100%;

display: none;
```

}

.video-frame iframe {

```
position: absolute;

inset: 0;

width: 100%;
height: 100%;

border: 0;
```

}

.thumb.active .video-frame {
display: block;
}

.thumb.active img,
.thumb.active .play {
display: none;
}

/* =========================================================
PLAY
========================================================= */

.play {

```
position: absolute;

top: 50%;
left: 50%;

transform: translate(-50%, -50%);

width: 68px;
height: 68px;

border: 0;

border-radius: 50%;

background: var(--ontime-red);

color: #fff;

font-size: 22px;

display: flex;
align-items: center;
justify-content: center;

cursor: pointer;

box-shadow: 0 8px 25px rgba(0,0,0,.25);

z-index: 5;

transition:
    transform .25s ease,
    background .25s ease;
```

}

.play:hover {

```
background: var(--ontime-red-dark);

transform:
    translate(-50%, -50%)
    scale(1.1);
```

}

/* =========================================================
TEXTO DEPOIMENTO
========================================================= */

.depoimento-card h4 {

```
margin: 20px 20px 6px;

color: #111;

font-size: 1.05rem;

font-weight: 750;
```

}

.depoimento-card span {

```
display: block;

margin: 0 20px 22px;

color: #666;

font-size: .88rem;
```

}

/* =========================================================
BOTÕES DEPOIMENTOS
========================================================= */

.dep-btn {

```
position: absolute;

top: 40%;

width: 46px;
height: 46px;

border: 0;

border-radius: 50%;

background: var(--ontime-red);

color: #fff;

font-size: 18px;

cursor: pointer;

z-index: 20;

display: flex;
align-items: center;
justify-content: center;

box-shadow: 0 5px 18px rgba(0,0,0,.18);

transition:
    transform .25s ease,
    background .25s ease;
```

}

.dep-btn.left {
left: -20px;
}

.dep-btn.right {
right: -20px;
}

.dep-btn:hover {

```
background: var(--ontime-red-dark);

transform: scale(1.08);
```

}

/* =========================================================
RODAPÉ
========================================================= */

footer.rodape {

```
width: 100%;

margin: 0;

padding: 55px 25px 28px;

background: #f86f50;

color: #ffffff;

display: flex;

flex-direction: column;

align-items: center;

gap: 22px;

position: relative;

z-index: 1;
```

}

footer.rodape nav {

```
background: transparent !important;

box-shadow: none !important;

border: 0 !important;

padding: 0 !important;
```

}

.rodape-topo {

```
display: flex;

justify-content: center;

align-items: center;
```

}

.rodape-topo img {

```
width: auto;

height: 85px;

display: block;
```

}

.rodape-menu {

```
display: flex;

align-items: center;
justify-content: center;

flex-wrap: wrap;

gap: 14px;

margin: 0;

padding: 0;

font-size: .9rem;

font-weight: 500;

text-align: center;
```

}

.rodape-menu a {

```
color: #ffffff;

text-decoration: none;

transition: opacity .2s ease;
```

}

.rodape-menu a:hover {
opacity: .7;
}

.rodape-menu .dot {

```
opacity: .6;

font-size: 1rem;
```

}

.rodape-linha {

```
width: 100%;

max-width: 1400px;

height: 1px;

margin: 10px 0 0;

background: rgba(255,255,255,.25);
```

}

.rodape-copy {

```
margin: 0;
padding: 0;

text-align: center;

font-size: .78rem;

opacity: .75;
```

}

/* =========================================================
POPUP
========================================================= */

.popup-overlay {

```
position: fixed;

inset: 0;

width: 100%;
height: 100%;

display: none;

justify-content: center;
align-items: center;

padding: 20px;

background: rgba(0,0,0,.68);

z-index: 2000;

backdrop-filter: blur(4px);
```

}

.popup {

```
position: relative;

width: min(420px, 100%);

max-height: 90vh;

overflow-y: auto;

background: #fff;

border-radius: 18px;

overflow-x: hidden;

text-align: center;

box-shadow: 0 20px 70px rgba(0,0,0,.35);

animation: popupFade .35s ease;

padding: 12px;
```

}

@keyframes popupFade {

```
from {
    opacity: 0;
    transform: scale(.95) translateY(15px);
}

to {
    opacity: 1;
    transform: scale(1) translateY(0);
}
```

}

.popup img {

```
width: 100%;

height: auto;

display: block;

border-radius: 12px;
```

}

.popup-content {

```
padding: 16px 10px 8px;
```

}

.popup-content p {

```
margin: 0 0 16px;

color: #444;

font-size: .95rem;

line-height: 1.5;
```

}

.popup-content a {

```
display: inline-flex;

align-items: center;
justify-content: center;

min-height: 44px;

padding: 10px 22px;

border-radius: 999px;

background: var(--ontime-red);

color: #fff;

text-decoration: none;

font-size: .88rem;

font-weight: 700;

transition:
    background .25s ease,
    transform .25s ease;
```

}

.popup-content a:hover {

```
background: var(--ontime-red-dark);

transform: translateY(-2px);
```

}

.popup-close {

```
position: absolute;

top: 12px;
right: 12px;

width: 40px;
height: 40px;

display: flex;

align-items: center;
justify-content: center;

border: 0;

border-radius: 50%;

background: rgba(0,0,0,.60);

color: #fff;

font-size: 25px;

line-height: 1;

cursor: pointer;

z-index: 10;

transition:
    background .2s ease,
    transform .2s ease;
```

}

.popup-close:hover {

```
background: var(--ontime-red);

transform: rotate(90deg);
```

}

/* =========================================================
FAIXA PROMOCIONAL
========================================================= */

.promo-bar {

```
width: 100%;

height: 45px;

position: relative;

overflow: hidden;

display: flex;

align-items: center;

background: #2b1fa7;

color: #fff;
```

}

.promo-track {

```
display: flex;

width: 400%;

height: 100%;

animation:
    promo-scroll
    20s
    linear
    infinite;

will-change: transform;
```

}

.promo-content {

```
width: 25%;

flex-shrink: 0;

display: flex;

align-items: center;

gap: 40px;

padding-right: 40px;

white-space: nowrap;
```

}

.promo-content span {

```
display: inline-flex;

align-items: center;

gap: 8px;

color: #fff;

font-size: .86rem;

font-weight: 700;

text-transform: uppercase;
```

}

.promo-content i {

```
font-size: 1rem;
```

}

@keyframes promo-scroll {

```
from {
    transform: translateX(0);
}

to {
    transform: translateX(-25%);
}
```

}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 992px) {

```
.topnav {

    gap: 25px;

    padding: 13px 20px;
}

.topnav .menu {

    gap: 20px;
}

.banner-container {

    height: clamp(320px, 48vw, 500px);
}

.container {

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(260px,1fr)
        );

    gap: 20px;

    padding-left: 18px;
    padding-right: 18px;
}

.card {

    min-height: 470px;
}

.card img {

    height: 250px !important;
}

.depoimento-card {

    flex-basis: 310px;
}

.dep-btn.left {
    left: -10px;
}

.dep-btn.right {
    right: -10px;
}
```

}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 768px) {

```
.topnav {

    position: sticky;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 10px 14px;
}

.topnav .logo img {

    height: 44px;
}

.topnav .menu {

    width: 100%;

    justify-content: center;

    flex-wrap: wrap;

    gap: 5px 18px;
}

.topnav .menu a {

    min-height: 32px;

    font-size: .82rem;
}

/* BANNER */

.banner-container {

    height: 300px;
}

.banner-overlay {

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.55),
            rgba(0,0,0,.25)
        );
}

.banner-text {

    width: 94%;

    padding: 10px;
}

.banner-text h1 {

    font-size: 1.75rem;

    margin-bottom: 10px;
}

.banner-text p {

    font-size: .95rem;
}

.banner-text .btn-banner {

    min-height: 42px;

    padding: 9px 20px;

    margin-top: 15px;

    font-size: .82rem;
}

.banner-arrow {

    width: 38px;
    height: 38px;

    font-size: 14px;
}

.banner-arrow.prev {
    left: 10px;
}

.banner-arrow.next {
    right: 10px;
}

.banner-dots {
    bottom: 12px;
}

/* BUSCA */

nav {

    padding: 14px 12px;
}

nav input {

    width: 100%;

    min-height: 46px;
}

/* CATEGORIAS */

.categorias {

    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding: 15px 12px 7px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}

.categorias::-webkit-scrollbar {
    display: none;
}

.categoria {

    flex: 0 0 auto;

    min-height: 39px;

    padding: 8px 14px;

    font-size: .78rem;
}

/* CURSOS */

.container {

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 13px;

    padding: 20px 10px 35px;
}

.card {

    min-height: 390px;

    border-radius: 13px;
}

.card img {

    height: 180px !important;

    padding: 4px;
}

.card-body {

    padding: 12px 12px 5px;
}

.card-body h3 {

    font-size: .88rem;

    margin-bottom: 6px;
}

.card-body p {

    font-size: .73rem;

    line-height: 1.4;
}

.card-footer {

    padding: 5px 12px 12px;

    gap: 5px;
}

.rating {

    font-size: .75rem;
}

.students {

    font-size: .68rem;
}

.price {

    font-size: .95rem;
}

.btn-card {

    min-height: 38px;

    padding: 7px 8px;

    font-size: .72rem;
}

/* EXPLORAR */

.faixa-explorar {

    padding: 50px 18px;
}

.faixa-explorar-container {

    gap: 30px;
}

/* DEPOIMENTOS */

.depoimentos {

    padding: 65px 15px;
}

.depoimentos-header {

    margin-bottom: 30px;
}

.depoimentos-header h2 {

    font-size: 1.8rem;
}

.depoimentos-header p {

    font-size: .9rem;
}

.depoimento-card {

    flex: 0 0 285px;
}

.dep-btn {

    display: none;
}

/* RODAPÉ */

footer.rodape {

    padding: 45px 18px 25px;
}

.rodape-topo img {

    height: 70px;
}

.rodape-menu {

    gap: 9px;

    font-size: .78rem;
}

/* PROMO */

.promo-bar {

    height: 40px;
}

.promo-content span {

    font-size: .72rem;
}

/* POPUP */

.popup {

    width: min(92%, 340px);

    padding: 9px;

    border-radius: 15px;
}

.popup-content {

    padding: 12px 7px 6px;
}

.popup-content p {

    font-size: .85rem;
}

.popup-close {

    width: 37px;
    height: 37px;

    top: 8px;
    right: 8px;

    font-size: 22px;
}
```

}

/* =========================================================
CELULAR PEQUENO
========================================================= */

@media (max-width: 480px) {

```
.topnav {

    padding: 8px 10px;
}

.topnav .logo img {

    height: 40px;
}

.topnav .menu {

    gap: 3px 13px;
}

.topnav .menu a {

    font-size: .74rem;
}

/* BANNER */

.banner-container {

    height: 220px;
}

.banner-text h1 {

    font-size: 1.25rem;

    line-height: 1.15;
}

.banner-text p {

    font-size: .76rem;

    line-height: 1.35;
}

.banner-text .btn-banner {

    min-height: 36px;

    padding: 7px 15px;

    margin-top: 10px;

    font-size: .72rem;
}

.banner-arrow {

    width: 32px;
    height: 32px;

    font-size: 12px;
}

.banner-arrow.prev {
    left: 7px;
}

.banner-arrow.next {
    right: 7px;
}

/* CURSOS */

.container {

    grid-template-columns: 1fr;

    gap: 15px;

    padding: 15px 10px 30px;
}

.card {

    min-height: auto;
}

.card img {

    height: 210px !important;
}

.card-body h3 {

    font-size: .95rem;
}

.card-body p {

    font-size: .78rem;
}

.price {

    font-size: 1rem;
}

.btn-card {

    min-height: 42px;

    font-size: .78rem;
}

/* CATEGORIAS */

.categoria {

    font-size: .74rem;

    padding: 7px 12px;
}

/* EXPLORAR */

.faixa-explorar {

    padding: 45px 15px;
}

.faixa-explorar-col h3 {

    font-size: 1rem;
}

.faixa-explorar-col p {

    font-size: .82rem;
}

/* DEPOIMENTOS */

.depoimentos {

    padding: 50px 10px;
}

.depoimento-card {

    flex: 0 0 275px;
}

/* POPUP */

.popup {

    width: 94%;

    max-height: 88vh;
}

.popup-content a {

    min-height: 40px;

    padding: 8px 17px;

    font-size: .8rem;
}
```

}

/* =========================================================
ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

```
html {
    scroll-behavior: auto;
}

*,
*::before,
*::after {

    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
}
```

}
