/* Layout >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* Variáveis */
:root {
    --azulClaro: #9cdcfe;
    --azulMedio: #3498db;
    --branco: #fff;
    --cinzaClaro: #e8e8e8;
    --cinzaMedio: #a1a1a1;
    --cinzaEscuro: #343538;
    --dourado: #ffc90e;
    --preto: #000;
    --rosa: #bc82b6;
    --roxo: #2b085a;
    --verde: #25d366;
    --vermelho: #ff0000;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    margin: 0 auto;
}

/* Botão */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    color: var(--branco);
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 180, 255, 0.25);
}

/* Cartão */
.card {
    width: 341px;
    height: 520px;
    background-color: var(--cinzaClaro);
    margin-bottom: 25px;
    border: 2px solid var(--azulClaro);
    text-align: center;
    /*border-radius: 25px;*/
}

/*.card img {
    border-radius: 25px 25px 0px 0px;
}*/

.card h2 {
    font-size: 1.3rem;
    margin: 15px 0px;
}

.card p {
    color: var(--cinzaEscuro);
    text-align: left;
    padding: 0px 15px 30px 15px;
}

/* Topo do site */
#topo {
    position: fixed;
    right: 15px;
    bottom: 10px;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Fim - Layout <<<<<<<<<<<<<<<<<<<<<<<<< */


/* Smartphone portrait >>>>>>>>>>>>>>>>>> */

/* Cabeçalho */
header {
    height: 65px;
    background-color: var(--preto);
}

.logo img {
    width: 128px;
    height: 128px;
}

#check {
    display: none;
}

label {
    font-size: 3rem;
    color: rgba(156, 220, 254, 0.75);
    position: fixed;
    top: 5px;
    right: 15px;
}

nav ul {
    list-style: none;
    height: 100vh;
    position: fixed;
    top: 65px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 65%;
    right: -65%;
    transition: all 0.5s;
}

/* ação para a caixa checkbox */
/* quando selecionada mudar ul */
#check:checked~ul {
    right: 0px;
}

nav ul li {
    padding: 20px;
    border-bottom: 1px solid var(--cinzaEscuro);
    text-align: right;
}

nav ul li a {
    text-decoration: none;
    color: var(--azulClaro);
}

/* Principal */
main {
    height: 50vh;
    background: url(img/banner.jpg);
    background-size: cover;
    background-position: center;
}

main .container {
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main h1 {
    color: var(--branco);
    font-family: "Koulen", sans-serif;
    font-size: 1.9rem;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
}

main h2 {
    color: var(--dourado);
    font-size: 1.7rem;
    font-weight: 900;
    text-shadow: 0px 5px 10px var(--preto), 0px 10px 10px rgba(0, 0, 0, 0.15), 0px 15px 15px rgba(0, 0, 0, 0.1), 0px 20px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Destaque */
#destaque {
    padding: 50px 10px;
    background: url(./img/background.jpg);
    background-size: cover;
    background-position: center;
}

#destaque .container {
    flex-direction: column;
}

#hero {
    text-align: center;
}

#hero img {
    width: 300px;
    height: 300px;
    margin-bottom: 25px;
}

.hero-text h2 {
    font-size: 1.6rem;
    color: var(--dourado);
    margin-bottom: 15px;
}

.hero-text p {
    color: var(--branco);
}

.topic {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.topic p {
    margin-left: 15px;
}

/* Sobre */
#sobre {
    padding: 50px 10px;
    background-color: var(--roxo);
}

#sobre .container {
    flex-direction: column;
}

#about h2,
p {
    color: var(--branco);
}

#about h2 {
    margin-bottom: 15px;
    font-size: 1.9rem;
}

#video {
    text-align: center;
}

#video iframe {
    border: 1px solid var(--azulClaro);
    margin-top: 50px;
    width: 340px;
    height: 191px;
}

/* Faixa */
#faixa {
    padding: 50px 10px;
    background: url(./img/background.jpg);
    background-size: cover;
    background-position: center;
}

#faixa .container {
    flex-direction: column;
}

.range-text h2 {
    color: var(--branco);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0px 10px;
}

.range-text p {
    margin-top: 15px;
}

#btn-telegram,
#btn-whatsapp {
    margin-top: 30px;
    text-align: center;
}

#btn-telegram .btn {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    box-shadow: none;
}

#btn-whatsapp .btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 14px 12px;
    box-shadow: none;
}

.qrcode {
    display: none;
}

#tele {
    display: none;
}

/* Cartões */
#parceria {
    background-color: var(--roxo);
    padding: 50px 0px 25px 0px;
}

#parceria .container {
    flex-direction: column;
    align-items: center;
}

#parceria .btn {
    box-shadow: none;
    width: 240px;
    justify-content: center;
}

/* Contato */
#contato {
    padding: 25px 10px 50px 10px;
    background: url(./img/background.jpg);
    background-size: cover;
    background-position: center;
}

#contato .container {
    flex-direction: column;
}

#mapa iframe {
    max-width: 100%;
}

#endereco img {
    width: 90px;
    height: 90px;
}

#endereco .topic {
    margin-bottom: 20px;
}

#zap {
    font-weight: 600;
    font-size: 1.75rem;
}

#local {
    margin: 20px 0px 25px 0px;
}

/* Rodapé */
footer {
    padding: 50px 0px;
    background-color: var(--preto);
    text-align: center;
    border-top: 3px solid var(--cinzaEscuro);
}

footer .container {
    flex-direction: column-reverse;
}

footer p {
    color: var(--cinzaClaro);
}

footer a {
    text-decoration: none;
    color: var(--cinzaMedio)
}

#social {
    margin-bottom: 25px;
}

#social a {
    margin: 0px 2px;
}

/* Fim - Smartphone portrait <<<<<<<<<<<< */


/* Smartphone landscape >>>>>>>>>>>>>>>>> */

@media (min-width: 576px) {

    /* Layout */
    .container {
        max-width: 560px;
    }

    /* Cabeçalho */
    nav ul {
        width: 40%;
        right: -40%;
    }

    /* Principal */
    main {
        height: 75vh;
    }

    main h1 {
        font-size: 2.75rem;
    }

    main h2 {
        font-size: 2.5rem;
    }

    /* Destaque */
    #destaque {
        padding: 50px 0px;
    }

    #destaque .container {
        flex-direction: row;
        align-items: center;
    }

    #hero {
        text-align: left;
    }

    #hero img {
        width: 200px;
        height: 200px;
        margin: 0px 30px 0px 0px;
    }

    .topic {
        display: none;
    }

    /* Sobre */
    #video iframe {
        width: 560px;
        height: 315px;
    }

    /* Faixa */
    #faixa {
        padding: 50px 0px;
    }

    .range-text .topic {
        display: flex;
    }

    #btn-telegram,
    #btn-whatsapp {
        float: left;
    }

    #btn-telegram {
        margin-left: 25px;
    }

    /* Contato */
    #endereco .topic {
        display: flex;
    }
}

/* Fim - Smartphone landscape <<<<<<<<<<< */


/* Tablet portrait >>>>>>>>>>>>>>>>>>>>>> */

@media (min-width: 768px) {

    /* Layout */
    .container {
        max-width: 720px;
    }

    /* Principal */
    main h1 {
        font-size: 3.9rem;
    }

    main h2 {
        font-size: 3rem;
    }
}

/* Fim - Tablet portrait <<<<<<<<<<<<<<<< */


/* Tablet landscape >>>>>>>>>>>>>>>>>>>>> */

@media (min-width: 992px) {

    /* Layout */
    .container {
        max-width: 960px;
    }

    /* Cartões */
    #parceria .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .card {
        margin-right: 25px;
    }
}

/* Fim - Tablet landscape <<<<<<<<<<<<<<< */


/* Notebook / PC >>>>>>>>>>>>>>>>>>>>>>>> */

@media (min-width: 1200px) {

    /* Layout */
    .container {
        justify-content: space-between;
        max-width: 1140px;
    }

    /* Cabeçalho */
    header {
        height: 100px;
    }

    .logo img {
        width: 194px;
        height: 194px;
    }

    label {
        display: none;
    }

    nav ul {
        position: static;
        width: 100%;
        height: auto;
        background-color: transparent;
        margin-top: 20px;
    }

    nav ul li {
        float: left;
        border: 0;
    }

    nav ul li a:hover {
        color: var(--dourado);
    }

    /* Principal */
    main {
        height: 89vh;
    }

    /* Destaque */
    #destaque {
        background-attachment: fixed;
    }

    #hero img {
        width: 400px;
        height: 400px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .topic {
        display: flex;
    }

    /* Sobre */
    #sobre .container {
        flex-direction: row;
        align-items: center;
    }

    #video iframe {
        margin: 0px 0px 0px 50px;
    }

    /* Faixa */
    #faixa {
        background-attachment: fixed;
    }

    #faixa .container {
        flex-direction: row;
    }

    .qrcode {
        display: flex;
    }

    .qrcode img {
        width: 215px;
        height: 215px;
    }

    .range-text {
        padding: 0px 40px;
    }

    #btn-align {
        display: flex;
        justify-content: space-between;
    }

    #tele {
        display: inline;
    }

    /* Cartões */
    .card {
        margin-right: 0;
    }

    /* Contato */
    #contato {
        background-attachment: fixed;
        padding: 50px 0px;
    }

    #contato .container {
        flex-direction: row-reverse;
        justify-content: space-evenly;
    }

    #endereco img {
        width: 120px;
        height: 120px;
    }

    #mapa {
        padding-top: 8px;
    }

    #zap {
        font-size: 2rem;
    }

    #local {
        margin-top: 25px;
        max-width: 400px;
    }
}

/* Fim - Notebook / PC <<<<<<<<<<<<<<<<<< */


/* Full HD / 4K >>>>>>>>>>>>>>>>>>>>>>>>> */

@media (min-width: 1400px) {

    /* Layout */
    .container {
        max-width: 1320px;
    }

    /* Principal */
    main h1 {
        font-size: 6rem;
    }

    main h2 {
        font-size: 4rem;
    }

    /* Faixa */
    #btn-telegram {
        margin-left: 90px;
    }
}

/* Fim - Full HD / 4K <<<<<<<<<<<<<<<<<<< */