/* Reset básico */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.txt-blacklotus h1{
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #ee1717;
    color: #f7f5f5;
    cursor: pointer;
}

/* Cabeçalho */
header {
    background-color: #000;
    color: #fff;
    padding: 2px 0;
    border-bottom: 3px solid #352b2b;
    cursor: pointer;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}
.logo {
    max-width: 50px;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin: 0 1rem;
}
.nav-links a {
    color: #dfdfdf;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
    
}
.nav-links a:hover {
    color: #ff0000;
    transform: scale(1.1);
    }

/* Seção Hero */
.hero {
    background-color: #000000f1;
    color: #ffffff;
    text-align: center;
    padding: 5rem 2rem;
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #cc0000;
}

/* Modalidades */
.martial-arts {
    padding: 3rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}
.martial-arts h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.modalidades {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    cursor: pointer;
}
.modalidades article {
    background: #f3f3f3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.349);
    max-width: 300px;
    transition: transform 0.3s;
}
.modalidades article:hover {
    transform: translateY(-10px);
}
.modalidades img {
    width: 100%;
    height: auto;
}
.modalidades h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}
.modalidades p {
    padding: 0 1rem 1.5rem;
    font-size: 1rem;
}

/* Rodapé */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
footer p {
    margin: 0.5rem 0;
}
.footer-container i {
    margin: 0.5rem 0;
    color: #3a3838;
}
footer a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
footer a:hover {
    color: #cc0000;
}

.footer-container span{
    color: #ffffff;
}

/* Carrossel de Imgs */
article img {
    display: none; /* Oculta todas as imagens por padrão */
    width: 100%; /* Garante que as imagens se ajustem ao container */
    height: auto;
}

article img.active {
    display: block; /* Exibe apenas a imagem ativa */
}
