/* Estilo geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.flex {
    display: flex;
}

.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 700;
    background-color: #ff0000;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.section {
    height: 100vh;
    width: 100vh;
    background-color: #fff;
}

/* Estilo do cabecalho */

header {
    padding: 40px 4%;
    background-color: #000;
    height: 150px;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #5c5c5c;
    text-decoration: none;
    display: inline-block;
}

header a:hover {
    color: #fff;
    transform: scale(1.05);
    transition: .2s;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
    padding: 0 40px;
}

.btn-contato button:hover {
    box-shadow: 0px 0px 8px #ffffff;
    transform: scale(1.05);
}

/* Estilo do topo */

section.topo-do-site {
    padding: 40 4%;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #fff;
    font-size: 42px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
    color: #ff0000;
    font-size: 84px;
}

.topo-do-site .txt-topo-site p span {
    color: #ff0000;
    font-size: 24px;
}

.topo-do-site .txt-topo-site p {
    color: #fff;
    margin: 40px 0;
    font-size: 16px;
}

.img-topo-site {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}

@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

/* estilo da historia */
.historia .interface h2 {
    color: #000;
    padding-top: 25px;
    margin-bottom: 30px;
}

.historia .interface span {
    color: #ff0000;
    margin-bottom: 30px;
}

.historia .interface {
    text-align: center;
    font-size: 42px;
}

.historia .interface .texto-historia p {
    color: #000;
    font-size: 17px;
    text-align: left;
}

.historia .interface .texto-historia .imagem-texto-1 {
    float: right;
}

.historia .interface .texto-historia .imagem-texto-2 {
    float: left;
    margin-right: 20px;
}

.historia .interface .texto-historia .fundacao {
    float: right;
}

.historia .interface .texto-fundacao {
    text-align: left;
}

.texto-historia {
    padding-bottom: 400px;
}

/* estilo da titulos */

.section-titulo {
    background-color: #fff;
}

.section-titulo .titulos .interface h2 {
    color: #000;
    margin-bottom: 30px;
    font-size: 60px;
    text-align: center;
}

.section-titulo .titulos .interface span {
    color: #ff0000;
    margin-bottom: 30px;
    font-size: 60px;
}

.section-titulo .titulos .interface .texto-titulos ul li {
    color: #000;
    text-decoration: none;
    list-style-type: none;
    font-size: 18px;
}

.imagem-card {
    float: right;
    float: inline-end;
    display: flex;
    padding-bottom: 20px;
}

.imagem-card-carioca {
    float: right;
    float: inline-end;
    display: flex;
    padding-bottom: 20px;
    width: 330px;
}

.fotos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.fotos img {
    width: 100%;
    transition: all 0.2s linear;
}

.fotos img:hover {
    transform: scale(75%);
}

@media (max-width: 800px) {
    .fotos {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .fotos {
        grid-template-columns: 1fr 1fr;
    }
}

/* section elenco */

.section-elenco {
    background-color: #fff;
}

.elenco .interface img {
    height: 290px;
    width: 234.82px;
}

.elenco .interface .titulo-titulos h1 {
    text-align: center;
    font-size: 42px;
    padding: 20px 20px;
}

.elenco .interface .titulo-titulos span {
    color: #ff0000;
    margin-bottom: 30px;
    font-size: 42px;
}

.elenco .interface .titulo h2 {
    color: #000;
    font-size: 34px;
    text-align: left;
    padding: 20px;
}

.elenco .interface .container p {
    color: #000;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.elenco .interface .container {
    display: flex;
    margin-bottom: 45px;
}

/* estilo de fundação */
.foto-rigth {
    float: right;
    padding: 15px;
}

.foto-left {
    float: left;
    padding: 20px;
    margin-right: 30px;
}

.card-foto {
    text-align: justify;
    margin: 20px;
}

.sobremim .interface img{
    display: flex;
    margin-left: 100px;
    margin-top: 30px;
    margin-right: 30px;
    border-radius: 15px;
}

.sobremim .interface h1{
    font-size: 32px;
    margin-top: 50px;
}

.texto-eu{
    padding: 30px;
    text-align: justify;
}

