/* importando fonte de texto */
@import url('https://fonts.googleapis.com/css2?family=Montserrat');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

html {
    scroll-behavior: smooth;
}

/* Composição base do site */
body {
    margin: 0;
    background-color: #0e0e0e;
    color: #ffffff;
    font-family: "montserrat";
    height: 100%;
    transition: background 0.3s, color 0.3s;
}

/* Header e nav */

header {
    height: 13vh;
    display: flex;
    position: fixed;
    background-color: rgba(14, 14, 14, 0.8);
    backdrop-filter: blur(5px);
    width: 100%;
    z-index: 99;
    margin-top: -40px;
}

.light header {
    background-color: rgba(255, 252, 240, 0.8);
}

header img {
    margin: 15px;
    width: 5vw;
}

header a {
    margin: 0;
}

nav {
    font-size: 16px;
    justify-content: space-between;
    display: inline-flex;
}

nav .caminhos {
    color: #fff;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

nav .caminhos:hover {
    color: #CBA642;
}

.caminhos.ativo {
    color: #CBA642;
    transition: 0.2s ease;
}

/* Footer */

footer {
    background-color: #000000;
    color: #ffffff;
    padding: 25px;
    display: block;
    margin-top: 2%;
    width: 100;
}

footer .logo-copy img {
    width: 5vw;
}

footer .logo-copy {
    display: block;
    align-items: center;
    text-align: center;
    width: 16vw;
}

footer .logo-copy p {
    font-weight: 500;
    font-size: 18px;
}

footer svg {
    width: 25px;
    margin-top: 10px;
    transition: 0.4s;
    fill: #ffffff;
    cursor: pointer;
}

footer svg:hover {
    fill: #CBA642;
}

footer a {
    color: #ffffff;
    font-size: 16px;
    display: block;
}

.logo-footer {
    float: inline-end;
    margin-top: -25px;
}


footer .contatos {
    display: flex;
    gap: 15%;
}

.footer-icons {
    display: flex;
    gap: 10%;
    justify-content: center;
    width: 17vw;
}

footer .contatos p {
    display: inline;
}

.horarios {
    word-wrap: nowrap;
    text-align: right;
    font-size: 18px;
    width: 17vw;
}

/* TELA - CONTATO */

.agrupar-contatos {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 2%;
}

.sociais-icons {
    display: flex;
    gap: 10%;
    justify-content: center;
    width: 17vw;
}

.container svg,
.container2 svg,
.container3 svg {
    width: 40px;
    margin-top: 10px;
    transition: 0.4s;
    fill: #ffffff;
}

.container svg:hover {
    fill: #CBA642;
}

.container2 svg:hover,
.container3 svg:hover {
    fill: #000000;
}

.container a,
.container2 a,
.container3 a {
    color: #ffffff;
}

.container,
.container2,
.container3 {
    background-color: hsla(0, 0%, 0%, 0.8);
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 45vw;
    padding: 15px 10px;
    text-align: left;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}


.container2 button {
border:none;
background:none;
background-color:none;
}

.container {
    margin-bottom: 0;
    height: 40vh;
    box-shadow: 0 0 20px #cba64233;
}

.container2 {
    background-color: #CBA642;
    height: 50vh;
}

.container3 {
    background-color: #CBA642;
    height: 40vh;
    display: flex;
    flex-direction: column;
    text-wrap: nowrap;
}

.container2,
.container3 {
    margin-top: 2%;
}

.container2 img {
    width: 8vw;
    border-radius: 10px;
}

.paredinha,
.paredinha1 {
    height: 30vh;
    border: 1px solid #ffffff;
}

.paredinha1 {
    border: 1px solid #CBA642;
}

.alinhe-se {
    margin-left: 0;
    display: block;
}

.porfavor {
    display: flex;
    flex-direction: column;
    height: 40vh;
    width: 16vw;
}

iframe {
    border-radius: 10px;
    width: 45vw;
    height: 50vh;
    cursor: pointer;
}

/* TELA - SOBRE NÓS */

.primeira-divisao {
    display: flex;
    width: 100%;
    margin-top: 5%;
    margin-bottom: 8%;
}

.primeira-divisao img {
    width: 26vw;
    border-radius: 10px;
    border: 4px solid rgba(203, 166, 66, 0.7);
}

.sobre-texto {
    width: 30vw;
    font-size: 25px;
}

.sobre-texto h1 {
    font-size: 35px;
    font-weight: 900;
    text-align: left;
}

.m-v-v {
    display: flex;
    margin-top: 4%;
    margin-bottom: 10%;
}

.card1 {
    width: 100vw;
    height: 40vh;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card1:hover {
    transform: translateY(-5px);
}

.card1-content,
.card1-hover-content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card1-content {
    background-color: rgba(203, 166, 66, 0.4);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card1-content h1 {
    font-size: 70px;
    color: #CBA642;
}

.card1-content svg {
    fill: #CBA642;
    stroke: #CBA642;
    width: 10vw;
}

.card1-hover-content {
    background-color: #CBA642;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    z-index: 2;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card1-hover-content li {
    font-size: 1.8rem;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 20px;
}

.card1:hover .card1-content {
    opacity: 0;
    transform: translateY(-20px);
}

.card1:hover .card1-hover-content {
    opacity: 1;
    transform: translateY(0);
}

/* HOME */

.home-page {
    display: flex;
    margin-top: 2%;
}

.texto-home {
    display: flex;
    flex-direction: column;
    width: 40vw;
}

.texto-home h1 {
    font-size: 150px;
    text-align: center;
    font-family: "Inria Serif", serif;
    margin-bottom: -30px;
}


.texto-home h2 {
    text-align: center;
    font-size: 55px;
    font-weight: 500;
}

.texto-home p {
    font-size: 26px;
    text-align: left;
    text-wrap: nowrap;
    font-family: "montserrat";
    margin-bottom: 4%;
}

.home-page img {
    height: 87vh;
    margin-right: 0;
    margin-top: 4.2%;
    border-radius: 10px 0 0 10px;
    object-fit: contain;
}

.saiba-mais button {
    background-color: rgba(203, 166, 66, 0.4);
    padding: 20px;
    min-width: 10vw;
    height: 6vh;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #CBA642;
    font-size: 26px;
    text-wrap: nowrap;
    transition: 0.4s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.saiba-mais button:hover {
    background-color: #CBA642;
    color: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 40px 0 40px 0;
    gap: 3%;
}

.tab-btn {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.4);
    padding: 15px 30px;
    width: 20vw;
    height: 18vh;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-btn.active svg {
    fill: #CBA642;
}

.tab-btn svg,
.tab-btn.active svg {
    margin-top: 8px;
    width: 5vw;
}

.tab-btn {
    fill: rgba(255, 255, 255, 0.4);
}

.tab-btn.active {
    background-color: rgba(203, 166, 66, 0.4);
    color: #CBA642;
}

.tab-container {
    position: relative;
    width: 100%;
    max-width: 70vw;
    margin: auto;
    min-height: 320px;
    margin-bottom: 10%;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tab-content.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    position: relative;
}

.card {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    width: 15vw;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 20px #cba64233;
    transition: transform 0.3s;
    font-size: 24px;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 80%;
    }
}

h1 {
    font-size: 50px;
    font-weight: 400;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
}

.category-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* modo dark-light */

#toggle-theme {
    position: fixed;
    top: 70%;
    right: 5px;
    z-index: 1000;
    cursor: move;
    border: none;
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #CBA642;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(203, 166, 66, 0.6);
    backdrop-filter: blur(5px);
}

#toggle-theme svg {
    fill: #CBA642;
    width: 25px;
}

.light #toggle-theme {
    background-color: rgba(255, 249, 224, 0.7);
    color: #CBA642;
}

#toggle-theme svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.light body {
    background-color: #FFFCF0;
    color: #000000;
}

.light nav .caminhos {
    color: #000000;
}

.light .card {
    background-color: rgba(255, 252, 240, 0.8);
    box-shadow: 0 0 20px rgba(203, 166, 66, 0.4);
}
.light .container {
    background-color: rgba(255, 252, 240, 0.8);
    box-shadow: 0 0 20px rgba(203, 166, 66, 0.4);
    color: #000000;
}
.light .container a {
    color: #000000;
}
.light .container svg {
    fill: #000000;
}
.light .container svg:hover {
    fill: #CBA642;
}

.light .tab-btn {
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.4);
}
.light .tab-btn svg {
    fill: rgba(0, 0, 0, 0.4);
}

.light .tab-btn.active {
    background-color: rgba(203, 166, 66, 0.4);
    color: #CBA642;
}
.light .tab-btn.active svg {
    fill: #CBA642;
}
.light nav .caminhos:hover {
    color: #CBA642;
}

/*.whatsapp-button {
  display: inline-block; /* Garante que o link se ajuste ao conteúdo */
  text-decoration: none; /* Remove o sublinhado padrão do link */
}*/

/*.whatsapp-button button {
  background: none; /* Remove fundo padrão do botão */
  border: none; /* Remove borda padrão */
  cursor: pointer; /* Mostra que é clicável */
  padding: 0; /* Remove padding padrão */
}*/

/*.whatsapp-button img {
  max-width: 100%; /* Torna a imagem responsiva */
  height: auto; /* Mantém a proporção */
}*/

.whatsapp-button {
    display: inline-block;
    text-decoration: none;
}

.whatsapp-button {
    display: inline-block;
    text-decoration: none;
}

.whatsapp-button button {
    background-color: #CBA642;
    color: #000000;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* Prefixos para máxima compatibilidade */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    /* Força hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.whatsapp-button button:hover {
    background-color: #D4B95B;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    /* Prefixos para transforms */
    -webkit-transform: translateY(-2px) translateZ(0);
    -moz-transform: translateY(-2px) translateZ(0);
    -o-transform: translateY(-2px) translateZ(0);
    transform: translateY(-2px) translateZ(0);
}