/* Estilos gerais */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    /* Fundo da página preto */
    color: #fff;
    /* Cor do texto */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20%;
    transition: background-color 0.3s;
    z-index: 1000;
}

header.transparent {
    background-color: transparent;
}

header.scrolled {
    background-color: #000;
    /* Fundo do header preto quando rola */
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.menu-entrar {
    border-radius: 20px;
    padding: 10px 20px;
    background-color: orange;
    color: white;
}

.menu-entrar:hover {
    background-color: rgb(213, 96, 54);
}

.drawer-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    /* Cor do ícone do menu */
}

.drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #000;
    color: #fff;
    /* Cor do texto no drawer */
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    /* Certifica-se de que o drawer fique acima de outros elementos */
    transition: transform 0.3s ease;
    transform: translateX(100%);
}

.drawer.open {
    display: block;
    transform: translateX(0);
}

.drawer ul {
    list-style: none;
}

.drawer li {
    margin: 15px 0;
}

.drawer a {
    color: #fff;
    /* Cor dos links no drawer */
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .drawer-toggle {
        display: block;
    }
}


/* Estilos para o carrossel */

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 1.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.indicators {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: transparent;
    border: 2px solid #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
    border: 2px solid transparent;
}


/* Estilos para os cards */

.cards {
    /*display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
    justify-content: center;*/
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20% 50px 20%;
    transition: background-color 0.3s;
    z-index: 1000;
}

.card-white {
    background-color: #fff;
    /* Cor branca para o segundo cartão */
}

#tamanho-img {
    height: 95%;
    width: 100%;
}

.card {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card h2 {
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
}

.card-title {
    font-family: Arial;
    font-size: 35px;
    padding-top: 50px;
    text-align: center;
    font-size: 25px;
    color: #000;
    font-weight: bold;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centraliza a imagem e o texto */
    margin-top: 60px;
    /* Espaço para o título */
}

.card-content img {
    display: flex;
    object-fit: cover;
    /* Garante que a imagem se encaixe bem no tamanho definido */
    margin-right: 20px;
    /* Espaço entre a imagem e o texto */
}

.card-text {
    display: flex;
    max-width: 500px;
    text-align: left;
    color: #000;
    font-size: 28px;
    /* Centraliza o texto */
}

span.orange {
    color: orange;
    font-weight: bold;
}

span.gray {
    color: rgb(98, 98, 98);
    font-weight: bold;
}

.content {
    padding-top: 20px;
    text-align: left;
}

.cards2 {
    /*display: flex;
    flex-wrap: wrap;
    gap: 20px;
    
    justify-content: center;*/
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20% 50px 20%;
    transition: background-color 0.3s;
    z-index: 1000;
}


/* Estilos para o rodapé */

footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}