@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('../helvetica/style.css');

:root {
    --azul: rgb(19, 34, 196);
    --azul-dark: rgb(11, 19, 102);
    --azul-darkest: rgb(5, 6, 19);
    --azul-darkest-transparent: rgba(2, 5, 39, 0.2);
    --azul-light: rgb(27, 45, 241);
    --azul-light-transparent: rgba(27, 45, 241, 0.15);
    --azul-light-transparent-2: rgba(27, 45, 241, 0.4);
    --azul-transparent: rgba(6, 11, 65, 0.6);
    --amarelo: rgb(252, 250, 0);
}

* {
    padding: 0;
    margin: 0;
}

.fade-in-element {
    opacity: 0;
    transition: opacity 2.5s ease-in-out, transform 2.5s ease-in-out;
    transform: translateY(40px);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0);
}

.fade-right {
    position: absolute;
    z-index: 10;
    top: 10px;
    width: 60px;
    height: 320px;
    right: 0;
    background: linear-gradient(to right, transparent, var(--azul-darkest));
}

.fade-out {
    opacity: 0;
}

.fixed-alert {
    position: fixed;
    top: 20px;
    /* Distância do topo */
    right: 20px;
    /* Distância da direita */
    z-index: 9999;
}

.viewed {
    background-color: white;
    color: var(--azul);
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: rgb(245, 245, 245) !important;
}

header {
    width: 100%;
    height: 100px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    color: white;
    background-color: var(--azul-dark);
    z-index: 999;
    overflow: hidden;
    transition: all 0.8s ease;
}

header.nav-down {
    height: 100px;
}

header.nav-up {
    height: 60px;
}

.logo img {
    height: 60px;
    transition: all 0.5s ease;
}

.logo img:hover {
    transform: scale(0.9);
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    margin-bottom: 0;
    display: flex;
}

header nav ul li {
    display: flex;
    /* Altera para display flex */
    align-items: center;
    height: 100px;
    padding: 0 15px;
    transition: background-color 0.2s ease;
}

header nav ul.nav-down {
    height: 100px;
}

header nav ul.nav-up {
    height: 60px;
}

header nav ul li a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

header nav ul li a:hover {
    opacity: 0.8;
}

.toggle-menu {
    display: none;
    border: none !important;
    background-color: transparent;
    font-size: 25px;
    color: white;
}

menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--azul-darkest);
    opacity: 0;
    z-index: -1;
}

menu.opened {opacity: 1; z-index: 9999;}

menu nav {
    width: fit-content;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

menu nav ul {
    padding: 0;
}

menu nav ul li {
    list-style: none;
    margin-bottom: 40px;
    overflow: hidden;
    height: fit-content;
}

menu nav ul li a {
    color: white;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

menu ul li span {
    display: block;
    transform: translateY(60px);
    transition: transform 1.2s ease;
}

menu ul li span.animate {
    transform: translateY(0);
}

main {
    margin-top: 100px;
    max-width: 100vw;
}

section {
    padding: 120px 100px;
    padding-top: 140px;
    padding-bottom: 0;
    min-height: 100vh;
}

section .m-auto {
    margin: auto;
}

#banner-principal {
    height: fit-content;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 100vh;
}

#banner-principal .img-container {
    width: 550px;
    position: absolute;
    height: 380px;
    top: 40%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
    right: -180px;
    filter: grayscale(1);
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.2);
}

#banner-principal .img-container.fade-in-element {
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
    transform: translate(0, -50%);
}

#banner-principal .img-container.fade-in {
    transform: translate(-180px, -50%);
    opacity: 0.9 !important;
}

#banner-principal img {
    width: 100%;
    height: 100%;
}

#banner-principal .fade-bottom {
    left: 0;
    width: 100%;
    height: 120px;
    position: absolute;
    z-index: 11;
    bottom: 40px;
    background: linear-gradient(to bottom, transparent, white);
}

#banner-principal .content {
    position: absolute;
    width: fit-content;
    top: 40%;
    left: 40px;
    z-index: 3;
    color: white;
    transform: translateY(-50%);
}

#banner-principal h1 {
    color: var(--azul-dark);
    text-shadow: rgba(0, 0, 0, 0.1) 0.08em 0.08em 0em;
    font-size: 50px;
    margin-top: 0;
    font-weight: 600;
    margin-bottom: 20px;
}

#banner-principal h1.fade-in-element {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

#banner-principal p {
    color: rgb(120, 120, 120);
    margin-bottom: 50px;
    font-size: 20px;
    max-width: 700px;
}

#banner-principal p.fade-in-element {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition-delay: 0.5s;
}

.opcoes {
    display: flex;
    align-items: center;
}

.opcoes.fade-in-element {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition-delay: 1s;
}

#saiba-mais {
    width: 140px;
    height: 50px;
    border: none;
    padding: 2px;
    background-color: rgb(210, 210, 210);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#saiba-mais div {
    width: 100%;
    height: 100%;
    background-color: white;
    color: var(--azul-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    position: absolute;
    background-color: var(--azul-dark);
    transition: all 2s ease;
}

.vertical1,
.vertical2,
.vertical3,
.vertical4 {
    width: 2px;
    height: 50px;
}

.vertical1 {
    bottom: 25px;
    left: 0;
}

.vertical2 {
    top: 25px;
    right: 0;
}

.vertical3 {
    top: 165px;
    left: 0;
}

.vertical4 {
    bottom: 165px;
    right: 0;
}

.horizontal1,
.horizontal2 {
    width: 50px;
    height: 2px;
}

.horizontal1 {
    top: 0;
    left: -25px;
}

.horizontal2 {
    bottom: 0;
    right: -25px;
}

#saiba-mais:hover .horizontal1 {
    transform: translateX(140px);
}

#saiba-mais:hover .horizontal2 {
    transform: translateX(-140px);
}

#saiba-mais:hover .vertical1 {
    transform: translateY(-140px);
}

#saiba-mais:hover .vertical2 {
    transform: translateY(140px);
}

#saiba-mais:hover .vertical3 {
    transform: translateY(-140px);
}

#saiba-mais:hover .vertical4 {
    transform: translateY(140px);
}

.redes-sociais {
    margin-left: 40px;
    display: flex;
}

.redes-sociais a {
    margin-left: 10px;
    text-decoration: none;
}

.redes-sociais button {
    border: none;
    color: var(--azul-dark);
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.redes-sociais button:hover {
    background-color: rgba(209, 209, 209, 0.5);
}

.redes-sociais button i {
    font-size: 22px;
}

.primary-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    display: block;
    margin: auto;
    font-weight: 700;
    background-color: var(--azul);
    color: white;
    transition: all 0.5s ease;
}

.primary-btn:hover {
    box-shadow: 0px 0px 12px var(--azul-light);
    background-color: var(--azul-light);
}

section .titulo {
    color: var(--azul-dark);
    font-weight: 700;
    font-size: 30px;
    font-family: 'Helvetica Now Display', sans-serif;
    margin: 100px auto;
    margin-top: 0px;
    width: fit-content;
    text-align: center;
}

section .titulo::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: calc(50% - 20px);
    /* Posiciona o traço no centro inicialmente */
    width: 40px;
    /* Define a largura inicial como metade do traço */
    height: 3px;
    background-color: var(--azul-dark);
    transform-origin: center;
    /* Define o ponto de origem da transformação */
    transform: scaleX(0);
    /* Inicia o traço com largura zero */
    transition: transform 2.5s ease;
    /* Adiciona uma transição suave na transformação */
}

section .titulo.fade-in::after {
    transform: scaleX(1);
    /* Aumenta a largura para o tamanho completo do traço */
}

#sobre img {
    width: 350px;
    min-height: 200px;
    background-color: rgb(247, 247, 247);
    margin-bottom: 30px;
    margin-right: 30px;
    float: left;
}

#sobre a {
    background-color: rgb(248, 248, 248);
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--azul-dark);
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.8s ease;
    border-bottom: 4px solid transparent;
}

#sobre a:hover {
    background-color: var(--azul-dark);
    color: white;
}

#sobre p {
    padding: 0 80px;
    text-align: justify;
    line-height: 1.8em;
}

#diretoria {
    padding-bottom: 100px;
}

.membro .rounded-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.membro .rounded-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membro {
    margin-bottom: 40px;
}

.membro h4 {
    color: var(--azul-darkest);
}

.ver-mais {
    padding: 10px;
    height: fit-content;
    margin: 30px auto;
    width: fit-content;
}

.ver-mais a {
    text-decoration: none;
    position: relative;
    color: var(--azul-dark);
    padding-bottom: 8px;
    font-weight: 600;
}

.ver-mais a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: var(--azul-dark);
    transition: width 0.5s ease;
}

.ver-mais a:hover::before {
    width: 100%;
    /* Largura que a linha se estenderá */
}

#galeria {
    padding-top: 80px;
    padding-left: 0;
    padding-right: 0;
    background-color: var(--azul-darkest);
    padding-bottom: 100px;
}

#galeria p {
    color: #ffffff;
}

#galeria .arrow {
    top: 45%;
}

#galeria .titulo {
    color: white;
    margin-bottom: 0;
}

#galeria .titulo::after {
    background-color: white;
}

.galeria-box {
    width: 100%;
    min-height: 500px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.galeria-box .container {
    overflow: hidden;
    padding: 20px 10px;
    position: relative;
}

#galeria .row-album {
    display: flex;
    transition: transform 0.5s ease;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 10;
}

/* Estilos para os botões de navegação */
#galeria .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#galeria .nav-btn-galeria-left {
    left: 30px;
}

#galeria .nav-btn-galeria-right {
    right: 60px;
}

.album {
    margin: 0 20px;
    max-width: 300px;
    min-width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 3px 15px rgba(255, 255, 255, 0.15);
    flex: 0 0 auto;
}

.album:before,
.album:after {
    content: '';
    position: absolute;
    background-color: rgba(90, 90, 90, 0.8);
    height: 0.5px;
}

.album:before {
    width: 85%;
    top: -4px;
}

.album:after {
    width: 90%;
    top: -2px;
}

.album:hover:before {
    top: -6px;
    background-color: rgba(150, 150, 150, 0.7);
}

.album:hover:after {
    top: -3px;
    background-color: rgba(150, 150, 150, 0.7);
}

.album-container {
    max-width: 300px;
    min-width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 2;
    background-color: transparent;
    transition: all 1s ease;
}

.album img {
    height: 300px;
    transition: all 1s ease;
}

.album-info {
    width: 100%;
    height: fit-content;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0;
    z-index: 3;
    color: white;
    text-shadow: rgba(0, 0, 0, 0.4) 0.08em 0.08em 0em;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}

.titulo-album {
    width: 80%;
    font-size: 18px;
    transition: all 1s ease;
}

.bottom-album {
    font-size: 14px;
    text-shadow: rgba(0, 0, 0, 0.8) 0.08em 0.08em 0em;
    font-weight: bold;
    opacity: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 10%;
    transition: all 1s ease;
    display: flex;
    justify-content: space-between;
}

.album:hover .album-overlay {
    background-color: var(--azul-transparent);
}

.album:hover .titulo-album {
    transform: translateY(-40px);
}

.album:hover .bottom-album {
    opacity: 1;
    transform: translateY(-20px);
}

.album:hover img {
    transform: scale(1.05);
    filter: grayscale(1);
}

#contato {
    padding-bottom: 120px;
}

#contato form {
    margin-bottom: 50px;
}

#contato .opcao {
    display: flex;
    margin-bottom: 30px;
    height: 120px;
    width: 100%;
    border-radius: 8px;
    border: none;
    align-items: center;
    background-color: white;
    color: rgb(119, 119, 119);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

#contato .opcao .icone {
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contato .opcao .icone i {
    font-size: 28px;
    margin: 0;
    color: var(--azul);
}

#contato .opcao p {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
    text-align: start;
}

#contato .opcao span {
    font-size: 15px;
    text-align: start;
    display: block;
}

#contato textarea {
    min-height: 150px;
}

#contato #enviar {
    margin-right: 0;
}

#FAQ {
    width: 100%;
    padding-bottom: 160px;
    padding-top: 20px;
}

.accordion-1 {
    padding: 0;
}

.accordion-1 li {
    font-weight: bold;
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    cursor: pointer;
    width: 100%;
    padding: 20px 0px 20px 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.accordion-1 li p {
    margin: 0px;
    max-width: 90%;
}

.accordion-1 .pergunta {
    color: rgb(120, 120, 120);
}

.resposta {
    color: rgb(90, 90, 90);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.pergunta.ativo .resposta {
    max-height: 600px;
    animation: fade 1s ease-in-out;
}

.pergunta.ativo svg {
    transform: rotate(180deg);
}

#FAQ svg {
    margin-top: 10px;
    fill: rgba(0, 0, 0, 0.7);
    transition: transform 1s ease-in;
}

.accordion-1 {
    width: 800px;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    padding: 80px 0;
    min-height: 340px;
    font-family: 'Helvetica Now Display', sans-serif;
}

footer a {
    color: rgb(130, 130, 130);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.6s ease;
}

footer a:hover {
    opacity: 0.8;
}

footer p {
    color: rgb(140, 140, 140);
    font-size: 15px;
    margin-bottom: 5px;
}

.logo2 img {
    height: 50px;
    margin-bottom: 20px;
}

footer .content {
    width: 40%;
    margin-right: 40px;
}

footer h4 {
    font-weight: 800;
    font-size: 21px;
    margin-bottom: 15px;
    color: rgb(90, 90, 90);
}

.vip-box {
    min-width: 200px;
    max-width: 200px;
}

.vip-box img {
    width: 180px;
}

.whatsapp-button {
    position: fixed;
    bottom: 35px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--azul);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
    z-index: 995;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out;
}

.show {
    opacity: 1;
    transform: translate(0, 0);
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button img {
    height: 35px;
}

.albumPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9995;
}

.arrow {
    position: absolute;
    top: 40%;
    cursor: pointer;
    z-index: 10;
}

.arrow:hover svg path {
    fill: var(--azul-light);
}

.foto-preview {
    left: 40px;
}

.foto-next {
    right: 40px;
}

.close-popup {
    position: absolute;
    top: 30px;
    right: 40px;
    padding: 0;
    z-index: 9996;
}

.close {
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.close-ring {
    transform: rotate(-90deg);
    position: relative;
}

.close-ring__circle {
    stroke-dasharray: 188.496;
    /* Circunferência do círculo completo (2 * π * raio) */
    stroke-dashoffset: 188.496;
    transition: stroke-dashoffset 0.6s;
    /* Ajuste o tempo da animação para 5 segundos */
}

.x {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.toggle-menu svg {
    width: 38px;
    /* Defina a largura desejada */
    height: 16px;
    /* Defina a altura desejada */
}

.popup-overlay {
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.albumPopup .content {
    width: 700px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    z-index: 9996;
}

.foto-container {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.foto-container img {
    height: 400px;
}

.foto-container .legenda {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    opacity: 0;
    transition: all 1s ease;
    text-align: center;
}

.foto-container .legenda span {
    transform: translateY(20px);
    transition: all 1s ease;
    color: white;
    text-shadow: rgba(0, 0, 0, 0.8) 0.08em 0.08em 0em;
}


.foto-container:hover .legenda {
    opacity: 1;
}

.foto-container:hover .legenda span {
    transform: translateY(0px);
}

.carrossel-fotos {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.carrossel-fotos .nav-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-fotos .nav-btn:hover {
    background-color: rgba(45, 45, 45, 0.8);
}

.carrossel-fotos .nav-btn-left {
    margin-right: 10px;
}

.carrossel-fotos .nav-btn-right {
    margin-left: 10px;
}

.fotos {
    overflow: hidden;
    width: 420px;
    height: 80px;
}

.fotos-lista {
    display: flex;
    padding: 0;
    height: 80px;
    transition: all 1s ease;
    background-color: rgba(170, 170, 170, 0.1);
}

.foto {
    list-style: none;
    width: 120px;
    min-width: 120px;
    height: 80px;
    margin: 0 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.foto.selecionada {
    border: 3px solid var(--azul-light);
}

.foto:hover img {
    filter: grayscale(1);
    transform: scale(1.1);
}

.foto img {
    height: 80px;
    transition: all 0.5s ease;
}

#denuncia {
    min-height: calc(100vh - 100px);
    padding-top: 50px;
    background-image: url('../img/denuncia.jpg');
    /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.overlay-denuncia {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--azul-transparent);
}

.alerta-titulo {
    width: fit-content;
    font-weight: bold;
    color: white;
    text-shadow: rgba(0, 0, 0, 0.4) 0.08em 0.08em 0em;
    margin: auto;
    margin-bottom: 40px;
}

#denuncia p {
    color: rgb(189, 189, 189);
    text-align: center;
}

#denuncia .row {
    width: 100%;
    transform: translateY(-60px);
}

#denuncia textarea,
#denuncia input {
    background-color: var(--azul-darkest-transparent);
    border: none;
    outline: none;
    color: white;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.05) !important;
}

#denuncia textarea:focus,
#denuncia input:focus {
    box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.2) !important;
}

#denuncia textarea {
    min-height: 150px;
    max-height: 150px;
    overflow: auto;
}

#denuncia ::placeholder {
    color: rgba(255, 255, 255, 0.6);
    /* Substitua pela cor desejada */
}

@media (min-width: 900px) {
    .vip-box {
        padding: 0 !important;
    }
}

@media(max-width: 1280px) {

    #banner-principal h1 {
        font-size: 48px;
    }

    #banner-principal .img-container {
        width: 520px;
        height: 350px;
    }

}

@media(max-width: 1200px) {

    #banner-principal h1 {
        font-size: 43px;
    }

    #banner-principal p {
        max-width: 600px;
    }

    #banner-principal .img-container {
        width: 480px;
        height: 330px;
    }

}

@media(max-width: 1024px) {

    #banner-principal h1 {
        font-size: 36px;
    }

    #banner-principal p {
        max-width: 500px;
        font-size: 16px;
    }

    #banner-principal .img-container {
        width: 440px;
        height: 310px;
    }

}

@media(max-width: 950px) {

    #sobre p {
        padding: 0;
    }

    .accordion-1 {
        width: 600px;
    }

    nav li {
        font-size: 13px;
    }
}

@media(max-width: 950px) {

    #banner-principal h1 {
        font-size: 34px;
    }

    #banner-principal p {
        max-width: 480px;
        font-size: 15px;
    }

    #banner-principal .img-container {
        width: 380px;
        height: 280px;
    }

}

@media(max-width: 900px) {

    #banner-principal .img-container {
        width: 360px;
        height: 270px;
    }

    .accordion-1 {
        width: 700px;
    }

    section .titulo {
        font-size: 25px;
    }

    #sobre p {
        font-size: 15px;
    }
}

@media(max-width: 850px) {
    header nav {
        display: none;
    }

    .toggle-menu {
        display: block;
    }

    section {
        padding-left: 50px;
        padding-right: 50px;
    }

    #banner-principal h1 {
        font-size: 32px;
    }

    #banner-principal p {
        max-width: 450px;
        font-size: 14px;
    }

    #banner-principal .img-container {
        width: 320px;
        height: 250px;
    }
}

@media(max-width: 820px) {

    #banner-principal .content {
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 700px;
    }

    #banner-principal h1 {
        font-size: 48px;
        text-align: center;
        margin-bottom: 30px;
    }

    #banner-principal p {
        max-width: 600px;
        font-size: 20px;
        text-align: center;
        margin: auto;
        margin-bottom: 80px;
    }

    .opcoes {
        width: fit-content;
        margin: auto;
    }

    #banner-principal .img-container {
        display: none;
    }
}

@media(max-width: 770px) {

    #banner-principal h1 {
        font-size: 40px;
    }

    #banner-principal p {
        max-width: 500px;
        font-size: 16px;
    }

    .accordion-1 {
        width: 450px;
    }
}

@media(max-width: 530px) {

    #banner-principal .content {
        min-width: 460px;
    }

    #banner-principal h1 {
        font-size: 26px;
    }

    #banner-principal p {
        max-width: 360px;
        font-size: 14px;
    }

    #sobre img {
        width: 100%;
    }

    .accordion-1 {
        width: 300px;
    }

    section {
        min-height: 70vh;
    }

    #contato {padding-bottom: 120px;}

    #contato .mb-3.row {display: block;}

    #contato .mb-3.row .col {padding: 0; margin-bottom: 1rem !important;}

    #contato .opcao .icone {
        padding: 25px 30px;
    }

    #contato .opcao .icone i {
        font-size: 18px;
    }

    #contato .opcao p {
        font-size: 16px;
    }
    
    #contato .opcao span {
        font-size: 13px;
    }

    .accordion-1 li p {
        font-size: 17px;
    }
}

@media(max-width: 375px) {

    #banner-principal .content {
        min-width: 390px;
    }

}

@media(max-width: 375px) {

    #banner-principal .content {
        min-width: 375px;
    }

    #banner-principal h1 {
        font-size: 24px;
    }

    #saiba-mais {font-size: 15px;}

    .redes-sociais {margin-left: 20px;}

    footer .col-md-8 {
        display: block !important;
    }

    footer .col-md-8 .content {
        margin-bottom: 80px;
    }
}

@media(min-height: 1200px) {

    #banner-principal .content {
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 700px;
    }

    #banner-principal h1 {
        font-size: 48px;
        text-align: center;
        margin-bottom: 30px;
    }

    #banner-principal p {
        max-width: 600px;
        font-size: 20px;
        text-align: center;
        margin: auto;
        margin-bottom: 80px;
    }

    .opcoes {
        width: fit-content;
        margin: auto;
    }

    #banner-principal .img-container {
        display: none;
    }
}

@media (min-height: 912px) {
    section {
        min-height: 70vh;
    }
}

@media (min-height: 1200px) {
    section {
        min-height: 60vh;
    }
}

@media (max-height: 550px) {
    #banner-principal {
        min-height: 120vh;
    }

    #banner-principal .content {
        top: 35%;
    }

    #banner-principal p {
        margin-bottom: 30px;
    }

    #banner-principal .img-container {
        top: 35%;
    }

    .whatsapp-button {
        bottom: 20px;
    }
}

@media (max-height: 400px) {
    #banner-principal {
        min-height: 150vh;
    }
}