/* ============================================
   UNIFATECIE VANILLA - STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #ef7900;
    --primary-dark: #d46a00;
    --secondary-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-dark2: #3a3636;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --green: #22c55e;
    --green-dark: #16a34a;
    --dark-bg: #1f2937;
    --yellow: #fbbf24;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --radius: 0.5rem;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark2);
}

p {
    color: var(--text-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 121, 0, 0.3);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: var(--green);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-whatsapp:hover {
    background-color: var(--green-dark);
}

.btn-matricule {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-matricule:hover {
    background-color: var(--primary-dark);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.logo img{
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    flex: 1;
    margin-left: var(--spacing-xl);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    border-radius: var(--radius);
    padding: 0.5rem var(--spacing-sm);
    border: 1px solid var(--border-color);
}

.search-box input {
    background: none;
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 0.9rem;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #fffaed 0%, #fff5e6 100%);
    padding: var(--spacing-2xl) 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.hero-text h1 .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-gray);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-banner img{
    width: 100%;
}

.image-label {
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
    opacity: 0.9;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--yellow);
    font-size: 0.9rem;
}

.scrolling-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-md) 0;
    overflow: hidden;
    margin-top: var(--spacing-2xl);
}

.scrolling-text {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.scrolling-text span {
    padding-right: 2rem;
    font-weight: 600;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose-us {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.image-item {
    width: 100%;
    background-color: #c9d6e8;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    border: 3px solid var(--primary-color);
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.why-choose-text h2 .highlight {
    color: var(--primary-color);
}

.why-choose-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

/* ============================================
   COURSES SECTION
   ============================================ */

.courses {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.courses h2,
.second-graduation h2,
.post-graduation h2,
.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: 30px;
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.course-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: var(--spacing-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-width: 50%;
    width: 100%;
    max-height: 400px;
}

.course-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.course-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.course-info span {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.course-info i {
    color: var(--primary-color);
    font-weight: 600;
}

.course-card button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.course-card button:hover {
    background-color: var(--primary-dark);
}

.load-more-container {
    display: flex;
    justify-content: center;
}

/* ============================================
   SECOND GRADUATION SECTION
   ============================================ */

.second-graduation {
    padding: var(--spacing-2xl) 0;
    background-color: #f9f9f9;
}

/* ============================================
   POST GRADUATION SECTION
   ============================================ */

.post-graduation {
    background-color: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.category-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--primary-color);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    background-color: var(--white);
    padding: var(--spacing-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background-color: #f9f9f9;
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.faq-cta p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-2xl) 0 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-section h4{
    margin-top: 10px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: #fff;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: #fff;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: #fff;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
}

.form_lead{
    width: 50%;
}

.form_lead button{
    width: 100%;
}

.form_lead h3 {
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-gray);
}

.form_home{
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_home .form_lead{
    width: 30%;
}

.video_course {
    margin-top: 1%;
}


.mec_content{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: #1a1515;
    padding: 20px;
}

.mec_content .mec_items{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 20px;
    width: 100%;
}

.mec_content .mec_title{
    text-align: center;
}

.mec_content .mec_title img{
    width: 100px;
}

.mec_content .mec_items .mec_item{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.mec_content .mec_items .mec_item i{
    font-size: 40px;
}

.mec_content .mec_items .mec_item h3{
    font-size: 20px;
    margin-top: 10px;
    color: #fff;
}

.apps_download{
    display: flex;
    flex-direction: column;
}

.apps_download .mec_link{
    margin-top: 20px;
}


.countdown-page .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.countdown-page .info h1{
    font-weight: bold;
    color: #383d37;
}

.countdown-page .info .mec {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.countdown-page .info .buttons-action {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.countdown-page .info button {
    background-color: #fb6c06;
    border: none;
    border-radius: 5px;
    padding: 15px;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: bold;
}

.countdown-page .info button:hover{
    color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.75);
    transition: 0.2s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        margin-left: 0;
        margin-top: 20px;
        gap: var(--spacing-sm);
    }

    .header-content{
        flex-direction: column;
    }

    .header-right{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .search-box {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-visual {
        order: -1;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .why-choose-text h2 {
        font-size: 1.8rem;
    }

    .courses h2,
    .second-graduation h2,
    .post-graduation h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-image{
        flex-direction: column;
    }

    body .courses_search{
        margin-top: 0;
    }

    .courses_search .search_courses{
        width: 100%;
    }

    .container-input .input-form{
        max-width: 100%;
    }

    .courses_search .search_courses_items{
        width: 100%;
    }

    .search_courses_list{
        flex-direction: column;
    }

    .course-card{
        width: 100%;
        max-width: 100%;
    }

    body .top-message{
        height: 120px;
    }

    body .top-message .top-message-section{
        flex-direction: column;
        width: 100%;
    }

    body .top-message .top-message-section button{
        margin-top: 5px;
    }

    .course_about{
        flex-direction: column;
    }

    .course_about .course_text{
        width: 100%;
    }

    .course_about .course_value{
        width: 100%;
        margin-top: 10px;
    }

    .course_header{
        flex-direction: column;
    }

    .course_description{
        flex-direction: column;
    }

    .course_description .form_lead{
        width: 100%;
    }

    .course_description .course_description_text{
        width: 100%;
    }

    .form_home .form_lead{
        width: 80%;
    }

    .course_about .course_text .course_header h1{
        font-size: 1.5rem;
    }

    .course_about .course_header_text{
        width: 100%;
    }

    .video_course iframe{
        width: 100%;
    }

    .mec_content .mec_items{
        flex-direction: column;
    }

    .mec_content .mec_items .mec_item{
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-image {
        width: 200px;
        height: 250px;
    }

    .filter-tabs,
    .category-tabs {
        flex-direction: column;
    }

    .tab-btn,
    .category-btn {
        width: 100%;
    }
}

#cookieAcceptBar.cookieAcceptBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgb(245, 242, 242);
    color: rgb(51, 49, 49);
    padding: 20px 0;
    z-index: 99999;
    text-align: justify;
    padding: 10px 20px;
    font-size: 13px;
}

#cookieAcceptBar.cookieAcceptBar a {
    text-decoration: underline;
}

#cookieAcceptBar button {
    cursor: pointer;
    border: none;
    background-color: rgb(80 121 89);
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 3px;
}

#cookieAcceptBar #cookieAcceptBarRecuse {
    background-color: #f4ac6d;
}

#cookieAcceptBar.visible {
    display: block;   /* aparece apenas depois do load */
    opacity: 1;
    transform: translateY(0);
}

/* CURSOS */

.section_courses_header{
    width: 82%;
    margin: auto;
    margin-top: 20px;
}

.section_courses_header h1{
    font-size: 1rem;
    font-weight: 600;
}

.section_courses_header h2{
    font-size: 1.7rem;
    color: var(--text-dark);
}

.courses_search{
    display: flex;
    width: 82%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: start;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}

.search_courses{
    display: flex;
    flex-direction: column;
    width: 30%;
}

.search_courses_areas{
    width: 100%;
}

.search_couses_name{
    width: 100%;
    margin-top: 50px;
}

.search_couses_name input{
    width: 100%;
}

.search_courses_items{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
}

.search_courses_list{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.input-form {
    border: 2px solid #FE6603;
    border-radius: 35px;
    font-size: 0.7em;
    background-color: #fff;
    width: 100%;
    max-width: 25vw;
    margin-top: 5px;
}

.input-form input {
    padding: 0.8rem;
    border: 0;
    border-radius: 35px;
    width: 90%;
    outline: none;
}

.input-form button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color: transparent;
    outline: none;
    border: none;
}

.container-input {
    display: flex;
    text-align: center;
    flex-direction: column;
    padding-top: 30px;
    align-items: center;
}

.course_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eff0e7;
    background-color: #f7f7f7;
    padding: 25px 15px 25px 15px;
    width: 33.3%;
    height: 200px;
    justify-content: space-around;
}

.course_item h2{
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.acc-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 20px;
}

.accordion {
    flex-direction: column;
    margin-top: 5px;
}

.accordion h1 {
    font-size: 2.3em;
    color: #be9432;
}

.accordion-item {
    background: linear-gradient(90deg, rgb(241, 126, 59) 0%, rgb(241, 126, 59) 0%, rgb(224, 93, 5) 100%);
    margin-top: 0.4em;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    padding-left: 10px;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.accordion-item:focus {
    outline-style: none;
}

.accordion-item:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-right: 10px;
}

.open:after {
    content: '\2212';
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    color: #000;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    font-size: 1rem;
    padding: 5px;
}

.panel a {
    color: #be9432;
}

.panel p:hover{
    color: var(--text-dark2);
}

.page-item.active .page-link{
    background-color: var(--text-dark2);
    border-color: #383d37;
}

.page-link{
    color: var(--text-dark2);
}

.pagination_courses{
    margin-top: 20px;
}

.course_about{
    display: flex;
    width: 82%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 40px;
}

.course_text{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.course_text h1{
    font-size: 2rem;
    font-weight: 600;
}

.course_text h1 > span{
    color: var(--text-dark2);
}

.course_text .duration{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.course_text .duration img{
    width: 20px;
}

.course_text span{
    font-weight: 500;
    color: #606062;
}

.course_header{
    display: flex;
    justify-content: space-between;
}

.course_header_text{
    display: flex;
    flex-direction: column;
    width: 70%;
}

.course_description{
    display: flex;
    gap: 50px;
}

.course_description h2{
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 20px;
}

.course_description_text{
    display: flex;
    flex-direction: column;
    width: 80%;
}

.course_matriz{
    display: flex;
    flex-direction: column;
    border: solid 1px #d2d3ca;
}

.course_matriz div{
    border-bottom: 1px solid #ccc;
    padding-left: 5px;
}

.course_value{
    width: 30%;
}

.course_installment{
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 50px;
}

.course_installment span{
    color: #fff;
}

.course_installment h3{
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--primary-color);
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
}

.page-link:hover {
  z-index: 2;
  color: var(--primary-color);
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.top-message{
    z-index: 9999999999999;
    display: flex;
    background-color: rgb(224, 31, 17);
    top: 0;
    height: 80px;
    color: #fff;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.top-message .top-message-section{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.top-message .top-message-section span{
    font-weight: bold;
    text-align: center;
}

.btn-whatsapp2 {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 1em;
    padding: 0.5em;
    font-size: 1.8em;
    border-radius: 500px;
    display: flex;
    color: #fff;
}

.bg-success{
    background-color: #28a745;
}

.logo-icon svg{
    fill: #fff;
    width: 200px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.font-weight-bold {
  font-weight: 700 !important;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
  color: #606062;
}

.form-group {
  margin-bottom: 1rem;
}

.color-orange{
    color: var(--primary-color);
}
