@font-face {
    font-family: 'AnticDidone';
    src: url('../../fonts/AnticDidone-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'UncutSans';
    src: url('../../fonts/UncutSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../../fonts/SFProDisplay-Regular.OTF') format('otf');
    font-weight: normal;
    font-style: normal;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --gold: #987D2D;
    --softer-gold: rgba(152, 125, 45, 0.40);
    --hard-gold: #7b6524;
    --grey: #00000080;
    --gris-inputs: #7a7e81;
    --verde_oscuro: #2C4A31;

    --t-fast: 200ms;
    --t-normal: 300ms;
    --t-slow: 700ms;

    --ease-standard: cubic-bezier(0.2, 0, 0, 1);
    --ease-emphasized: cubic-bezier(0.39, 0.58, 0.57, 1);
}

* {
    font-family: 'UncutSans', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

body {
    background-color: #F9F9F9;
}

p {
    margin: 0;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
    background-color: transparent;
    transition: all var(--t-slow) var(--ease-emphasized);
}

#menu {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, background-color 0.3s ease;
}

.menu-visible {
    opacity: 1 !important;
}

.normal {
    font-family: 'UncutSans', serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
}

.canvas {
    position: absolute;
    width: 100%;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.navbar {
    height: 144px;
}

.container-fluid {
    height: 100%;
    transition: all var(--t-slow) var(--ease-standard);
}

.scrolled {
    background: white;
    height: 90px;
    transition: all var(--t-slow) var(--ease-standard);
}

.scrolled .menu-line {
    background-color: var(--gold);
}

.scrolled .navbar {
    height: 90px;
    transition: all var(--t-slow) var(--ease-standard);
}

.scrolled .container-fluid {
    height: 90px;
    transition: all var(--t-slow) var(--ease-standard);

}

.scrolled .btn-nav,
.scrolled .btn-nav:hover {
    color: var(--gold) !important;
}

.scrolled .lr-menu_logo {
    margin-bottom: 0;
    width: 144px;
    filter: none;
}

.navbar:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    height: 1px;
    width: 40%;
    transition: width var(--t-slow) var(--ease-standard);
}

.navbar:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--gold);
    height: 1px;
    width: 40%;
    transition: width var(--t-slow) var(--ease-standard);
}

.scrolled .navbar:before,
.scrolled .navbar:after {
    width: 100%;
}

.nav-section.left {
    display: flex;
    width: 233px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-right: 1px solid var(--gold);
}

.nav-section.right {
    border-left: 1px solid var(--gold);
    display: flex;
    width: 233px;
}

.menu-icon-custom {
    display: flex;
    width: 89px;
    height: 50px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.menu-icon-custom:hover .menu-line.middle {
    width: 40px;
}

.menu-line {
    display: block;
    width: 89px;
    height: 2px;
    background-color: white;
    margin-bottom: 8px;
    transition: all var(--t-normal) var(--ease-standard);
}

.menu-line:last-child {
    margin-bottom: 0;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.menu {
    height: 100vh;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    z-index: 4;
    position: fixed;
    width: 0;
    top: 0;
}

.menu:has(.main-menu.open),
.menu.menu-open {
    z-index: 4;
    width: 100%;
}

#search-input {
    background-color: transparent;
    border: none;
    font-size: 1.4rem;
    padding: 1rem;
    color: white;
}

.main-menu.open .search-menu {
    opacity: 1;
}

.search-menu {
    opacity: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 22px;

    .input-group {
        padding: 0 0 0 55px;
    }
}

@media (max-width: 1600px) {
    .search-menu .input-group {
        padding: 0 0 0 48px
    }
}

.main-menu {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    width: 33.6%;
    opacity: 0;
    background-color: #2C4A31;
    gap: 30px;
    /*box-shadow: 3px 2px 14px 10px rgb(0 0 0 / 18%);*/
    z-index: 4;
    overflow: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.close-menu {
    padding: 55px;
    cursor: pointer;
    color: white;
}
@media (max-width: 1600px) {
    .close-menu {
        padding: 35px;
    }
}

.close-menu:hover {
    color: var(--gold);
}

.menu-options {
    width: 100%;
}

.menu li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    width: 100%;
}

.menu li a {
    flex-direction: row;
    color: white;
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding: 0.4rem 0;
    position: relative;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.menu li span {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    transform: translateX(-40px);
    transition: transform 0.3s ease;
}
@media (max-width: 1600px) {
    .menu li span {
        width: 31px;
        transform: translateX(-31px);
        transition: transform 0.3s ease;
    }
}

.menu li div {
    margin-left: auto;
    margin-right: 50px;
    color: white;
}

.menu li:hover {
    span {
        transform: translateX(0);
    }

    a {
        color: #FDF3CB;
    }

    div {
        color: var(--gold);
    }
}

/* Sub-items inline: hidden globalmente, visibles solo en móvil */
.main-menu ul.sub-items {
    display: none;
    height: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li div svg {
    transition: transform 0.3s ease;
}

/* Header del menú móvil (cruz + logo) */
.mobile-menu-header {
    width: 100%;
    margin-top: 57px;
    margin-bottom: 27px;
}

@media (max-width: 1600px) {
    .mobile-menu-header {
        width: 100%;
        margin-top: 35px;
        margin-bottom: 3px;
    }
}

.mobile-menu-logo {
    display: none;
}

.sub-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 33.7%;
    height: 100vh;
    background-color: #253e29;
    padding: 60px;
    gap: 30px;
    z-index: 3;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.sub-menu > .nav-section {
    height: 39.5% !important;
    margin: 0 auto;
}

.sub-menu > .lr-menu_logo {
    margin: 0 auto;
}

.open {
    opacity: 1;
    transform: translateY(0);
}

.open-sub {
    opacity: 1;
    transform: translateX(0);
}

.lr-menu_logo {
    width: 170px;
    margin-bottom: -126px;
    filter: brightness(10);
    transition: margin-bottom var(--t-slow) var(--ease-emphasized),
    width var(--t-slow) var(--ease-emphasized);
}

.hero-title {
    font-family: 'Voyage', serif;
    color: white;
    font-size: 74px;
    font-weight: 400;
}

.title {
    font-family: 'AnticDidone', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 52px;
}

.title-box {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
}

.small {
    font-size: 14px !important;
    line-height: 18px !important;
}

.sub-title {
    font-size: 22px;
    line-height: 25px;
}

.card-image div .sub-title {
    font-family: 'AnticDidone', serif;
    font-size: 28px;
    line-height: 32px;
}

.img-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sider-title {
    font-family: 'AnticDidone', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
}

.contenedor {
    display: flex;
    justify-content: center;
    padding: 90px 0 0 0;
}

.contenedor-bg {
    display: flex;
    justify-content: center;
    margin: 90px 0 0 0;
}

.pt-90 {
    padding: 90px 0 0 0;
}

.mt-90 {
    margin-top: 90px;
}

.full-seccion {
    width: 100%;
}

.big-seccion {
    max-width: 1440px;
}

.seccion {
    max-width: 1200px;
}

.h-fit {
    height: fit-content;
}

.g-20 {
    gap: 20px;
}

.g-30 {
    gap: 30px;
}

.py-30 {
    padding: 30px 0;
}

.portada {
    height: 406px;
    display: flex;
    justify-content: center;
    padding-top: 12rem;
}

.main-image {
    background-image: url('../img/header-pattern.png'),
    url('../img/hero-bg.png');

    background-position: bottom left,
    center;

    background-repeat: repeat-x,
    no-repeat;

    background-size: auto,
    cover;
}

.card-image {
    width: 100%;
    height: 266px;
    background-size: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0 0 30px 30px !important;
    cursor: pointer;
    box-shadow: 0 -70px 40px -20px rgba(0, 0, 0, 0.72) inset;
}

.card-image:hover {
    scale: 1.02;
    transition: 0.2s;
}

.sub-title.line {
    color: white;
    white-space: nowrap;
}

.put-line {
    content: '';
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: white;
    margin-left: 10px;
    transition: width 0.3s ease;
}

main {
    width: 100%;
    background-image: url('../img/pattern.png');
    background-position: top left;
    background-repeat: no-repeat;
}

.gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

.thanks-bg {
    background-image: url('../img/bg-thanks.svg');
    background-position: center;
}

.mt-15 {
    margin-top: 15px;
}

.header-container {
    border: 1px solid var(--gold);
    padding: 30px;
    background: white;
}

.header-inputs {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}

.grid-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.grid-row > div:last-child {
    text-align: right;
}

.header-inputs > div {
    flex: 1;
}

.btn-select {
    display: flex;
    padding: 9px 16px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border: 1px solid var(--gold);
    background: white;
}

.book-select-container > .fa-chevron-down {
    pointer-events: none;
}

.placeholder {
    color: #ADB5BD;
}

.dropdown-menu {
    margin-top: -2px !important;
    border-radius: 0;
}

.dropdown-menu > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dropdown-item {
    padding: 8px 24px;
    transition: all var(--t-normal) var(--ease-standard);
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--gold);
    color: white;
}

.service-cards {
    display: grid;
    row-gap: 30px;
    column-gap: 30px;
    align-self: stretch;
    grid-template-rows: fit-content(100%) fit-content(100%) fit-content(100%) fit-content(100%) fit-content(100%) fit-content(100%) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.time-card {
    cursor: pointer;
    transition: all var(--t-normal) var(--ease-standard);
    border: 1px solid var(--softer-gold);
    background: #FFF;
    height: fit-content;
}

.time-card.disabled {
    cursor: default;
    transition: none;
    pointer-events: none;
    opacity: 0.6;
}

.service-selected {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    align-self: stretch;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 9px 16px;
    border: 1px solid var(--softer-gold);
    background: #FFF;
}

.antic {
    font-family: "AnticDidone", serif;
    font-size: 18px;
}

.time-card:hover {
    box-shadow: 2px 4px 15px #00000014;
    scale: 1.02;
}

.aside-plus {
    width: 150px;
}

.book-header {
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.display-time {
    font-family: "SF Pro Display", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    flex: 1 0 0;
}

.players {
    display: flex;
    align-content: center;
    align-items: center;
    font-size: 22px;
    gap: 5px;
}


.book-header.players {
    display: flex;
    height: 48px;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    font-family: "AnticDidone", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.book-body {
    display: flex;
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.book-body .product-item {
    display: flex;
    padding: 11px 5px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.book-body .product-item:not(:last-child) {
    border-bottom: 1px solid var(--gold);
    padding-bottom: 10px;
}

.see-more {
    width: 100%;
    padding: 15px;
    text-align: center;
    color: var(--grey);
}

.text-grey {
    color: var(--grey);
}

.mb-60 {
    margin-bottom: 60px;
}

.twiligth-table {
    display: grid;
    gap: 20px;
    border: 1px solid var(--gold);
    background: white;
    padding: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.lh-40 {
    height: 40px;
}

hr {
    color: var(--gold);
    opacity: 1;
    border-top: 2px solid var(--gold);
}

.book-card {
    border: 0;
    border-radius: 0;
    padding: 10px 0;
}

.book-card:not(:last-child) {
    border-bottom: 1px solid var(--gold);
}

.player-btn {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 24px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--gold);
    border: 1px solid var(--gold);
    transition: all var(--t-normal) var(--ease-standard);
}

input[type="radio"]:checked + .player-btn {
    color: white;
    background: var(--gold);
}

.input-group:focus-within .input-group-text {
    border-color: var(--gold);

    & img {
        opacity: 1 !important;
    }
}

.footer-icons a {
    color: var(--gold);
    transition: all var(--t-normal) var(--ease-standard);
}

.footer-icons a:hover {
    scale: 1.1;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 59px;
    align-self: stretch;
}

.quantity {
    width: 55px;
}

.resume-product div:last-child {
    display: flex;
    justify-content: flex-end;
    width: 140px;
}

.promo-container {
    display: flex;
    width: 100%;
    gap: 0;
    transition: gap 0.3s ease;

    .input-group {
        flex: 1 1 100%;
        transition: all 0.3s ease;
        width: 100%;

        &:has(.input-field:not(:placeholder-shown)) {
            flex: 0 1 calc(50% - 4px);
        }
    }

    #btn-apply {
        display: none;
        flex: 0 1 calc(50% - 4px);
        align-items: center;
        white-space: nowrap;

        &:has(~ .input-group .input-field:not(:placeholder-shown)),
        .input-group:has(.input-field:not(:placeholder-shown)) +& {
            display: flex;
            justify-content: center;
            animation: slideIn 0.4s ease-out forwards;
        }
    }
}

.map {
    width: 100%;
    background-image: url('../img/map.webp');
    padding: 20px;
    position: relative;
    margin-bottom: 95px;
}

.map:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -95px;
    left: 0;
    width: 100%;
    height: 95px;
    background-image: url('../img/map-decoration.svg');
    background-repeat: repeat-x;
    background-size: contain;
    z-index: 1;
}

.map-info {
    width: fit-content;
    display: flex;
    flex-direction: column;
    background: white;
    align-items: center;
    gap: 30px;
    padding: 30px;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;

}

.w-half-md {
    width: 50% !important;
}

.thanks-img {
    height: 362px;
}

.w-md-auto {
    width: fit-content !important;
}

.reservation-info .divider {
    border-top: 2px solid black;
    height: 100%;
}

.reservation-info p {
    margin: 0;
}

.fs-36 {
    font-size: 36px !important;
    line-height: 42px !important;
}

@media (max-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .canvas {
        margin-top: 100px;
    }

    #menu {
        background-color: white;
    }

    .navbar {
        height: 100px;
    }

    .nav-section.left,
    .nav-section.right {
        width: 25%;
        border: 0;
    }
    .nav-section.right{
        padding-right: 15px;
    }

    .menu-icon-custom {
        width: 60px;
        height: 33px;
    }

    .menu-line {
        width: 60px;
        background-color: var(--gold);
    }

    .lr-menu_logo {
        filter: none;
        width: 144px;
        margin-bottom: 0;
    }

    .main-menu li div svg {
        width: 14px;
    }

    .btn-nav {
        color: var(--gold) !important;
        cursor: pointer;
    }

    .navbar:before,
    .navbar:after {
        display: none;
    }
    .navbar .btn:hover, .navbar .btn:active, .navbar.btn:focus{
        color: var(--gold) !important;
        opacity: 0.8;
    }



    .footer-logos {
        width: 100%;
        gap: 30px;
    }

    .portada {
        height: 160px;
        padding: 0;
    }

    .main-image {
        background-image: url('../img/hero-bg.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: none;
    }

    .main-image.force-show {
        display: block !important;
    }

    .hero-title {
        color: #FFF;
        font-size: 32px;
        font-weight: 400;
        line-height: 1.2;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .service-cards {
        gap: 20px;
    }

    .canvas {
        overflow-x: hidden;
    }

    .seccion,
    .big-seccion {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-top: 30px;
    }

    .contenedor {
        padding: 36px 10px 0 10px;
        justify-content: flex-start;
    }

    footer.contenedor {
        padding: 36px 0 0 0 !important;
    }

    .contenedor-bg {
        margin: 36px 10px 0 10px;
    }

    .card-image {
        height: 190px;
        padding: 0 0 16px 16px !important;
        box-shadow: 0 -60px 30px -10px rgba(0, 0, 0, 0.65) inset;
    }

    .card-image:hover {
        scale: 1;
    }

    .sub-title {
        font-size: 22px;
        line-height: 24px;
    }

    .sub-title.line:after {
        display: none;
    }

    .card-image.sub-title {
        font-family: 'AnticDidone', serif;
        font-size: 34px;
        line-height: 38px;

    }

    .contenedor-bg .seccion {
        padding: 36px 20px;
    }

    .contenedor-bg img {
        width: 340px !important;
        max-width: 100%;
    }

    .contenedor-bg p {
        font-size: 15px;
        line-height: 22px;
    }

    .title {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 0;
    }

    .lh-40 {
        height: auto;
        line-height: 22px;
        margin-bottom: 12px !important;
    }

    .img-container {
        height: 130px !important;
    }

    .btn-claro {
        justify-content: center;
        padding: 10px 20px !important;
    }

    .sider-title {
        font-size: 20px;
        line-height: 26px;
    }

    .header-container {
        padding: 30px;
        width: 100% !important;
    }

    .grid-row {
        grid-template-columns: 2fr 1fr;
        gap: 8px;
        font-size: 13px;
        line-height: 18px;
    }

    .header-row div {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .mb-30 {
        margin-bottom: 16px;
    }

    .mb-60 {
        margin-bottom: 32px;
    }

    .services-layout {
        flex-direction: column !important;
    }

    .services-layout aside {
        width: 100% !important;
        order: 2;
        margin-top: 8px;
    }

    .aside-plus {
        width: 300px;
    }

    .services-layout > div {
        order: 1;
        width: 100% !important;
    }

    .header-inputs {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .header-inputs > div {
        width: 100%;
    }

    /* Extras: */
    .price-slot-container {
        align-self: flex-end;
        margin-left: auto;
        width: 100%;
        justify-content: space-between;
    }

    .resume-layout {
        flex-direction: column;
    }

    .resume-layout > div {
        width: 100% !important;
    }

    .resume-layout > div:first-child {
        order: 2;
    }

    .resume-layout > div:last-child {
        order: 1;
    }

    .resume-layout > div:first-child .d-flex.g-30 {
        flex-direction: column;
        gap: 10px !important;
    }

    .resume-product {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .resume-product > .w-100 {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0;
    }

    .resume-product > div:last-child {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .thanks-bg {
        background-image: url('../img/bg-thanks.svg');
        background-position: top center;
    }

    .thanks-img {
        height: 140px;
        display: flex;
        justify-content: center;
    }

    #userProfileDropdown {
        padding: 1px 6px;
    }

    .header-text {
        width: 100% !important;
    }

    .w-half-md {
        width: 100% !important;
    }

    .px-14 {
        font-size: 14px;
    }

    .fs-24 {
        font-size: 24px !important;
    }

    .m-pt-4 {
        margin-top: 30px;
    }

    .h-m-100 {
        height: 100%;
    }

    /* --- Offcanvas menú móvil --- */
    /* Ocultar panel sub-menu lateral */
    .sub-menu {
        display: none;
    }

    /* Main menu: ancho mayor, scroll vertical */
    .main-menu {
        overflow-y: auto;
        box-shadow: none;
    }

    .main-menu {
        width: 85%;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-menu.open {
        opacity: 1;
        transform: translateY(0);
    }

    /* Header del menú: cruz a la izquierda, logo centrado */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        padding: 12px 20px 12px 4px;
        position: relative;
        margin-bottom: 8px;
        flex-shrink: 0;
    }

    .close-menu {
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .mobile-menu-logo {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 110px;
        filter: brightness(10);
        pointer-events: none;
    }

    /* Items del menú: ocultar span decorativo, alineados a la izquierda */
    .menu-options > li > span {
        display: none;
    }

    .menu-options > li {
        gap: 16px;
        padding: 6px 59px;
        flex-wrap: wrap;
    }

    /* Flecha: sin margen derecho excesivo */
    .menu-options > li > div {
        margin-right: 0;
    }

    /* Flecha gira 90° cuando el item está expandido */
    .menu li.expanded > div svg {
        transform: rotate(90deg);
    }

    /* Sub-items inline (acordeón): alineados con el texto del item padre */
    .main-menu ul.sub-items {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 8px 0 8px 32px;
        margin-left: 0;
        margin-top: 4px;
    }

    .main-menu ul.sub-items.open {
        display: flex;
    }

    .main-menu .sub-items > li {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0;
    }

    .main-menu .sub-items > li > a {
        font-size: 1rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.75);
    }

    .main-menu .sub-items > li > a:hover {
        color: #FDF3CB;
    }
}

/*-----------------------------------------------------------------*/
/*  Botones                                                        */
/*-----------------------------------------------------------------*/
.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    line-height: 22px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    border-radius: 0;
    background-color: white;
}

.btn:hover,
.btn:active,
.btn:focus {
    color: #fff !important;
    background-color: var(--gold) !important;
}

.btn-nav {
    color: white;
    background-color: transparent;
}

.btn-nav:hover,
.btn-nav:active,
.btn-nav:focus {
    background-color: transparent !important;
}

.btn-claro {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.btn-gold {
    color: white !important;
    border: 1px solid var(--gold);
    background: var(--gold) !important;
    padding: 10px 35px;
}

.btn-gold:hover,
.btn-gold:active,
.btn-gold:focus {
    background-color: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
}

.input-group {
    height: 44px;
}

.form-control, .input-group-text {
    transition: none !important;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--gold);
    outline: 0;
    box-shadow: none;
}

a {
    color: var(--gold);
}

a:hover {
    color: var(--hard-gold);
}

/*-----------------------------------------------------------------*/
/*  PROFILE                                                        */
/*-----------------------------------------------------------------*/
.profile-container {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
    width: 100%;

    .nav-tabs {
        gap: 3.5rem;
    }

    .nav-item {
        font-family: "AnticDidone", sans-serif;
        font-weight: 400;
        font-size: 1.5rem;

        & :hover {
            border-bottom: 3px solid var(--gold) !important;
        }

        .nav-link {
            color: var(--verde_oscuro);
        }

        .nav-link.active {
            border-bottom: 3px solid var(--gold) !important;
        }
    }

    #profile-content-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem;

        .separator {
            content: '';
            width: 100%;
            height: 4px;
            background-color: var(--gold);
        }

        .table {
            th {
                padding: 0.5rem 1rem;
            }

            td {
                padding: 1rem;
            }

            thead {
                color: var(--verde_oscuro);
                font-size: 20px;
                font-weight: 600;
                border: 1px solid transparent;
            }

            tbody {
                font-size: 1rem;
                font-weight: 500;
                border: 1px solid transparent;

                .bg {
                    background-color: var(--verde-2);
                }

                .body-separator:not(:last-child) {
                    border-bottom: 2px solid var(--verde);
                }

                .icon {
                    color: var(--verde_oscuro);
                    padding: 0.5rem;
                    border-radius: 8px;
                    cursor: pointer;

                    svg {
                        width: 24px;
                        height: 24px;
                    }
                }
            }

        }
    }
}

@media (max-width: 991.98px) {
    .profile-container {
        width: 100% !important;

        .nav-tabs {
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center !important;
        }
    }
}

/* 1. Estado base (sin marcar) */
.form-check-input {
    border-color: var(--grey);
    cursor: pointer;
}

/* 2. Estado marcado (Checked) */
.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

/* 3. Estado de enfoque (Focus / Halo de luz) */
.form-check-input:focus {
    border-color: var(--gold);
    outline: 0;
    box-shadow: 0 0 2px 0.25rem rgb(152 125 45 / 26%);
}

/* 4. Si usas switches (opcional) */
.form-check-switch .form-check-input:checked {
    background-color: var(--gold);
}

/* 5. El check interno (el icono blanco) */
/* Bootstrap usa una imagen SVG. Si quieres asegurarte de que resalte bien: */
.form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.services-calendar {
    font-family: "UncutSans", sans-serif;

    .air-datepicker-cell.-current- {
        color: black;
    }
    .air-datepicker--navigation {
        /*padding: 1rem 1rem 0 1rem;*/
    }

    .air-datepicker--content {
        /*padding: 0 1rem 1rem 1rem;*/
    }

    .air-datepicker-body--day-name {
        color: var(--gold);
    }

    .air-datepicker-cell:hover,
    .air-datepicker-cell:active,
    .air-datepicker-cell:focus,
    .-current- {
        color: var(--gold);
    }

    .air-datepicker-cell:hover,
    .air-datepicker-cell:active,
    .air-datepicker-cell:focus,
    .-selected- {
        color: white !important;
        background-color: var(--gold) !important;
    }

    .air-datepicker-body--cells > * {
        border-radius: 0;
    }
}

/*-----------------------------------------------------------------*/
/*  Quitar estilos autocompletados                                 */
/*-----------------------------------------------------------------*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/*-----------------------------------------------------------------*/
/*  SPINNER                                                        */
/*-----------------------------------------------------------------*/
.spinner__inside {
    position: absolute;
    top: 50%;
    right: 50%;
}

.spinner__parent {
    position: relative;
    min-height: 400px;
}

.spinner-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
}

.spinner-full-screen {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-full-screen__parent {
    position: relative;
    /*overflow-x:hidden; overflow-y:hidden; */
}

.spinner-full-screen__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner__filter {
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    position: absolute;
}

.spinner-border.text-light {
    z-index: 9999;
}

.loading__spinner {
    text-align: center;
    z-index: 9999;
    color: white;
}


/*-----------------------------------------------------------------*/
/*  SPINNER  BOOKING                                               */
/*-----------------------------------------------------------------*/

.spinner-booking__filter {
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 1;
    position: absolute;
}

.spinner-border.text-light {
    z-index: 9999;
}

.loading__spinner {
    text-align: center;
    z-index: 9999;
    color: white;
}

.spinner-booking__img {
    width: 120px;
    z-index: 999;
    margin-bottom: 10px;
}

.spinner-border {
    z-index: 999;
    color: var(--gold) !important;
}

.swal2-popup {
    border: 1px solid var(--gold) !important;
    border-radius: 0 !important;
}

.swal2-close:hover,
.swal2-close:active,
.swal2-close:focus {
    outline: none;
    box-shadow: none !important;
    color: inherit !important;
}

.swal {

    .swal-icon {
        font-size: 5rem;
    }

    .swal-title {
        padding: 1rem 0;
        font-size: 24px;
        font-weight: 600;
        line-height: 137%;
    }

    .swal-text {
        text-align: center;
        font-feature-settings: "salt" on;
        font-size: 16px;
        font-weight: 400;
        line-height: 130%;
    }
}

input.form-control::placeholder {
    color: var(--gris-inputs) !important;
}

.select2-selection__placeholder {
    color: var(--gris-inputs) !important;
    font-family: 'UncutSans', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: 'UncutSans', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 32px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--gold);
    color: white;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--gold);
    color: white;
}
