@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace&display=swap');


/*font-family: "Bruno Ace", "serif" 400 */
/* font-family: "Unbounded", serif 200-900 */



/* Aplica estilo em navegadores WebKit (Chrome, Edge, Opera, Safari) */
::-webkit-scrollbar {
    width: 6px;
    /* Largura da barra vertical */
    height: 6px;
    /* Altura da barra horizontal */
}

::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);
    /* fundo do trilho */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    /* cor do botão de rolagem */
    border-radius: 10px;
    backdrop-filter: blur(4px);
}


/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(0, 0, 0) rgba(255, 255, 255, 0.05);
}




html,
body {
    overflow-x: hidden !important;
}


body {
    font-family: "Bruno Ace", "serif" !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box !important;
    background: #313030 !important;
}

h2 {
    font-size: 1.9em;
}


.card-border{
    padding: 1rem !important;
    border-bottom: 2px solid white;
}

.card-border h2,p {
     color: #ffffff !important;
     margin-bottom: 1rem;
}



.conteiner::after {
        content: "";
        background: #ffffff !important;
        position: absolute;
        width: 1px;
        height: 95%;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 3%);
    }



.texto-decorado {
    position: relative;
    display: inline-block;
}

/* Linha superior na primeira letra */
.texto-decorado__superior::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: red;
    top: -5px;
    left: 0;
}

/* Linha inferior na última letra */
.texto-decorado__inferior::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: red;
    bottom: -5px;
    right: 0;
}

.graecie-barra-header {
    position: relative;
    height: 100vh;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.171), rgb(0, 0, 0)),
        url('img/gracie-barra-banner-todos.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: #fff;
    /* texto branco por cima do fundo escuro */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}



.graecie-barra-header img {
    width: 50px;
}


.graecie-barra-header-banner-video-play-button {
    width: 80px;
    height: 80px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    margin-top: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s infinite;
}

.graecie-barra-header-banner-video-play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


/* Criando as ondas do radar */
.graecie-barra-header-radar-effect {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.216);
    border-radius: 50%;
    animation: radar 1.5s infinite;
}

.graecie-barra-header-radar-effect:nth-child(1) {
    animation-delay: 0s;
}

.graecie-barra-header-radar-effect:nth-child(2) {
    animation-delay: 0.5s;
}

.graecie-barra-header-radar-effect:nth-child(3) {
    animation-delay: 1s;
}


.graecie-barra-header-banner-button-action {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: black;
    color: white;
    font-family: "Bruno Ace", "serif" !important;
    font-size: .9rem;
    text-decoration: none;
    position: relative;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);

}

.graecie-barra-header-banner-button-action:hover {
    background-color: #333;
}


.graecie-barra-benefit-banner {
    background: black;
}



.card-fisico {
    background: url(img/fisico.jpg) no-repeat center center/cover;
}

.card-defesa {
    background: url(img/defesa.png) no-repeat center center/cover;
}

.card-emocional {
    background: url(img/emocional.jpg) no-repeat center center/cover;
}



.card-teste {
    position: relative;
    width: 250px;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transition: 0.3s ease-in-out;
}

.card-teste::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.37);
    /* Efeito escuro */
    transition: background 0.3s ease-in-out;
}

.card-teste:hover::before {
    background: rgba(0, 0, 0, 0.8);
    /* Escurece um pouco mais no hover */
}

.card-teste .info-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

.card-teste:hover .info-hover {
    opacity: 1;
    transform: translateY(0);
    cursor: pointer;
}



.texto {
    position: absolute;
    bottom: 20px;
    color: white;
    font-size: 16px;
    font-family: "Bruno Ace", "serif" !important;
    text-align: center;
}

.canto {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(255, 0, 0);
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    clip-path: polygon(100% 0, 100% 4100%, 0 0);
    font-family: 'Arial', sans-serif;
}






.graecie-barra-versus {
    padding: 1.2rem;
    background-color: #000;
    /* Fundo preto */
    background-image: url(img/gracie-barra-banner-versus.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}


.graecie-barra-versus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.767), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0), #00000000);
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(4px);
    /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(4px);
    /* Compatibilidade Safari */
}


.graecie-barra-versus-card-negative {
    border: 3px solid rgba(112, 20, 20, 0.527);
}

.graecie-barra-versus-card-positive {
    border: 2px solid rgba(20, 112, 25, 0.527);
}


.graecie-barra-versus-card {
    width: 400px;
    height: 600px;
    background-color: rgba(27, 27, 27, 0.623);
    /* Cor semi-transparente */
    padding: 1.2rem;
    border-radius: 15px;
    z-index: 10;
    color: white;
    backdrop-filter: blur(12px);
    /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(12px);
    /* Compatibilidade Safari */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    /* Sombra suave */
}


.graecie-barra-versus-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.text-red {
    color: red;
}

.text-green {
    color: #00ff99;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.3rem;
}



.graecie-barra-teacher-card {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.graecie-barra-teacher-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.graecie-barra-teacher-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(55 7 7), rgb(0 0 0));
    color: white;
    padding: 20px;
}

.graecie-barra-teacher-name {
    font-weight: bold;
    font-size: 20px;
    color: red  !important;
}




.graecie-barra-place-training-title,
.graecie-barra-place-training-subtitle {
    color: #fff;
}


.graecie-barra-place-training-button {
    background: transparent;
    border: 1px solid #892A26;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #892A26;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    width: 200px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}


.graecie-barra-place-training-button:hover,
.graecie-barra-place-training-button:active {
    background-color: #892A26;
    background-position: 0 0;
    color: #ffffff;
}


#unidade-jd-esplanada img,
#unidade-itaici img {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


#graecie-barra-place-training-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.unidade img.scale-out {
    transform: scale(0.5);
    opacity: 0;
}

.unidade img.scale-in {
    transform: scale(1);
    opacity: 1;
}

.hidden {
    display: none !important;
}

.active-button {
    background-color: #892B23;
    background-position: 0 0;
    color: #ffffff;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.graecie-barra-faq-title,
.graecie-barra-faq-subtitle {
    font-family: "Bruno Ace", "serif" !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box !important;
}


#unidade-jd-esplanada,
#unidade-itaici {
    transition: all .5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}


.fade {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: all 0.5s ease-in-out, visibility 0.5s;
}

.show {
    opacity: 1;
    visibility: visible;
    position: relative;
}



.graecie-barra-teacher-card {
    width: 100%;
    max-width: 300px;
    border-radius: 51px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.graecie-barra-teacher-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}




.graecie-barra-teacher-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0), transparent);
    color: white;
    padding: 20px;
    height: 80px;

    /* Altura inicial */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: height 0.3s ease-in-out, justify-content 0.3s ease-in-out;
    visibility: visible;
    opacity: 1;
}


/* Nome e título sempre na parte inferior */
.graecie-barra-teacher-card-overlay .teacher-title,
.graecie-barra-teacher-card-overlay .graecie-barra-teacher-name {
    transition: transform 0.3s ease-in-out;
    color: #ff0800;
    font-size: 1.3rem;
}

/* Aumenta o overlay e reposiciona os textos ao passar o mouse */
.graecie-barra-teacher-card:hover .graecie-barra-teacher-card-overlay {
    height: 300px;
    justify-content: center;
    /* Move os textos para o meio */
    background: linear-gradient(to top, rgb(55 7 7), rgb(0 0 0));
}

.graecie-barra-teacher-card:hover .teacher-title,
.graecie-barra-teacher-card:hover .graecie-barra-teacher-name {
    transform: translateY(0px);
    /* Sobe o texto */

}

/* Informações adicionais ocultas inicialmente */
.graecie-barra-teacher-card-overlay .extra-info-list {
    display: none;
    font-size: .9rem;
    margin-top: 1rem !important;
}

/* Exibe informações adicionais ao passar o mouse */
.graecie-barra-teacher-card:hover .extra-info-list {
    display: block;
}



.extra-info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    font-size: 0.9rem;
    text-align: center;
}

.extra-info-list li {
    margin-top: 0.5rem;
}


.graecie-barra-teacher-card.show-overlay .extra-info {
    display: block;
}

.gracie-barra-timeline{
    background: url(img/bannerfaixa.png) no-repeat;
    background-size: contain;
}


.graecie-barra-teacher-firstaid-tarja {
    background-color: #892B23;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}


/* Contêiner do banner */
.banner-container {
    position: relative;
    width: 105%;
    overflow: hidden;
    transform: rotate(4deg) translate(-5px);
}

.banner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
    padding: 15px 0;
    background: rgb(5 5 5 / 48%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Texto animado */
.banner p {
    font-size: 20px;
    color: white;
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 10s linear infinite;
}

/* Animação de rolagem */
@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


.carousel-indicators {
    position: static !important;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-top: 2rem;
    border-radius: 50% !important;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.accordion {
    font-family: "Unbounded", "serif" !important;
    font-optical-sizing: auto;
    font-weight: normal;
    box-sizing: border-box;
}

.accordion-header h2 {
    text-align: center !important;
}

.accordion .accordion-item {
    border: 2px solid !important;
    border-radius: 6px !important;
    margin-bottom: 1rem;
    font-family: "Unbounded", "serif" !important;
    font-optical-sizing: auto;
    font-weight: normal;
    box-sizing: border-box;
    text-align: center;
}

.accordion-button {
    text-align: center !important;
}



.accordion-button:not(.collapsed) {
    color: rgb(255, 255, 255) !important;
    background-color: rgb(0, 0, 0) !important;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


/* Mobile reset: quando NÃO está em hover e NÃO tem a classe show-overlay */
@media (max-width: 768px) {

    .graecie-barra-teacher-card:not(.show-overlay) .graecie-barra-teacher-card-overlay {
        height: 80px;
        justify-content: flex-end;
        background: linear-gradient(to top, rgb(0, 0, 0), transparent);
    }

    .graecie-barra-teacher-card:not(.show-overlay) .extra-info-list {
        display: none;
    }


}


@media screen and (min-width: 900px) {



    .graecie-barra-header img {
        width: 100px;
    }


    .graecie-barra-header-banner-video-play-button {
        width: 100px;
        height: 100px;
        margin-top: 0;
    }

    .graecie-barra-header-banner-button-action {
        width: 30%;
        font-size: .9rem;
    }

    .graecie-barra-benefit-banner p {
        margin-top: 2em;
    }
}







.button-29 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    border-radius: 10px;
    height: 72px;
    padding: 5px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.082);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;

}

.button-29:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

/* Reflexo de luz ao passar o mouse */
.button-29::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 70%);
    transform: rotate(25deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.button-29:hover::before {
    top: 0%;
    left: 100%;
    transform: translate(-50%, -50%) rotate(25deg);
}




.button-30 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    border-radius: 10px;
    height: 72px;
    padding: 5px 30px;
    background: rgb(2, 2, 2);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.082);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;

}

.button-30:hover {
    background: rgb(0, 0, 0);
    transform: scale(1.03);
}

/* Reflexo de luz ao passar o mouse */
.button-30::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgb(0, 0, 0), rgba(20, 20, 20, 0) 70%);
    transform: rotate(25deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.button-30:hover::before {
    top: 0%;
    left: 100%;
    transform: translate(-50%, -50%) rotate(25deg);
}



.example-5 {
    position: relative;
}

.example-5 svg {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
}

.example-5 .line {
    stroke-dasharray: 260;
    stroke-width: 1px;
    fill: transparent;
    stroke: rgb(255, 255, 255);
    animation: svgAnimation 2.5s linear infinite;
}


.example-6 {
    position: relative;
}

.example-6 svg {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
}

.example-6 .line {
    stroke-dasharray: 260;
    stroke-width: .4px;
    fill: transparent;
    stroke: #00ff99;
    animation: svgAnimation 2.5s linear infinite;
}


.line-1 {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  max-width: 90vw;
  word-wrap: break-word;
  white-space: normal;
  position: relative;
}

.line-1::after {
  content: '|';
  animation: blinkTextCursor 0.7s steps(1) infinite;
  position: absolute;
}

@keyframes blinkTextCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


@keyframes svgAnimation {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 1000;
    }
}




@keyframes radar {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


