* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
	min-height: 100vh;
	background: #ffffff;
    position: relative;
}

/* CABEÇALHO/HEADER */

header {
    background-color: #fff;
    height: 90px;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 0 150px;
    box-sizing: border-box;
    z-index: 1000;
}

.bandeira{
    position: absolute;
    width: 30px;
    height: 20px;
    right: 50px;
    bottom: 30px;
}

.bandeira img{
    width: 30px;
    height: 20px;
}

.logo {
    display: flex;
    width: 150px;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    background-color: #fff;
    border: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end; 
    flex-grow: 1; 
}

.nav-list a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 20px;
    font-size: 18px;
}

.nav-list a:hover {
    color: red;
    background-color: #e3e3e3;
    border-radius: 5px;
}

.botão1,.botão2{
    background-color: #fff;
    border: 0;
}

.botão1 a:hover,.botão2 a:hover{
    background: none;
}

.menu-toggle:checked ~ .nav {
    display: flex; 
    flex-direction: column;
    position: absolute;
    top: 90px; 
    right: 0;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 1000; 
    height: calc(100vh - 90px); 
    width: 250px; 
    transform: translateX(0); 
    transition: transform 0.3s ease-in-out; 
}

.menu-toggle:checked ~ .nav .nav-list {
    flex-direction: column;
    width: 100%;
    margin-top: 0; 
}

.menu-toggle:checked ~ .nav .nav-list li {
    padding: 20px 0; 
    position: relative;
}

.menu-toggle:checked ~ .nav .nav-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
    height: 1px;
    background-color: #ff0000; 
}

.menu-toggle:checked ~ .nav .nav-list li:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; 
    height: 1px;
    background-color: #ff0000; 
    transform: translateX(-93px);
}

.menu-toggle:checked ~ .nav .nav-list li:last-child::after {
    display: none; 
}

.menu-toggle:checked ~ .nav .nav-list li:first-child {
    margin-top: 0; 
}

.menu-toggle:checked ~ .nav .nav-list .sociais {
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    margin-top: 5px; 
}

.menu-toggle:checked ~ .nav .nav-list .sociais button {
    margin: 0 10px; 
}

.sociais button {
    transition: transform 0.3s;
}

.sociais button:hover {
    transform: scale(1.2); 
}

.menu-toggle:checked ~ .nav .nav-list a {
    padding: 10px;
    text-align: center;
}

@media (max-width: 1067px) {
    .menu-icon {
        display: block;
        position: absolute;
        right: 20px; 
    }

    .nav {
        display: none; 
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; 
        width: 100%;
        margin-top: 0; 
        padding-top: 0; 
    }

    .nav-list a {
        padding: 10px;
        text-align: center;
    }

    .bandeira{
        bottom: 30px;
        left: 10px;
    }

    .bandeira img{
        width: 30px;
        height: 20px;
    }

    .logo {
        width: 100%; 
        justify-content: center; 
    }

    .sociais {
        display: flex;
        align-items: center;
        justify-content: center; 
        margin-left: 20px;
    }

    .sociais button:hover {
        transform: none; 
    }
}

@media (min-width: 1067px) {
    .menu-icon {
        display: none; 
    }

    .nav {
        display: flex; 
    }

    .nav-list a {
        padding: 20px; 
    }
}
/* FIM CABEÇALHO/HEADER */

/* CARDS FLEXÍVEIS */

.container {
    display: flex;
    height: calc(650px - 90px);
    width: 100%;
    background-color: #ffffff;
    padding-top: 90px;
}

.box {
    flex: 1;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}

.box:hover img {
    transform: scale(1.2);
}

.box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.texto {
    color: #fff;
    position: absolute;
    bottom: 60px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1;
}

.texto h2 {
    font-style: italic;
}

.texto p {
    margin-left: 20px;
    margin-top: 5px;
    text-indent: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.box:hover .texto p {
    opacity: 1;
}

@media (max-width: 760px) {
    .container {
        flex-direction: column;
        height: 660px;
        padding-top: 90px;
    }

    .box {
        flex: 1;
        height: 100%;
        width: 100%;
    }

    .box:hover img {
        transform: none;
    }
    
    .box:hover .texto p {
        opacity: 0.8; 
    }
    
    .texto {
        bottom: 1px;
    }

    .texto p {
        opacity: 0.8 !important;
        font-size: 15px;
        font-weight: 400;
        font-style: italic;
    }

    .mobile-only {
        display: block;
    }

    .texto h2 {
        font-size: 22px;
    }
}
/* FIM DOS CARDS FLEXÍVEIS */

/* BANNER DE REPROGRAMAÇÃO */

.reprogramação{
    height: 350px;
    margin-top: 85px;
    width: 100%;
    align-items: center;
}

.banner{
    height: 350px;
    width: 100%;
    display: flex;
}

.coluna1{
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

@font-face {
    font-family: 'airstrike';
    src: url(airstrike3d.ttf);
}

.coluna1 h1{
    font-family: 'airstrike';
    font-size: 23px;
    background-color: #ff0000;
    border-radius: 7px;
    margin: 0 200px;
    color: #ffffff;
    padding: 25px;
    text-align: center;
    margin-top: 10px;
}

.coluna1 p{
    color: #fff;
    margin: 50px;
    margin-top: 15px;
    text-indent: 20px;
    margin-bottom: 15px;
    font-style: italic;
}

.coluna2{
    width: 50%;
    height: 100%;
}

.coluna2 img{
    height: 350px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1312px) {
    .reprogramação{
        margin-bottom: 100px;
    }
    .banner {
        flex-direction: column;
        width: 100%;
    }
    
    .coluna1, .coluna2 {
        width: 100%;
        height: auto; 
    }
    
    .coluna1 h1 {
        margin: 10px; 
        padding: 15px; 
    }
    
    .coluna1 p {
        margin: 25px; 
    }
    
    .coluna2 img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
}
/* FIM DO BANNER DE REPROGRAMAÇÃO */

/* LISTA DE SERVIÇOS */

.serviços{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 85px;
    align-items: center;
    justify-content: center;
}

 .serviços img{
    width: 400px;
    height: 200px;
    margin: 0 auto;
 }

 .serviços h1{
    margin: 0 auto;
    font-style: italic;
 }

 .lista-serviços{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
 }

 .lista-serviços img{
    border: 1px solid rgba(0, 0, 0, 0.3);
    width: 260px;
    height: 250px;
    margin: 0 15px;
    cursor: pointer;
    transition: 0.9s;
    display: block;
 }

 .lista-serviços img:hover{
    filter: brightness(1.4);
 }

.lista h4{
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #fff;
    background-color: #ff0000;
    width: 260px;
    padding: 5px;
    margin: 15px;
    margin-top: 0px;
    text-align: center;
}

 .bto-serviços{
    background-color: #ff0000;
    border: 0;
    border-radius: 5px;
    padding: 8px;
    color: #fff;
    font-style: italic;
    margin-top: 10px;
    font-size: 12px;
    transition: 0.2s;
    cursor: pointer;
 }

 .bto-serviços:hover{
    transform: scale(1.1);
 }

@media (max-width: 1187px) {
    .serviços{
        margin-top: 100px;
    }
    .serviços img {
        width: 300px;
        height: auto; 
        margin: 0; 
    }

    .serviços h1 {
        font-size: 1.2em; 
        text-align: center; 
        margin-top: 10px;
    }

    .lista-serviços {
        flex-direction: column; 
        align-items: center; 
    }

    .lista-serviços img {
        width: 260px; 
        height: 250px; 
        object-fit: cover;
    }

    .lista h4 {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 760px) {
    .serviços{
        margin-top: 250px;
    }
}
/* FIM DA LISTA DE SERVIÇOS */


/* RODAPÉ */

footer{
    background-color: #333;
    color: #fff;
    margin-top: 30px;
    padding: 30px 240px;
    width: 100%;
    height: 170px;
    display: flex;
    justify-content: space-between;
}

.informações h3{
    font-size: 20px;
    margin-bottom: 5px;
}

.informações p{
    font-size: 12px;
    margin-bottom: 5px;
}

.informações h2{
    font-size: 20px;
}

.email{
    font-size: 12px;
}

@media (max-width: 930px) {
    footer {
        flex-direction: column; 
        padding: 30px 20px; 
        height: auto; 
        align-items: center; 
    }

    .informações {
        text-align: center;
        color: #ffffff; 
    }

    .informações h2 {
        color: inherit !important;
        text-decoration: none !important;
        font: inherit !important; 
        pointer-events: none !important; 
    }
    
    .informações h2 a {
        color: inherit !important;
        text-decoration: none !important;
        pointer-events: none !important;
    }
    
    .informações h2 {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .email{
        text-align: center;
    }
}

/* FIM DO RODAPÉ */

/* BOTÃO DO WHATSAPP */

.bto-whatsapp {
    position: fixed; 
    bottom: 50px;
    right: 50px;
    z-index: 9999; 
}

.bto-whatsapp button {
    border: 0;
    background: none;
    transition: 0.2s;
    cursor: pointer;
}

.bto-whatsapp button:hover {
    transform: scale(1.2);
}

.bto-whatsapp img {
    width: 100px;
    height: 100px;
}

.mobile-link {
    display: none;
}

.desktop-link {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .desktop-link {
        display: none;
    }
    .mobile-link {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .bto-whatsapp {
        bottom: 10px; 
        right: 10px; 
    }

    .bto-whatsapp button:hover {
        transform: none; /* Remove o efeito de scale */
    }
}
/* FIM DO BOTÃO DO WHATSAPP */

/* PÁGINAS ADICIONAIS */

.aba {
    flex: 1 1 0;
    margin-top: 100px; 
    padding: 20px 200px;
    align-items: start;
}

.aba h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ff0000;
}

.aba h3 {
    font-size: 1.5em;
    color: #333;
}

.aba p {
    font-size: 1em;
    margin-bottom: 30px;
    color: #727272;
    line-height: 1.5;
}

@media (max-width: 885px) {
    .aba {
        padding: 10px;
    }

    .aba h2 {
        font-size: 1.5em;
    }

    .aba h3 {
        font-size: 1.2em;
    }

    .aba p {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .aba.contato h3 {
        color: inherit !important;
        text-decoration: none !important;
        font: inherit !important;
        pointer-events: none !important;
    }

    .aba.contato h3 a {
        color: inherit !important;
        text-decoration: none !important;
        pointer-events: none !important;
    }
    
    .aba.contato h3 {
        display: inline-block !important;
        white-space: nowrap !important;
    }
}
/* FIM DAS PÁGINAS ADICIONAIS */