@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* === RESET LIMPO E SEGURO === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    font-family: var(--font-family);
}

/* === FONTES LOCAIS === */
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/CoolveticaLt-Regular.ttf') format('truetype');
    src: url('../fonts/CoolveticaRg-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/CoolveticaRg-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/CoolveticaEl-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* === VARIÁVEIS === */
:root {
    --black-color: #000;
    --white-color: #fff;
    --red-color: #FF0D07;
    --dark-red: #C6271D;
    --blue-color: #1B3287;
    --faq-color: #2562D9;
    --gray-color: #9E9E9E;
    --font-family: 'Coolvetica', Arial, sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-elite: 'Coolvetica Elite', sans-serif;
    --font-bold: 'Coolvetica Bold', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif !important;
    font-weight: bold;
}

.text-red, .bg-red-highlight, span {
    font-family: 'Coolvetica', Arial, Helvetica, sans-serif !important;
}
/* === HERO SECTION === */
.hero-section {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-section .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-section .col-lg-7 {
    text-align: left;
}
.hero-section .col-lg-5 {
    text-align: right;
}
.hero-section p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
}
.hero-section h1 {
    font-size: 4rem;
    color: var(--white-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 600;
}
.hero-section h2 {
    font-size: 2rem;
    color: var(--white-color);
    line-height: 1.5;
    margin-bottom: 20px;
}
.hero-section .btn-matriculas {
    background-color: var(--red-color);
    color: var(--white-color);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 1;
    position: relative;
    display: inline-block;
}
.hero-section .btn-matriculas:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}
.hero-section .logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}
.bg-red-highlight {
    background-color: var(--red-color);
}

/* === DIFERENCIAIS SECTION === */
.diferenciais-section {
    background-color: var(--white-color);
    padding: 0 0;
}
.diferenciais-section h1 {
    font-size: 3rem;
    color: var(--blue-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.diferenciais-section p {
    font-size: 18px;
    color: var(--blue-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
    text-align: center;
}
.bg-card-azul {
    background-image: url('../images/card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border: none;
    height: 250px;
}
.diferenciais-section .ico-card-diferenciais {
    width: 100%;
    max-width: 70px;
    height: auto;
    margin-bottom: 10px;
}
.diferenciais-section .card-text{
    color: var(--white-color);
    font-family: var(--font-open-sans);
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}
.bg-card-red {
    background-color: var(--dark-red);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    border: none;
    height: 250px;
}

/* === ABOUT SECTION === */
.about {
    background-color: var(--white-color);
    padding: 0 0;
}
.about .ico-about {
    width: 100%;
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}
.about h1 {
    font-size: 3rem;
    color: var(--blue-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.about .text-red {
    color: var(--red-color);
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.about p {
    font-size: 16px;
    font-weight: normal;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
    text-align: justify;
    line-height: 2.1rem;
}

/* === BOTÃO GERAL === */
.btn-matriculas {
    background-color: var(--red-color);
    color: var(--white-color);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none !important;
    display: inline-block;
}
.btn-matriculas:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

/* === CTA SECTION === */
.cta {
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta .logo-white {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}
.cta h2 {
    font-size: 28px;
    color: var(--white-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 400;
}
.btn-cta {
    background-color: var(--red-color);
    color: var(--white-color);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-weight: bold;
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none !important;
    display: inline-block;
}
.btn-cta:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
    transition: all 0.3s ease;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background-color: var(--white-color);
    padding: 0 0;
}
.testimonial-img {
    height: auto;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.text-red {
    color: var(--red-color);
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.testimonials h1 {
    font-size: 3rem;
    color: var(--blue-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}

/* === FAQ SECTION === */
.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    padding: 0 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.faq .ico-about {
    width: 100%;
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}
.faq h1 {
    font-size: 3rem;
    color: var(--blue-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.faq .accordion-button {
    background-color: var(--faq-color);
    color: var(--white-color);
    padding: 20px;
    font-size: 18px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-family: var(--font-open-sans);
}
.faq a {
    font-size: 16px;
    font-weight: normal;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
    text-align: justify;
}
.faq .accordion-button:hover {
    background-color: var(--faq-color);
    color: var(--white-color);
}
.faq .accordion-body p {
    font-size: 16px;
    font-weight: normal;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
    text-align: justify;
}

/* === DIVERSO SECTION === */
.diverso {
    background-color: var(--white-color);
    padding: 0 0;
}
.diverso .ico-about {
    width: 100%;
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}
.diverso h2 {
    font-size: 3rem;
    color: var(--blue-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.diverso .text-red {
    color: var(--red-color);
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-bold);
    font-weight: bold;
}
.diverso p {
    font-size: 16px;
    font-weight: normal;
    color: var(--black-color);
    margin-bottom: 20px;
    font-family: var(--font-open-sans);
    text-align: justify;
    line-height: 2.1rem;
}
.diverso p strong {
    font-family: var(--font-open-sans);
    font-weight: bold;
}

.diverso img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.rodape {
    background-color: var(--blue-color);
    padding: 10px;
    text-align: center;
}
.rodape p {
    font-size: 16px;
    font-weight: normal;
    color: var(--white-color);
    margin-bottom: 10px;
    font-family: var(--font-open-sans);
}