:root {
    --color-purple: #554081;
    --color-red: #BD2E28;
    --color-creme: #F5E9CF;
    --color-yellow: #FDA003;
    --color-coffe: #450E14;

}
@font-face {
    font-family: 'CanelaText Trial Bold';
    src: url("/assets/fonts/CanelaText-Bold-Trial.otf") format("opentype");
    font-style: bold;
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url("/assets/fonts/Gotham-Regular.woff") format("woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}
section[id]{
    scroll-margin-top: 85px;
}
h2 {
    font-family: 'canelaText Trial Bold', serif;
}
p, li, button {
    font-family: 'Gotham', sans-serif;
}
.nav-bar {
    position: fixed;
    width: 100dvw;
    top: 0;
    height: 75px;
    background-color: var(--color-red);
    color: var(--color-creme);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1100;

    & .brand-name {
        height: 35px;
    }
    & .social-networks {
        display: flex;
        gap: 5px;

        & a {
            height: 24px;
            width: 24px;
            background-color: var(--color-purple);
            border-radius: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        & img {
            height: 16px;
            width: 16px;
        }
    }
    & a {
        text-decoration: none;
        color: var(--color-creme);
        transition: opacity ease-out 0.3s;
    }
    & a:hover {
        opacity: 0.7;
    }
    & button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background-color: var(--color-red);
        color: var(--color-creme);
        border: none;
        border-radius: 4px;
        padding: 5px;
    }
    & .button:hover {
        cursor: pointer;
        background-color: #8d2a26;
        transition: 0.3s;
    }
    & .button:active {
        background-color: #8d2a26;
    }
    & .dropdown-menu {
        background-color: var(--color-red);
        padding: 0;
    }
    & .dropdown-item:hover, li:hover {
        background-color: #8d2a26;
        color: var(--color-creme);
    }
    & .tittle-dropdown {
        font-size: 18px;
    }
    .bottom-sheet {
        position: fixed;
        left: 0;
        bottom: -100%;
        width: 100%;
        background: var(--color-red);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        transition: bottom 0.3s ease-in-out;
        z-index: 1050;
    }
    .bottom-sheet-content {
        width: 100%;
        padding: 20px 20px 0 20px;
        position: relative;
    }
    .bottom-sheet.show {
        bottom: 0;
    }
    .close-btn {
        position: absolute;
        right: 0;
        top: 0;
        margin: 20px 20px 0 0;
        padding: 0;

        & img {
            height: 24px;
            width: 24px;
        }
    }
    .list-group {
        list-style: none;
    }
    .title-dropdown {
        font-size: 18px;
        text-align: center;
    }
    .dropdown {
    display: none;
    }
    .dropdown-toggle::after {
        content: none;
    }
}
.hero-section {
    background-color: var(--color-purple);
    margin-top: 75px;
    
    & .container-max {
        color: var(--color-creme);
        height: 420px;
        display: grid;
        justify-content: start;
        align-content: start;
        position: relative;
        padding: 0 20px;
        overflow: hidden;
    }
    & .hero-content {
        display: flex;
        flex-direction: column;
        width: 50vw;
    }
    & .hero-img {
        position: absolute;
        height: 260px;
        right: 15px;
        bottom: 0;
        filter: drop-shadow(10px 0 0 var(--color-yellow))
                drop-shadow(10px 0 0 var(--color-red))
                drop-shadow(15px 0 0 var(--color-coffe));
    }
    & .brand-name {
        margin: 40px 0 50px 0;
        height: 50px;
    }
    & p, strong {
        font-size: 20px;
        line-height: 1.7;
        text-align: start;
    }
    & strong {
        font-family: 'CanelaText Trial Bold', serif;
    }
}

.who-we-are {
    background-color: var(--color-creme);
    
    & .container-max {
        color: var(--text-primary);
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        padding: 0;
    }
    & h2 {
        font-size: 30px;
        text-align: center;
        margin: 49px 0 20px 0;
        text-transform: uppercase;
        color: var(--color-coffe);
    }
    & .who-we-are-parragraph {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        text-wrap: balance;
    }
    & span {
        font-family: 'CanelaText Trial Bold', serif;
        font-size: 90px;
        color: var(--color-coffe);
        line-height: 1;
        font-size: 80px;
        margin-left: 100px;
    }
    & p, strong {
        text-wrap: balance;
        line-height: 2;
        width: 50ch;
    }
    & p {
        margin: 0 40px 0 0; 
    }
    & .second-parragraph {
        max-width: 400px;
        padding-left: 195px;
        padding-right: 10px;
        margin-bottom: 40px;
        justify-self: center;
    }
    & .who-we-are-img {
        width: 100%;
        height: 300px;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    & .coctail-img {
        height: 500px;
        position: absolute;
        bottom: -50px;
        left: -150px;
        object-fit: contain;
    }
}
.our-places {
    background-color: var(--color-yellow);

    & .container-max {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    & .tabs {
        width: 100%;
        display: flex;
        font-size: 18px;
        margin: 30px 0;
    }
    & .dropdown {
        width: 100%;
        margin: 0 20px;
    }
    & .toggle {
        width: 100%;
        font-family: 'Gotham', sans-serif;
        height: 50px;
        background-color: #fff;
        color: #808080;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: start;
        border: none;
        border-radius: 4px;
        padding-left: 12px;
        padding-right: 30px;
    }
    & .tab-button-places:hover, .tab-button-places:focus {
        background-color: var(--color-creme);
        color: #000;
        transition: all 0.3s ease;
    }
    & .tab-button-places.active {        
        color: #000;
        background-color: var(--color-creme);
        transition: all 0.5s ease;    
    }
    & .dropdown-menu {
        background-color: #fff;
        display: none;
        width: 100%;
        padding: 0;
        border-radius: 4px;
    }
    & .tab-content-places {
        display: none;
    }
    & .tab-content-container {
        width: 100%;
        display: flex;
    }
    & .tab-content-places.active {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    & .our-places-img {
        width: 100%;
        height: 217px;
        padding-inline: 20px;
        align-self: center;
        object-fit: cover;
        object-position: center;
    }
    & .our-places-info {
        width: 100%;
        background-color: var(--color-creme);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        padding: 15px 20px 40px 20px;
    }
    & .description {
        scrollbar-color: var(--color-coffe) #DEDEDE;
        text-align: justify;
        padding-right: 15px;
        line-height: 1.25;
        max-height: 95px;
        overflow-y: auto;
    }
    & .our-places-services {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;    
        gap: 10px;

        & span {
            width: 18ch;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        & img {
            width: 40px;
            height: 40px;
        }
    }
    & .places{
        max-height: 150px;
        width: 288px;
        align-self: center;
        object-fit: contain;
    }
    & h2 {
        font-size: 20px;
        color: var(--color-yellow);
    }
    & h2, p {
        margin: 0;
    }
    & a {
        text-decoration: none;
    }
    & .our-places-icon {
        width: 30px;
        height: 30px;
    }
    & .icon-contact {
        width: 24px;
        height: auto;
        margin-right: 5px;
    }
    & .content-redes {
        font-family: 'Gotham', sans-serif;
        color: var(--color-purple);
    }
    & .our-places-infoplace {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
        margin-top: 15px;

        & a {
            color: #000;
            text-decoration:underline;
        }
    }
    & .our-places-buttons {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    & .button-content {
        width: 190px;
        height: 40px;
        font-size: 16px;
        font-family: 'Gotham', sans-serif;
        background-color: var(--color-coffe);
        color: var(--color-creme);
        border: 1px solid var(--color-coffe);
        border-radius: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    & .button-content:hover {
        background-color: transparent;
        color: var(--color-coffe);
        cursor: pointer;
        transition: 0.5s;
    }
    & .outline {
        background-color: transparent;
        color: var(--color-coffe);
    }
    & .outline:hover {
        background-color: var(--color-coffe);
        color: var(--color-creme);
    }
}
.how-to-get {
    background-image: repeating-conic-gradient(#222 0% 25%, #333 25% 50%);
    background-size: 96px 220px;
    
    & .container-max {
        color: #fff;
        overflow: hidden;
        padding: 0;
    }
    & .how-to-get-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    & h2 {
        width: 100%;
        font-size: 20px;
        margin: 70px 0 120px 0;
        padding-inline: 20px;
        text-align: center;
    }
    & .how-to-get-img {
        width: 400px;
        z-index: 1;
        position: absolute;
        right: -120px;
        top: 25%;
    }
    & .how-to-get-info {
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    & .how-to-get-info-img {
        background-repeat: no-repeat;
        background-size: cover; 
        height: 310px;
        
        & p {
            font-size: 16px;
            width: 100%;
            height: 100%;
            backdrop-filter: brightness(50%);
            text-align: center;
            align-content: center;
        }
    }
}
.culture {
    background-color: var(--color-red);

    & .container-max {
        color: var(--color-creme);
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    & .culture-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }
    & h2 {
        font-size: 25px;
        margin-bottom: 20px;
        align-self: start;
    }
    & .tabs {
        display: flex;
        flex-direction: column;
        font-size: 18px;
        gap: 20px;
    }
    & .dropdown {
        width: 100%;
        margin: 0 20px;
    }
    & .toggle {
        width: 100%;
        font-family: 'Gotham', sans-serif;
        height: 50px;
        background-color: #fff;
        color: #808080;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: start;
        border: none;
        border-radius: 4px;
        padding-left: 12px;
        padding-right: 30px;
    }
    & .dropdown-menu {
        background-color: #fff;
        border-radius: 4px;
        display: none;
        width: 100%;
        padding: 0;
    }
    & .tab-button-culture {
        background-color: #fff;
        color: #000;
        padding-left: 16px;
        border: none;
        border-radius: 4px;
        text-align: start;   
        cursor: pointer;
        transition: all 0.5s ease;
    }
    & .tab-button-culture:hover, .tab-button-culture:focus, & .tab-button-culture.active {
        background-color: var(--color-creme);
        color: #000;
    }
    & .tab-content-culture {
        display: none;
    }
    & .tab-content-culture.active {
        height: 310px;
        display: flex;
        flex-direction: row;
    }
    & .culture-img {
        width: 100%;
        object-fit: fill;
    }
}
.stores{
    background-image: repeating-conic-gradient(#554081 0% 25%, #5e4a87 25% 50%);
    background-size: 96px 220px;

    & .container-max {
        color: var(--color-creme);
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }
    & h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }
    & .swiper {
        margin-bottom: 50px;
        overflow: visible;
    }
    & .swiper-slide {
        height: 280px;
        background-color: transparent !important;
    }
    & .swiper-img {
        width: 270px;
        height: 280px;
        object-fit: cover;
        border: none;
        border-radius: 6px;
        cursor: grab;
    }
    & .swiper-pagination{
        position: absolute;
        bottom: -20%;

        & span {
            background-color: #fff;
            width: 6px;
            height: 9px;
            opacity: 1;
            border-radius: 0;
        }
        & .swiper-pagination-bullet-active {
            background-color: var(--color-coffe);
            width: 20px;
            height: 10px;
        }
    }
}
.events {

    & .carousel, .carousel-inner, .carousel-item {
        width: 100%;
        height: 100%;
    }
    & .carousel-item {
        background-repeat: no-repeat;
        background-size: cover; 
    }
    & .button-indicators {
        background-color: #fff !important;
        width: 6px !important;
        height: 9px !important;
        opacity: 1 !important;
    }
    & .active.button-indicators {
        background-color: var(--color-coffe) !important;
        width: 20px !important;
        height: 10px !important;
    }
    & .img-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        border-bottom-right-radius: 4px;
        margin-bottom: 300px;
    }
    & img {
        width: 180px;
        padding-bottom: 20px;
    }

    & .container {
        position: sticky;
        width: 80%;
        height: auto;
        max-width: 1200px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        padding: 0;
        margin: 20px auto 46px auto;
    }
    & .container-info {
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        align-self: center;
        position: relative;
    }
    & h2 {
        font-size: 40px;
        margin-top: 20px;
    }
    & p {
        font-size: 16px;
        background-color: var(--color-yellow);
        border-top-left-radius: 4px;
        text-align: start;
        overflow-y: auto;
    }
    & .info {
        height: 120px;
        display: flex;
        flex-direction: column;
        font-family: 'CanelaText Trial Bold', serif;
        padding: 10px 0 0 20px;
        border-top-left-radius: 4px;
        position: absolute;
        top: -120px;
        right: 0;
    }
    & .date {
        line-height: 0.8;
        padding: 0;
        margin: 0;
        font-size: 70px;
    }    
}
.services {
    background-image: repeating-conic-gradient(#000 0% 25%, #333 25% 50%);
    background-size: 96px 220px;

    & .container-max {
        color: var(--color-creme);
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }
    & h2 {
        font-size: 25px;
        margin-bottom: 30px;
    }
    & h3, p {
        font-size: 16px;
        text-align: center;
    }
    & .swiper {
        margin-bottom: 50px;
        overflow: visible;
    }
    & .swiper-slide {
        background-color: transparent !important;
        font-size: 18px;
    }
    & .service {
        width: 200px;
        background-color: #181D22;
        border-radius: 4px;
        height: 220px;
        padding: 20px;
        color: #fff;     
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        gap: 10px;
        /* cursor: grab; */
        position: relative;
    }
    & .swiper-pagination-services{
        position: absolute;
        bottom: -20%;
        text-align: center;

        & span {
            background-color: #fff;
            width: 6px;
            height: 9px;
            opacity: 1;
            border-radius: 0;
        }
        & .swiper-pagination-bullet-active {
            background-color: var(--color-coffe);
            width: 20px;
            height: 10px;
        }
    }
}
.location {
    background-color: var(--color-red);

    & .container-max {
        color: var(--color-creme);
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow-x: scroll;
        gap: 20px;
    }
    & .location-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }
    & .location-text {
        font-size: 18px;
        margin: 30px 15px 0 0;
        padding-left: 20px;
        border-left: 2px solid var(--color-creme);
    }
    & .location-img {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        height: 48px;
    }
    & .map {
        display: flex;
        justify-content: center;
    }
    & .map img {
        max-width: 346px;
        border-radius: 6px;
        margin-top: 50px;
        margin-bottom: 90px;
    }
}
footer {
    & .footer-info{
        background-color: var(--color-purple);
        font-family: 'Gotham', sans-serif;
        width: 100%;
        color: var(--color-creme);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: -90px;
        border-radius: 30px 30px 0 0;
        padding: 60px 20px;
    }
    & .brand-name {
        height: 45px;
    }
    & .social-networks {
        display: flex;
        gap: 20px;
        margin: 60px 0 50px 0;
    }
    & a {
        text-decoration: none;
        color: var(--color-creme);
        transition: opacity ease-out 0.3s;
    }
    & a:hover {
        opacity: 0.7;
    }
    & ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: center;
        gap: 40px;
        margin-bottom: 50px;
        padding: 0;
    }
    & li {
        font-size: 18px;
        text-align: center;
    }
    & .footer-note {
        width: 100vw;
        font-size: 20px;
        border-top: 1px solid var(--color-creme);
        border-left: none;
        padding-top: 15px;
        text-align: center;
    }
}
.footer-contact {
    background-color: var(--color-creme);
}
.hero-container {
    background-image: repeating-conic-gradient(var(--color-red) 0% 25%, #BD2E2890 25% 50%);
    background-size: 64px 148px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-top: 75px;

    & h2 {
        position: absolute;
        margin: auto;
        top: 33%;
        font-size: 55px;
        color: #fff;
        text-shadow: 1px 1px black;
        text-transform: uppercase;
    }
    & .hero-img {
        width: 100%;
        overflow: hidden;
        margin-top: 230px;
    }
    & img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
}
.form-container {
    background-color: var(--color-creme);

    .container-max {
        padding: 70px 20px 160px 20px;
        display: grid;
        align-items: center;
        gap: 20px;
        font-family: 'Gotham', sans-serif;
    }
    & h2{
        color: var(--color-purple);
        margin-bottom: 24px;
        text-transform: uppercase;
    }
    & hgroup p {
        padding-inline: 15px;
        border-left: 2px solid var(--color-purple);
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-group p{
        margin: 0;
    }
    label {
        margin-bottom: 12px;
        font-size: 18px;
    }
    input, textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid transparent;
        border-radius: 4px;
        resize: none;
    }
    & .btn-content {
        width: 100%;
        height: 40px;
        font-size: 16px;
        background-color: var(--color-coffe);
        color: var(--color-creme);
        border: 1px solid var(--color-coffe);
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-self: center;
        padding: 0;
    }
    & .btn-content:hover {
        background-color: transparent;
        color: var(--color-coffe);
        cursor: pointer;
        transition: 0.5s;
    }
    .error {
        border: 1px solid var(--color-red);
    }
    .error-message {
        color: var(--color-red);
        font-size: 18px;
        margin-top: 5px;
        display: none;
    }
    .error-visible {
        display: block;
    }
    .msg-sent {
        width: 80%;
        border: none;
        border-radius: 4px;
        padding: 48px 55px;
        text-align: center;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);

        & p {
            font-size: 18px;
        }
    }
    .btn-close {
        position: absolute;
        height: 48px;
        width: 48px;
        right: 0;
        top: 0;
        cursor: pointer;
        opacity: 1;
    }
    .check {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
        justify-self: center;
    }
    .btn-popover {
        width: 190px;
        background-color: var(--color-purple);
        border-color: var(--color-purple);
        border-radius: 4px;
        color: #fff;
    }
    .btn-popover:hover {
        color: var(--color-purple) !important;
    }
}
.error-404 {
    background-image: repeating-conic-gradient(var(--color-coffe) 0% 25%, #450e14e6 25% 50%);
    background-size: 64px 148px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    padding-inline: 30px;

    & h1 {
        font-family: 'Playfair Display', serif;
        font-size: 150px;
        font-weight: bold;
        color: #fafafa;
        margin: 50px 0 20px 0;
        line-height: 80px;
        display: flex;
        gap: 10px;

        & span {
            font-size: 120px;
             display: inline-block;
             position: relative;
             top: -15px;
        }
    }
    & p {
        color: #fafafa;
        margin-bottom: 40px;
        font-size: 18px;
        font-weight: 400;
    }
    & button {
        width: 100%;
        width: fit-content;
        padding: 25px 80px;
        height: 40px;
        background-color: var(--color-red);
        color: #fafafa;
        border: none;
        border-radius: 8px;
        margin-bottom: 190px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-self: center;
        text-decoration: none;
    }
    & button a {
        color: #fafafa;
        text-decoration: none;
        font-size: 18px;
        white-space: nowrap;
    }
    & button:hover {
        background-color: #fafafa;
        color: var(--color-red);
    }
     & button:hover a {
        color: var(--color-red);
    }
}
@media (576px <= width) {
    .nav-bar {
        & button {
            gap: 10px;
        }
    }
    .hero-section {
        & .container-max {
            margin: 0;
        }
        & .hero-content {
            align-items: flex-end;
            justify-content: flex-end;
        }
        & p, strong {
            text-align: center;
        }
        & .hero-img {
            height: 360px;
            right: 25px;
            filter: drop-shadow(20px 0 0 var(--color-yellow))
                    drop-shadow(20px 0 0 var(--color-red))
                    drop-shadow(25px 0 0 var(--color-coffe));
        }
    }
    .who-we-are {
        & .second-parragraph {
            height: 280px;
            padding-left: 100px;
            padding-top: 25px;
        }
    }
    .how-to-get {
        & h2 {
            font-size: 35px;
        } 
        & .how-to-get-img {
            top: 35%;
        }
    }
    .location {
        & .location-text {
            font-size: 20px;
        }
    }
}
@media (768px <= width) {
    .nav-bar{
        padding-inline: 40px;

        & .social-networks {
            gap: 20px;
            
            & a {
                background-color: transparent;
            }
            & img {
                height: 24px;
                width: 24px;
            }
        }
        & .dropdown {
            display: block;
        }
        & .mobile {
            display: none;
        }
    }
    .hero-section {
        & .brand-name {
            height: 70px;
        }
        & p, strong {
            font-size: 30px;
        }
    }
    .our-places {
        & .dropdown {
            margin-inline: 40px;
        }
        & .our-places-img {
            padding-inline: 40px;
        }
        & .our-places-info {
            padding-inline: 40px;
        }
    }
    .who-we-are {

        & .container-max {
            display: grid;
            grid-template-columns:1.5fr 1fr;
        }        
        & .who-we-are-img {
            height: 100%;
        }
        & p, strong {
            width: 300px;
            margin-right: 0;
        }
        & .second-parragraph {
            width: 350px;
            padding: 25px 15px 0 0;
            margin-left: 160px;
        }
    }
    .how-to-get {
        & h2 {
            font-size: 45px;
        } 
        & .how-to-get-img {
            width: 600px;
            right: -200px;
            top: 20%;
        }
    }
    .culture {
        & .container-max {
            display: grid;
            grid-template-columns: 1fr 2fr;
        }


        & .tab-content-container {
            grid-column: 2 / 3;
            width: 100%; 
        }

        & .culture-img {  
            margin-left: auto;
            object-fit: fill;
        }

        & .culture-info {
            padding-inline: 40px;
        }
        & h2 {
            margin-bottom: 25px;
        }
        & .toggle {
            display: none;
        }
        & .dropdown-menu {
            background-color: transparent;
            width: auto;
            display: flex;
            flex-direction: column;
            border: none;
            gap: 15px;
        }
        & .tab-button-culture {
            background-color: transparent;
            padding: 0;
            color: #000;
        }
        & .tab-button-culture:hover, .tab-button-culture:focus, .tab-button-culture.active {
            color: var(--color-creme);
            background-color: transparent;
        }
        & .tab-button-culture.active {        
            font-family: 'CanelaText Trial Bold', serif;
            text-transform: uppercase;
        }
        & .tab-button-culture::before {
            content: "—";
            color: transparent;
            margin-right: 5px;
            margin-left: -20px;
            transition: all 0.5s ease;        
        }
        & .tab-button-culture.active::before {
            color: var(--color-creme);
        }
    }
    .stores, .services, .location {
        & .container-max {
            padding-inline: 40px;
        }
    }
    footer {
        & .footer-info{
            padding-inline: 40px;
        }
        & ul {
            flex-direction: row;
            gap: 20px;
        }
        & .footer-note {
            width: 100%;
            text-align: start;
        }
    }
    .hero-container{
        & h2 {
            font-size: 75px;
        }
    }
    .form-container {
        .container-max {
            padding-inline: 40px;
        }
    }
    .error-404 {
        & h1 {
            font-size: 100px;

            & span {
                font-size: 80px;
            }
        }
        & button {
            max-width: 275px;
        }
    }
}
@media (992px <= width) {
    .nav-bar{
        padding-inline: 80px;
        align-items: flex-end;

        & .brand-name {
            height: 45px;
            margin-bottom: 10px;
        }
        & .social-networks {
            margin-bottom: 15px;
        }
        & button {
            margin-bottom: 10px;
        }
    }
    .hero-section {
        & .container-max {
            height: auto;
        }
        & .brand-name {
            height: 75px;
        }
        & p, strong {
            font-size: 38px;
            margin-bottom: 150px;
        }
        & .hero-img {
            height: 400px;
        }
        & .hero-content {
            width: 60vw;
        }
    }
    .our-places {
        & .container-max {
            display: grid;
            grid-template-columns: 1fr 2.5fr;
            align-items: start;
            justify-content: start;
        }
        & .toggle {
            display: none;
        }
        & .dropdown-menu {
            background-color: transparent;
            display: flex;
            flex-direction: column;
            border: none;
            gap: 15px;
        }
        & .tab-button-places {
            background-color: transparent;
            padding: 0;
            color: #000;
        }
        & .tab-button-places:hover, .tab-button-places:focus, .tab-button-places.active {
            color: var(--color-creme);
            background-color: transparent;
        }
        & .tab-button-places.active {        
            font-family: 'CanelaText Trial Bold', serif;
            text-transform: uppercase;
        }
        & .tab-button-places::before {
            content: "———";
            color: transparent;
            margin-right: 10px;
            margin-left: -20px;
            transition: all 0.5s ease;        
        }
        & .tab-button-places.active::before {
            color: var(--color-creme);
        }
        & .tab-content-places.active {
            flex-direction: row;
        }
        & .our-places-img {
            width: 34%;
            height: 100%;
            padding-inline: 0;
        }
        & .our-places-info {
            width: 66%;
        }
    }
    .how-to-get {
        & .how-to-get-info {
            flex-direction: row;
        }
        & .how-to-get-info-img {
            width: 33.4%;
            height: 400px;
        
            & p {
                font-size: 20px;
            }
        }
    }
    .who-we-are {
        & .container-max {
            grid-template-columns:1fr 1.2fr;
        }
        & h2 {
            font-size: 48px;
            margin-bottom: 60px;
        }
        & span {
            margin-left: 160px;
        }
    }
    .culture {
        & .culture-info {
            padding-inline: 80px;
        }
        & h2 {
            font-size: 30px;
        }
        & .tab-button-culture::before {
            content: "———";
            margin-right: 10px;
            margin-left: -60px;
        }
        & .tab-content-culture.active {
            height: 480px;
        }
    }
    .stores {
        & .container-max {
            padding-inline: 80px;
        }
        & h2 {
            font-size: 30px;
        }
    }
    .events {
        & .img-logo {
            width: auto;
            padding: 50px 10px;
            margin-bottom: 150px;
        }
        & img {
            padding-bottom: 0;
        }
        & .container-info {
            height: 84px;
            flex-direction: row;
            align-items: center;
        }
        & h2 {
            margin: 0;
            padding-right: 40px;
        }
        & p {
            height: 120px;
            font-size: 18px;
            margin: -30px 0 0 0;
            padding: 30px 100px 0px 40px;
        }
        & .info {
            font-size: 18px;
            padding: 10px 0 0 20px;
            top: -65px;
            height: 140px;
            padding-top: 20px;
            line-height: 2.3;
        }
    }
    .services {
        & .container-max {
            flex-direction: row;
            padding-inline: 80px;
        }
        & h2 {
            font-size: 30px;
        }
    }
    .location {
        & .container-max {
            flex-direction: row;
            padding-inline: 80px;
            gap: 50px;
        }
        & h2 {
            font-size: 40px;
        }
        & .map img {
            margin-top: 0;
            max-width: 600px;
        }
    }
    footer {
        & .footer-info{
            padding-inline: 80px;
            border-radius: 90px 90px 0 0;
        }
        & .brand-name {
            height: 65px;
        }
        & ul {
            gap: 40px;
        }
    }
    .hero-container{
        flex-direction: row;
        justify-content: flex-end;

        & h2 {
            top: 40%;
            left: 20%;
        }
        & .hero-img {
            width: 70%;
            height: 400px;
            object-fit: cover;
            margin-top: 0;
        }
        & img {
            height: 400px;
            object-fit: cover;
        }
    }
    .form-container {
        .container-max {
            gap: 50px;
            padding-inline: 80px;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }
        & h2 {
            font-size: 48px;
        }
        & hgroup p {
            font-size: 22px;
        }
        & .btn-content {
            width: 273px;
            margin-right: auto;
        }
        & form {
            display: flex;
            flex-direction: column;
        }
    }
}
@media (1200px <= width) {
    .container-max {
        max-width: 1440px;
        margin: auto;
    }
    .hero-section {
        & .container-max {
            margin: auto;
        }
        & .hero-content {
            max-width: 1200px;
            align-items: center;
        }
        & .hero-img {
            height: 680px;
            right: 60px;
        }
        & .brand-name {
            margin: 100px 0;
        }
        & p, strong {
            margin-bottom: 220px;
        }
    }
    .our-places, .who-we-are {
        .container-max {
            max-width: 1600px;
            margin-right: 0;
            margin-left: auto;
        }
    }
    .who-we-are {
        & .who-we-are-img {
            max-height: 680px;
        }
        & .coctail-img {
            height: 600px;
        }
    }
    .how-to-get {
        overflow: hidden;

        .container-max {
            max-width: 100%;
            overflow: visible;
        }
    }
}

/* añadidos */

#primary-terrazas {
    overflow: hidden;
    
}

@media (min-width:1800px) {

 .culture {
        & .culture-img {
            object-fit: cover;
            width: 100vw;  
        }
    }

}

@media (max-width:768px) {
    #primary-terrazas .swiper-horizontal>.swiper-pagination-bullets, 
    #primary-terrazas .swiper-pagination-bullets.swiper-pagination-horizontal, 
    #primary-terrazas .swiper-pagination-custom, 
    #primary-terrazas .swiper-pagination-fraction {
        z-index: 100;
        top: var(--swiper-pagination-top,250px) !important;
    }

    .services .swiper-slide {
        width: 245px !important;
        margin: 0 !important; 
    }

    .services {
    & .service {
        cursor: grab;
    }
}

}

/* Popup formulario */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 567px;
    max-height: 377px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.popup-icon {
    margin-bottom: 1rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.popup-accept {
    margin-top: 1rem;
    padding: 0.75rem 3rem;
    cursor: pointer;
    background-color: var(--color-purple);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
}

.popup-accept:hover {
    background-color: #1d152f;
}


.popup-content h2 {
    color: var(--color-purple);
    font-size: 20px;
    font-weight: 400;
}

.popup-content p {
    color: #1A202C;
    font-size: 18px;
}

@media (max-width: 660px) {
    .popup-content {
        margin: 20px;
    }
}


