/* Estilo global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.marca{
    border: 2px, solid, #fff;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    
}

a {
    text-decoration: none;
    color: #333;
}

h1, h2, h3 {
    color: #6e6e6e;
}

p {
    margin-bottom: 1em;
}

/* Header */
header {
    background-color: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: #bbb;
}

/* Seção inicio */
.inicio {
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.inicio-text {
    max-width: 100%;
    margin: 10px;
}

.inicio h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.inicio p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ddd;
}

.inicio-image img {
    width: 400px;
    border-radius: 10px;
    margin: 20px;
}

/* Seção Cursos */

.h2cursos{
    text-align: center;
    color: #000;
    padding: 20px;
}

.courses {
    display: flex;
    background-color: #fff;
    color: #333;
    padding: 50px 20px;
    align-items: center;
    justify-content: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
}

.course-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    
}

.course-item:hover {
    transform: scale(1.05);
}

.course-item img {
    width: 70%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.course-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000;
}

.course-item p {
    margin-bottom: 20px;
}

.course-item .cta-button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.course-item .cta-button:hover {
    background-color: #555;
}

/* depoimentos*/
.h2depoimentos{
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.depoimentos {
    background-color: #222;
    color: #fff;
    padding: 50px 0;
    display: block;
}

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

.depoimentos-item img{
    border-radius: 10px;
    max-width: 500px;
    margin: 10px;
}

/* Seção Sobre o professor */
.professor {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    color: #333;
    padding: 50px 20px;
}

.professor-content {
    margin: 20px;
    text-align: center;
    max-width: 50%;
}

.professor h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000000;
}

.professor-image img {
    max-width: 400px;
    border-radius: 10px;

}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

.footer-social a {
    margin: 0 10px;
}

.footer-social img {
    width: 30px;
}

footer p {
    margin-top: 10px;
    font-size: 0.9rem;
}

.politica{
    color: #888;
}

.politica:hover{
    color: #999;
}

/* Responsividade */
@media (max-width: 768px) {
    .inicio, .professor, .depoimentos{
        flex-direction: column;
        text-align: center;
    }

    .inicio .inicio-image img{
        max-width: 200px;
    }

    .hero-text, .professor-content, .depoimentos-item {
        max-width: 100%;
    }

    .hero-image img, .about-image img {
        width: 100%;
    }

    .professor-image img{
        width: 150px;
    }

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

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

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: black;
        width: 100%;
        text-align: right;
    }

    nav ul li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        margin-right: 10px;
    }

    .menu.open ul {
        display: flex;
    }

    .inicio-text, .inicio{
        padding: 15px;
        margin: 0px;
    }

    .marca{
        padding: 0px;
        margin-top: 10px;
    }

}
