@charset "UTF-8";

@import url("https://use.typekit.net/mig4uil.css");

@import url('https://fonts.cdnfonts.com/css/kepler-std-3');

@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("../../fonts/HelveticaNowDisplay-Light.ttf") format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("../../fonts/HelveticaNowDisplay-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("../../fonts/HelveticaNowDisplay-Medium.ttf") format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: url("../../fonts/HelveticaNowDisplay-Bold.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Rebori';
    src: url("../../fonts/Rebori.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --preto-acizentado-recinto: #212121;
    --azul-marinho-recinto: #252f3f;
    --bege-recinto: #E7E0D6;
    --texto-opaco: #8f8f8f;
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
}

body {
    height: 100dvh;
    overflow-x: hidden;
    background-color: white;
    /* background-color: #faf3ebce; */
}

main {
    display: flex;
    gap: 50px;
    padding: 0 50px;
    flex-direction: column;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    main {
        padding: 0 10px;
    }
}

@media (min-width: 600px) and (max-width: 999px) {
    main {
        padding: 0 20px;
    }
}

/* ----------NAVBAR---------- */

.navbar {
    background-color: white;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    font-family: 'Helvetica Now Display', sans-serif;
    background-color: white;
}

.navbar-brand {
    width: 250px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-brand img {
    width: 100%;
}

.navbar-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.navbar-links a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(10pt, 2vw, 12pt);
    font-weight: 400;
    overflow: hidden;
}

.navbar-links a::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--preto-acizentado-recinto);
    transition: all .4s ease;
    transform: translateX(-50%);
}

.navbar-links a:hover::before {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

#login {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(10pt, 2vw, 12pt);
    font-weight: 500;
    overflow: hidden;
    letter-spacing: 1px;
}

#login-navbar {
    border: 2px solid var(--preto-acizentado-recinto);
    padding: 5px 15px;
    border-radius: 10px;
}

#login-navbar:hover {
    transform: scale(1.1);
}

#login-navbar::before {
    content: none;
}

#profile-settings-icon {
    font-size: clamp(15pt, 2vw, 17pt);
    text-decoration: none;
    color: var(--preto-acizentado-recinto);
}

#cel-profile {
    display: none;
}

#mobile-login {
    display: none;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 30px;
    height: 2px;
    margin: 6px;
    background-color: var(--preto-acizentado-recinto);
    transition: .3s;
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-4px, -6px);
}

@media (max-width: 1600px) {
    .navbar {
        height: 80px;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        width: 150px;
        position: relative;
        left: 0;
        transform: translateX(0);
    }

    .navbar-links {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: white;
        width: 100%;
        padding: 0 20px;
        align-items: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
        transition: max-height .7s ease, padding .2s ease;
    }

    .navbar-user {
        display: none;
    }

    .navbar-links.active {
        max-height: 1000px;
        padding: 20px;
    }

    .navbar-links li {
        margin: 10px 0;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
    }

    #mobile-login {
        display: flex;
    }

    #cel-profile {
        display: flex;
    }
}

/* ----------HEADER CAROUSEL---------- */

.header-carousel {
    position: relative;
    width: 100%;
    height: calc(90vh - 110px);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.carousel-container-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.carousel-container-text p {
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(30pt, 4vw, 38pt);
    color: white;
}

.carousel-container-text img {
    width: 700px;
    object-fit: cover;
}

.carousel-container-text span {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(12pt, 4vw, 16pt);
    text-transform: uppercase;
    color: white;
}

.carousel-container-text a {
    width: max-content;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(14pt, 4vw, 18pt);
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px 0;
    padding: 10px;
    background-color: white;
    color: var(--preto-acizentado-recinto);
}

.carousel-slide.active {
    left: 0;
    opacity: 1;
}

.carousel-slide.exit {
    left: -100%;
    opacity: 0;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    font-size: 100px;
    cursor: pointer;
    padding: 10px;
}

.carousel-nav.prev {
    left: 100px;
}

.carousel-nav.next {
    right: 100px;
}

@media (max-width: 1000px) {
    .carousel-nav {
        display: none;
    }

    .carousel-text {
        width: 90%;
    }

    .carousel-container-text p {
        font-family: 'Kepler Std', serif;
        font-weight: 400;
        font-style: italic;
        font-size: clamp(20pt, 4vw, 28pt);
        color: white;
    }

    .carousel-container-text img {
        width: 80%;
        max-width: 700px;
    }

    .carousel-container-text span {
        font-family: 'Helvetica Now Display', sans-serif;
        font-weight: 400;
        font-size: clamp(12pt, 4vw, 16pt);
        text-transform: uppercase;
        color: white;
    }

    .carousel-container-text a {
        font-size: clamp(14pt, 4vw, 18pt);
        padding: 5px 15px;
    }
}

@media (min-width: 1000px) and (max-width: 1400px) {
    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }
}

/* ----------ABOUT US---------- */

.about-us {
    display: flex;
    flex-direction: column;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 20vh;
    gap: 20px;
}

/* .about-us-container h5 {
    font-family: 'Neue Montreal', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: clamp(10pt, 2vw, 12pt);
    color: var(--texto-opaco);
} */

.about-us-container h1 {
    max-width: 800px;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(20pt, 4vw, 26pt);
    text-align: center;
    color: var(--preto-acizentado-recinto);
}

.about-us-container p {
    max-width: 100%;
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(17pt, 2vw, 19pt);
    font-weight: 400;
    color: var(--preto-acizentado-recinto);
    text-align: center;
}

.about-us hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

@media (max-width: 750px) {
    .about-us-container {
        min-height: 50vh;
        justify-content: center;
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .about-us-container {
        min-height: 30vh;
    }
}

/* ----------STATISTICS---------- */

.statistic {
    width: 100%;
    min-height: 30vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.statistic-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.statistic-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.statistic-text p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(16pt, 2vw, 22pt);
    color: var(--preto-acizentado-recinto);
}

.statistic-text h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

.statistic-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.number {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background-color: var(--bege-recinto);
    min-width: 100px;
    border-radius: 0px 20px;
    padding: 10px;
}

.number h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(34pt, 4vw, 50pt);
    color: var(--preto-acizentado-recinto);
    margin-top: 20px;
}

.number span {
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(14pt, 4vw, 20pt);
    color: var(--preto-acizentado-recinto);
}

.statistic hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

@media (max-width: 750px) {
    .statistic-numbers {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .number h2 {
        font-size: clamp(28pt, 3vw, 40pt);
        min-width: 80px;
    }

    .number span {
        font-size: clamp(12pt, 3vw, 16pt);
    }
}

@media (min-width: 750px) and (max-width: 999px) {
    .statistic-numbers {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .number h2 {
        font-size: clamp(30pt, 3.5vw, 45pt);
    }

    .number span {
        font-size: clamp(13pt, 3.5vw, 18pt);
    }
}

@media (min-width: 1000px) {
    .statistic-numbers {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ----------PHOTO-CAROUSEL---------- */
.photo-carousel {
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 50px;
}

.photo-carousel hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

.photo-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-x: hidden;
}

.photo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.photo-text p {
    text-transform: uppercase;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(18pt, 2vw, 26pt);
}

.slider {
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
}

.slide-track {
    display: flex;
    gap: 15px;
    width: calc(200px * 18);
    animation: scroll 60s linear infinite;
    margin-bottom: 15px;
}

#slider-track-second {
    animation: scroll-second 60s linear infinite;
    transform: translateX(calc(-200px * 18));
    margin-bottom: none;
}

#slider-track-second:hover {
    animation-play-state: paused;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide-track:hover img {
    filter: grayscale(100%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 9));
    }
}

@keyframes scroll-second {
    0% {
        transform: translateX(calc(-200px * 9));
    }

    100% {
        transform: translateX(0);
    }
}

.slide {
    width: 200px;
    height: 200px;
    display: flex;
    gap: 15px;
    align-items: center;
    perspective: 450px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.3s ease-in-out;
    filter: grayscale(0%);
}

.slide img:hover {
    filter: grayscale(0%);
    transform: translateZ(20px);
}

.slide:nth-of-type(odd) img {
    border-radius: 15px 15px 0 0;
}

.slide:nth-of-type(even) img {
    border-radius: 0 0 15px 15px;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, white) 0%, rgba(255, 255, 255, 0) 100%;
    content: '';
    height: 100%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

/* ----------CARD---------- */

.list-card {
    width: 100%;
    min-height: 30vh;
    gap: 100px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.text-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.text-card p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(16pt, 2vw, 22pt);
}

.text-card h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

.card-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.card-container video {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 0 0 30px 30px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-container img {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 0 0 30px 30px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.card-container img:hover {
    transform: scale(1.02);
}

.card-container ul {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    list-style: none;
}

.card-container li {
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(18pt, 4vw, 30pt);
    color: #CBCBCB;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.2s;
}

.card-container li.active {
    color: var(--preto-acizentado-recinto);
    transform: scale(1.1);
    transform: translateX(2%);
}

.list-card hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .list-card {
        gap: 50px;
    }
}

@media (max-width: 1300px) {
    .card-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .card-container video {
        max-width: 100%;
        max-height: 700px;
        width: 100%;
    }

    .card-container ul {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

/* ----------TEAM---------- */
.team {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 50px;
}

.team hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

.team-title {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.team-title #team-p {
    text-transform: uppercase;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(18pt, 2vw, 26pt);
}

.team-title h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

.team-container {
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.team-appointment {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

.teampic {
    width: 100%;
    height: auto;
}

.teampic img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.team-appointment:nth-of-type(odd) .teampic img {
    border-radius: 30px 30px 0 0;
}

.team-appointment:nth-of-type(even) .teampic img {
    border-radius: 0 0 30px 30px;
}

.member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.member-info hr {
    width: 100%;
    border: 1px solid #252f3f0c;
    margin-top: 0px;
}

.member-info h4 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(16pt, 2vw, 24pt);
    margin: 0;
    color: var(--preto-acizentado-recinto);
    font-weight: 500;
}

.member-info span {
    font-family: 'Kepler Std', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(12pt, 2vw, 18pt);
    color: var(--texto-opaco);
}

.member-info p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(10pt, 2vw, 12pt);
    letter-spacing: 1px;
    color: var(--preto-acizentado-recinto);
}

.social-team-icon {
    display: flex;
    gap: 10px;
}

.social-team-icon a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 5px;
    background-color: var(--preto-acizentado-recinto);
    color: white;
    font-size: 14pt;
}

@media (max-width: 768px) {
    .team-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .team-appointment {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
        width: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        position: absolute;
        top: 0;
    }

    .team-appointment.active-team {
        opacity: 1;
        position: relative;
    }

    .teampic img {
        height: 550px;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .team-appointment {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .teampic img {
        height: 300px;
    }
}

@media (min-width: 1100px) and (max-width: 1400px) {
    .teampic img {
        height: 400px;
    }
}

@media (min-width: 1400px) and (max-width: 1600px) {
    .teampic img {
        height: 500px;
    }
}

/* ----------REVIEW---------- */

.review {
    width: 100%;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 100px;
}

.review-tittle {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.review-tittle p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(16pt, 2vw, 22pt);
}

.review-tittle h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

.review-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 20px;
}

/* .review-title {
    width: 100%;
    display: flex;
    align-items: end;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.review-title p {
    font-family: 'Neue Montreal', sans-serif;
    font-size: clamp(10pt, 2vw, 11pt);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin: 0;
}

.review-title h2 {
    font-family: 'kepler-std-semicondensed-dis', serif;
    font-size: clamp(30pt, 4vw, 40pt);
    color: #333;
} */

.review-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--preto-acizentado-recinto);
    padding: 20px;
    border-radius: 8px;
    gap: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.review-name {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(14pt, 4vw, 18pt);
}

.review-stars i {
    color: gold;
    font-size: 1.2em;
}

.review-text {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(12pt, 4vw, 14pt);
}

.review-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link a {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(12pt, 2vw, 14pt);
    text-decoration: none;
    color: var(--preto-acizentado-recinto);
}

.review-link a:hover {
    text-decoration: underline;
}

.review hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .review {
        gap: 50px;
    }
}

@media (min-width: 768px) and (max-width: 1000px) {
    .review-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-container {
        grid-template-columns: 1fr;
    }
}

/* ----------OPENING HOURS---------- */

.opening-hours {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 100px;
    padding: 20px;
}

.opening-hours hr {
    width: 100%;
    border: 1px solid #252f3f23;
    margin-top: 40px;
}

.opening-hours-tittle {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.opening-hours-tittle p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(16pt, 2vw, 22pt);
}

.opening-hours-tittle h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

.opening-hours-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: start;
    justify-items: center;
}

.opening-hours-container ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: center;
    justify-content: space-around;
    list-style: none;
    gap: 20px;
}

.opening-hours-container li {
    width: 100%;
    border: 2px solid var(--preto-acizentado-recinto);
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    min-height: 160px;
    gap: 10px;
    border-radius: 20px;
    padding: 20px;
}

.opening-hours-container h4 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(12pt, 4vw, 14pt);
}

.opening-hours-container span {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(14pt, 4vw, 20pt);
}

@media (max-width: 970px) {
    .opening-hours {
        gap: 50px;
    }

    .opening-hours-container ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .opening-hours-container li {
        min-height: 120px;
    }
}

/* @media (min-width: 950px) and (max-width: 1200px) {
    .opening-hours-container ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .opening-hours-container li {
        min-height: 140px;
        padding: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1450px) {
    .opening-hours-container ul {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 15px;
    }
} */

/* ----------LOCALIZATION---------- */

.localization {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.localization-tittle {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.localization-tittle p {
    text-transform: uppercase;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(18pt, 2vw, 26pt);
}

.localization-container {
    width: 100%;
    background-color: rgb(228, 228, 228);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.map {
    width: 100%;
}

.map iframe {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    border: none;
}

.text-local {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.text-container-local {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    text-align: start;
    gap: 15px;
}

.text-container-local span {
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(12pt, 2vw, 16pt);
    color: var(--preto-acizentado-recinto);
    text-transform: uppercase;
    font-weight: 500;
}

.text-container-local a {
    font-family: 'Helvetica Now Display', sans-serif;
    font-size: clamp(10pt, 2vw, 14pt);
    text-decoration: none;
    color: var(--preto-acizentado-recinto);
}

.text-container-local a:hover {
    text-decoration: underline;
}

@media (max-width: 850px) {
    .localization-container {
        flex-direction: column;
    }

    .map iframe {
        height: 300px;
    }
}

/* ----------VIDEO TOUR---------- */

.video {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.video-source {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.video-tittle {
    width: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.video-tittle p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    color: var(--preto-acizentado-recinto);
    font-size: clamp(16pt, 2vw, 22pt);
}

.video-tittle h2 {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(22pt, 4vw, 50pt);
    text-transform: uppercase;
    color: var(--preto-acizentado-recinto);
}

@media (max-width: 600px) {
    .video-container {
        gap: 50px;
    }
}

/* ----------FOOTER---------- */
footer {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--preto-acizentado-recinto);
}

.footer-container {
    min-height: 20vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}

.first-footer-container {
    width: 200px;
    display: flex;
}

.first-footer-container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.second-footer-container {
    display: flex;
    align-items: start;
    justify-content: space-around;
    gap: 50px;
    line-height: 1.5rem;
}

.second-footer-container p {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 500;
    font-size: clamp(12pt, 2vw, 13pt);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--texto-opaco);
}

.second-footer-container span,
.second-footer-container a {
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: clamp(7pt, 2vw, 8pt);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.second-footer-container a:hover {
    text-decoration: underline;
}

.second-footer-appointment {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

footer hr {
    width: 100%;
    border: 1px solid #2c2c2c;
}

.policies {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.policies a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(7pt, 2vw, 8pt);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.policies a:hover {
    text-decoration: underline;
}

.lhbarber-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2c2c2c;
    padding: 15px;
}

.lhbarber-footer span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(7pt, 2vw, 10pt);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .second-footer-container {
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .second-footer-container {
        width: 100%;
        justify-items: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "item1 item2"
            "item3 item3";
        gap: 20px;
    }

    .second-footer-container div:nth-child(1) {
        grid-area: item1;
    }

    .second-footer-container div:nth-child(2) {
        grid-area: item2;
    }

    .second-footer-container div:nth-child(3) {
        grid-area: item3;
    }
}

@media (min-width: 900px) and (max-width: 1400px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
}

.card__pricing {
    position: absolute;
    background: linear-gradient(157deg, var(--preto-acizentado-recinto) -12%, var(--preto-acizentado-recinto) 109%);
    min-width: 60px;
    height: 50px;
    left: 1.5rem;
    top: -1rem;
    padding-top: .2rem;
    text-align: center;
    opacity: .9;
}

.card__pricing-number {
    font-family: "Poppins";
}

.card__pricing-symbol {
    font-size: var(--smaller-font-size);
}

.card__pricing-number {
    font-size: var(--h2-font-size);
}

.card__pricing-month {
    display: block;
    font-size: 11pt;
}

.card__pricing-number,
.card__pricing-month {
    color: white;
}

.card__pricing-number span {
    color: white;
    font-family: 'Helvetica Now Display', sans-serif;
    font-weight: 400;
    font-size: 16pt;
}

.card__pricing::after,
.card__pricing::before {
    content: '';
    position: absolute;
}

.card__pricing::after {
    width: 100%;
    height: 14px;
    background-color: var(--bege-recinto);
    left: 0;
    bottom: 0;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.card__pricing::before {
    width: 14px;
    height: 16px;
    background-color: var(--preto-acizentado-recinto);
    top: 0;
    left: -14px;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

@media (max-width: 600px) {
    .card__pricing {
        min-width: 40px;
    }

    .card__pricing-number span {
        font-size: 13pt;
    }
}

@media (max-width: 750px) {
    .number {
        margin-bottom: 15px;
    }
}
