@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap');

@font-face {
    font-family: 'Kallisto';
    src: url('./fonts/Kallisto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('./fonts/Kallisto-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Kallisto';
    src: url('./fonts/Kallisto-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

:root {
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-gray: #EDEDED;
    --brand-dark-gray: #1a1a1a;
    --brand-gradient: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    --font-heading: 'Kallisto', serif;
    --font-body: 'Work Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--brand-black);
    background-color: var(--brand-white);
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    background-color: #000000;
}

body.dark-mode-force, html {
    background-color: #000 !important;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bg-light { background-color: var(--brand-gray) !important; }

.btn-primary {
    background: var(--brand-black);
    border: 1px solid var(--brand-black);
    color: var(--brand-white);
    border-radius: 0;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: var(--brand-white);
    color: var(--brand-black);
    border-color: var(--brand-black);
}

.btn-outline-primary {
    color: var(--brand-black);
    border-color: var(--brand-black);
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--brand-black);
    color: var(--brand-white);
    border-color: var(--brand-black);
}

.rounded-pill { border-radius: 50rem !important; }

.navbar {
    padding: 20px 0; 
    transition: all 0.4s ease;
}

.navbar-brand {
    color: var(--brand-white) !important;
    font-size: 1.5rem;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
}

.nav-link {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px; 
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-white) !important;
}

#main-navbar {
    background-color: #000000 !important;
    border-bottom: 1px solid #222;
}

#main-navbar .nav-link {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #ffffff !important;
    transition: opacity 0.3s;
}

#main-navbar .nav-link:hover {
    opacity: 0.7;
    color: #ffffff !important;
}

#main-navbar .btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

#main-navbar .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
}

.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
    nav.navbar .container,
    nav.navbar .container-fluid {
        width: 85% !important;
        max-width: 85% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .navbar-toggler {
        border: 1px solid #ddd !important;
        border-radius: 50% !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .navbar-toggler-icon {
        width: 24px !important;
        height: 24px !important;
        background-size: contain !important;
        filter: invert(1); 
    }
}

footer {
    background: var(--brand-gradient) !important;
    border-top: 10px solid var(--brand-gray);
    color: #aaa;
}

footer h5 {
    color: var(--brand-white);
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.bg-black-pure { background-color: #000000 !important; }
.bg-dark-surface { background-color: #111111 !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
.text-white-60 { color: rgba(255, 255, 255, 0.6) !important; }
.fw-thin { font-weight: 100 !important; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }

.btn-white {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #e2e2e2;
    border-color: #e2e2e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-video-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -5px;
    padding-top: 1px;
    background-color: #000;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 90%, #000000 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.service-card-solid {
    background-color: #000000; 
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0; 
    animation: fadeInUp 0.8s ease-out forwards;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card-solid:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card-solid .icon-box {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.service-card-solid:hover .icon-box {
    color: #ffffff;
}

.card-title-luxury {
    font-family: 'Kallisto', serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-propiedad-dark {
    background-color: #141414;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-propiedad-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.img-wrapper {
    overflow: hidden;
    position: relative;
    height: 280px; 
}

.card-propiedad-dark img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-propiedad-dark:hover img {
    transform: scale(1.05);
}

.badge-luxury {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 1px;
    padding: 0.5em 1em;
}

.amenities-row {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    margin-bottom: 15px;
}
.amenities-row span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-card-dark {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #1a1a1a;
}

.icon-circle-luxury {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.luxury-form-box {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-control-line {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff !important;
    padding: 12px 0;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 0.95rem;
}

.form-control-line:focus {
    background-color: transparent !important;
    border-bottom-color: #ffffff;
    outline: none;
    box-shadow: none;
    color: #fff !important;
}

.form-control-line::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px); 
    animation: fadeInUp 1s ease-out forwards; 
}

.delay-1 { animation-delay: 0.3s; } 
.delay-2 { animation-delay: 0.6s; } 

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}

body {
    background-color: #000000 !important;
    color: #ffffff;
}

.propiedades-hero {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    min-height: 50vh; 
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-top: 0px;
    overflow: hidden; 
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero-pattern {
    background-image: url('assets/img/pattern-grid.png'); 
    opacity: 0.05; 
    pointer-events: none;
    position: absolute; 
    z-index: 2; 
}

.hero-title {
    font-family: 'Kallisto', serif;
    text-transform: none !important; 
    font-weight: 300; 
    letter-spacing: 1px;
    position: relative; 
}

.filter-section-wrapper {
    background-color: #000000 !important; 
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    margin-top: 4rem; 
    padding-bottom: 2rem;
}

.floating-filter-bar {
    background-color: #000000;
    border: 1px solid #ffffff0d;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.filter-input, 
.filter-select {
    background-color: #141414 !important;
    border: 1px solid #333;
    color: #fff !important;
    border-radius: 6px;
}

.filter-input:focus, 
.filter-select:focus {
    border-color: #fff;
    box-shadow: none;
}

.properties-grid-section {
    background-color: #000000;
    padding-top: 0;
    padding-bottom: 5rem;
}

.card-propiedad-dark {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.card-propiedad-dark:hover {
    border-color: #444;
}

.manifesto-section {
    background-color: #000000;
    padding: 6rem 0;
    border-top: none !important;
}

.manifesto-card {
    padding: 6rem 2rem; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2301&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
}

.manifesto-card::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-color: #000000;
    opacity: 0.75;
    z-index: 1;
}

.manifesto-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.font-kallisto { font-family: 'Kallisto', serif; }

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

html { scroll-behavior: smooth; }
body { background-color: #000000 !important; }

.slide-content-box {
    height: 800px; 
    width: 100%;    
    
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;      
    
    padding: 0 2rem 10rem 2rem; 
    
    background-color: #000;
    
    touch-action: pan-y !important; 
    -webkit-user-select: none;
    user-select: none;
}

@media (max-width: 576px) {
    .slide-content-box {
        height: 620px; 
        padding-bottom: 10rem; 
    }
}

.slide-title {
    font-family: 'Kallisto', serif;
    text-transform: none !important; 
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    font-weight: 300 !important; 
}

.slide-text {
    font-family: 'Work Sans', sans-serif;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto; 
    font-weight: 300;
}

.carousel-indicators {
    bottom: 40px; 
    margin-bottom: 0; 
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    background-color: #444;
    height: 3px; 
    width: 40px; 
    margin: 0 8px; 
    border-top: 20px solid transparent; 
    border-bottom: 20px solid transparent; 
    background-clip: padding-box;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    opacity: 1;
}

.icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
}

.carousel-inner {
    touch-action: pan-y !important;
}

body { background-color: #000 !important; }

.hero-vende {
    height: 50vh; 
    margin-top: 0;
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.form-control-line,
.form-select-line {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 0;
    color: #fff !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-control-line:focus,
.form-select-line:focus {
    box-shadow: none;
    border-bottom-color: #fff; 
    background-color: rgba(255, 255, 255, 0.05) !important; 
}

.form-control-line::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-select-line {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    cursor: pointer;
}

.form-select-line option {
    background-color: #111; 
    color: #fff;
    padding: 10px;
}

.process-number {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5); 
    margin-right: 20px;
    transition: color 0.3s ease;
}

.process-card {
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 25px;
    height: 100%;
    transition: all 0.4s ease;
}

.process-card:hover {
    border-left-color: #fff; 
    transform: translateX(10px); 
}

.process-card:hover .process-number {
    color: #fff; 
}

.luxury-form-wrapper {
    background-color: #000000; 
    border: 1px solid rgba(255, 255, 255, 0.5); 
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.luxury-label {
    color: #666; 
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.luxury-input {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff !important;
    padding: 10px 0;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    background-color: transparent !important;
    box-shadow: none;
    border-bottom: 1px solid #fff; 
}

.luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

select.luxury-input {
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px 12px;
    padding-right: 20px;
}

select.luxury-input option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

textarea.luxury-input {
    resize: none;
    min-height: 80px;
}

.btn-luxury-submit {
    background-color: #fff;
    color: #000;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 15px 0;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-luxury-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
}

.hero-admin-full {
    min-height: 50vh; 
    width: 100%;
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background-color: #000;
    overflow: hidden; 
}

.service-category-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2; 
    border-radius: 20px;
}

.service-category-card:hover {
    border-color: #444;
    background-color: #151515;
    transform: translateY(-5px);
}

.service-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 300;
}

.service-check-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #fff;
    font-size: 0.8rem;
}

.criteria-box {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.criteria-box:hover {
    transform: translateY(-5px);
}

.icon-criteria-center {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    display: inline-block;
}

.admin-form-box {
    background-color: #000000; 
    padding: 3rem; 
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-label-luxury {
    color: rgba(255, 255, 255, 0.5); 
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.btn-admin-submit {
    padding: 15px 40px !important; 
    font-size: 0.85rem;
    white-space: nowrap; 
    border-radius: 30px;
}

.admin-form-box {
    padding: 3rem 4rem;
}

@media (max-width: 768px) {
    .admin-form-box {
        padding: 2rem; 
    }
    .btn-admin-submit {
        width: 100%; 
        margin-top: 1rem;
    }
    .text-md-end {
        text-align: center !important; 
    }
}

body { background-color: #000000 !important; }

.title-nosotros {
    font-family: 'Kallisto', serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 3.5rem; 
    color: #fff;
    letter-spacing: 4px; 
    text-align: right; 
    line-height: 1;
}

.subtitle-nosotros {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 300; 
    letter-spacing: 1px;
}

.text-body-nosotros {
    font-family: 'Work Sans', sans-serif;
    color: #b0b0b0; 
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 90%;
}

.mission-label {
    font-family: 'Kallisto', serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    border-left: 2px solid #fff; 
    padding-left: 15px;
}

.visual-section {
    background-color: #0a0a0a; 
    padding: 3rem;
    border: 1px solid #222;
    position: relative;
}

.visual-card {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    display: block; 
}

.visual-card img {
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(100%) brightness(0.7);
}

.visual-card:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) brightness(1);
}

.visual-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-family: 'Kallisto', serif;
    font-size: 1.8rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fade-in {
    opacity: 0;
    animation: fadeInAnimation 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .title-nosotros { text-align: left; font-size: 2.5rem; }
    .visual-section { padding: 1.5rem; margin-top: 3rem; }
}

.hero-nosotros-compact {
    position: relative;
    height: 50vh; 
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1613545325278-f24b0cae1224?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.5;
    transform: scale(1.1);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000 5%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    transform: translateY(-20px);
}

.hero-title-text {
    font-family: 'Kallisto', serif;
    font-size: 3.5rem; 
    font-weight: 300;
    text-transform: none !important; 
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mv-section {
    padding: 5rem 0;
    background-color: #000;
}

.mv-card {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 2rem;
    height: 100%;
    transition: border-color 0.3s ease;
}

.mv-card:hover {
    border-left-color: #fff; 
}

.mv-label {
    font-family: 'Kallisto', serif;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.mv-text {
    font-family: 'Work Sans', sans-serif;
    color: #b0b0b0;
    font-size: 1.05rem; 
    line-height: 1.8;
    font-weight: 300;
}

.values-section {
    padding-top: 2rem;
    padding-bottom: 4rem; 
    background-color: #000;
}

.value-card {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #444;
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Kallisto', serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.value-desc {
    font-family: 'Work Sans', sans-serif;
    color: #777;
    font-size: 0.85rem;
    font-weight: 300;
}

.cta-visual-banner {
    position: relative;
    height: 350px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0; 
    border-top: 1px solid #222;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2053&auto=format&fit=crop') center/cover no-repeat;
    filter: grayscale(100%) brightness(0.4);
    transition: all 0.5s ease;
}

.cta-visual-banner:hover .cta-bg {
    filter: grayscale(0%) brightness(0.6);
    transform: scale(1.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-title-text { font-size: 2.2rem; }
    .hero-nosotros-compact { height: 40vh; min-height: 300px; }
    .mv-card { margin-bottom: 3rem; border-left: none; border-top: 1px solid #333; padding-left: 0; padding-top: 1.5rem; }
}

.hero-nosotros-compact {
    position: relative;
    height: 50vh; 
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    
    padding-bottom: 5rem; 
}

body.page-contacto { 
    background-color: #000000 !important; 
    color: #ffffff !important;
}

.hero-contacto-fixed {
    position: relative;
    width: 100%;
    height: 50vh; 
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0 !important;
    padding-bottom: 5rem; 
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2301&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #000000 15%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-title-text {
    font-family: 'Kallisto', serif; 
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    text-transform: none !important;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.section-intro-text {
    background-color: #000000 !important;
    padding-top: 5rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.intro-paragraph {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    color: #b0b0b0 !important;
    max-width: 900px;
    margin: 0 auto;
}

.section-offices-cards {
    background-color: #000000 !important;
    padding-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.office-card-luxury {
    background-color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.office-card-luxury:hover {
    border-color: #ffffff;
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.office-icon-luxury {
    font-size: 2rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.office-title-luxury {
    font-family: 'Kallisto', serif;
    color: #ffffff !important;
    font-size: 1.1rem;
    text-transform: none !important;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.office-text-luxury {
    font-family: 'Work Sans', sans-serif;
    color: #999999 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.office-link-luxury {
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Kallisto', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.office-link-luxury:hover {
    border-bottom-color: #ffffff;
    opacity: 0.8;
}

.contact-form-section {
    background-color: #000000 !important;
    border-top: 1px solid #111;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.form-card-wrapper {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px; 
    margin: 0 auto;   
}

.input-lineal {
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff !important;
    padding: 10px 0;
    font-weight: 300;
    transition: border-color 0.3s ease;
    font-size: 0.9rem;
}

.input-lineal:focus {
    box-shadow: none;
    border-bottom-color: #fff;
    outline: none;
}

.input-lineal::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.btn-send-clean {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 15px 60px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-send-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
    background-color: #f0f0f0;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-contacto-fixed { height: 40vh; min-height: 350px; padding-bottom: 3rem; }
    .hero-title-text { font-size: 2.5rem; }
    .office-card-luxury { padding: 2rem; }
}

html, body {
    background-color: #000000 !important;
}

.section-offices-cards {
    border-bottom: none !important; 
    padding-bottom: 3rem; 
}

.contact-form-section {
    border-top: none !important; 
    margin-top: 0 !important;    
    padding-top: 2rem;           
}

body {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.journal-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0); 
}

.journal-title {
    font-family: 'Kallisto', serif;
    font-weight: 300;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 3.5rem;
    margin: 0;
}

.journal-subtitle {
    font-family: 'Work Sans', sans-serif;
    color: #b0b0b0; 
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
}

.card-blog-dark {
    background-color: transparent; 
    border: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.img-hover-wrapper {
    overflow: hidden;
    position: relative;
    height: 300px; 
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    background-color: #111; 
}

.img-hover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s;
    filter: brightness(0.8); 
}

.card-blog-dark:hover .img-hover-wrapper img {
    transform: scale(1.05);
    filter: brightness(1); 
}

.blog-meta-date {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-title {
    font-family: 'Kallisto', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: none !important;
}

.blog-excerpt {
    font-family: 'Work Sans', sans-serif;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.read-more-clean {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.read-more-clean:hover {
    border-bottom-color: #ffffff;
    opacity: 0.8;
}

.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0;
    background-color: #000;
}

.newsletter-input {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    padding: 10px 0;
    width: 100%;
    outline: none;
}

.newsletter-input::placeholder {
    color: #555;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.btn-newsletter {
    background: transparent;
    border: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-bottom: 1px solid transparent;
}

.journal-hero {
position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    padding-bottom: 5rem;
}

.journal-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2653&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.6; 
    z-index: 0;
}

.journal-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #000000 20%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.journal-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.journal-title {
    font-family: 'Kallisto', serif;
    font-weight: 300;
    text-transform: none !important;
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.journal-subtitle {
    font-family: 'Work Sans', sans-serif;
    color: #d1d1d1; 
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .journal-hero { height: 40vh; }
    .journal-title { font-size: 2.5rem; }
}

.journal-hero .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journal-content-wrapper {
     margin: 0 auto !important; 
}

.service-icon-img {
    display: block;
    width: 190px;     
    height: auto;    
    margin: 0 auto;  
    margin-bottom: 1.5rem; 
    
    transition: transform 0.3s ease; 
}

.slide-content-box:hover .service-icon-img {
    transform: scale(1.05); 
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 1.5rem !important; 
        margin-top: 10px;              
        margin-bottom: 10px;            
    }
    
    .slide-text {
        font-size: 0.9rem !important;
    }
}

body.page-entrada { background-color: #000000 !important; }
html { background-color: #000000 !important; }


.article-header {
    margin-top: 100px;
    margin-bottom: 3rem;
    text-align: center;
}

.article-category {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.article-title {
    font-family: 'Kallisto', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none !important;
    
    font-weight: 300 !important; 
}

.article-meta {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-body {
    font-family: 'Work Sans', sans-serif;
    color: #b0b0b0; 
    font-size: 1.1rem;
    line-height: 1.9; 
    font-weight: 300;
}

.article-body::first-letter {
    float: left;
    font-family: 'Kallisto', serif;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 5px;
    color: #fff;
    font-weight: 700;
}

.article-body strong { color: #fff; font-weight: 600; }
.article-body h2, .article-body h3 {
    color: #fff;
    font-family: 'Kallisto', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
    margin: 4rem 0;
}

.btn-back {
    color: #fff;
    border: 1px solid #333;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.btn-back:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.fade-in { animation: fadeIn 1s forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.hover-opacity:hover { opacity: 0.7; transition: 0.3s; }
@keyframes fadeIn { to { opacity: 1; } }

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.luxury-input-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.luxury-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    padding: 10px 0;
    transition: all 0.4s ease;
    border-radius: 0; 
}

.luxury-input:focus {
    outline: none;
    border-bottom: 1px solid #fff;
}

.luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.luxury-input:-webkit-autofill,
.luxury-input:-webkit-autofill:hover, 
.luxury-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.service-selector-label {
    display: block;
    font-family: 'Kallisto', serif;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: none !important; 
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-option input[type="radio"] {
    display: none;
}

.service-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: transparent;
}

.service-btn:hover {
    border-color: #fff;
    color: #fff;
}

.service-option input[type="radio"]:checked + .service-btn {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 500;
}

.btn-submit {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 1rem 3rem;
    font-family: 'Kallisto', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
    display: inline-block;
}

.btn-submit:hover {
    background: #fff;
    color: #000;
}

.services-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); 
    gap: 15px; 
    margin-bottom: 2rem;
}

.service-radio-input {
    display: none; 
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 10px;
    height: 100%;
    min-height: 60px; 
    
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #b0b0b0; 
    
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.service-radio-input:checked + .service-card {
    background: #ffffff; 
    color: #000000;      
    border-color: #ffffff;
    font-weight: 600;    
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); 
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    font-family: 'Work Sans', sans-serif;
}

.custom-select-wrapper select {
    display: none;
}

.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 300;
    color: #b0b0b0; 
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-wrapper.open .custom-select__trigger {
    border-bottom-color: #fff;
    color: #fff;
}

.custom-select__arrow {
    position: relative;
    height: 10px;
    width: 10px;
    margin-left: 10px;
}

.custom-select__arrow::before,
.custom-select__arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0.1rem;
    height: 100%;
    background-color: #b0b0b0;
    transition: all 0.3s ease;
}

.custom-select__arrow::before { left: -3px; transform: rotate(-45deg); }
.custom-select__arrow::after { left: 3px; transform: rotate(45deg); }

.custom-select-wrapper.open .custom-select__arrow::before { left: -3px; transform: rotate(45deg); }
.custom-select-wrapper.open .custom-select__arrow::after { left: 3px; transform: rotate(-45deg); }
.custom-select-wrapper.open .custom-select__arrow::before,
.custom-select-wrapper.open .custom-select__arrow::after { background-color: #fff; }

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 0;
    background: #050505; 
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    max-height: 250px; 
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-radius: 5px 5px 5px 5px;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

.custom-option.selected {
    color: #fff;
    font-weight: 500;
    background-color: rgba(255,255,255,0.02);
}

.custom-options::-webkit-scrollbar { width: 5px; }
.custom-options::-webkit-scrollbar-track { background: #050505; }
.custom-options::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.custom-options::-webkit-scrollbar-thumb:hover { background: #555; }

.multi-select-container {
    display: none; 
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    font-family: 'Work Sans', sans-serif;
}

.multi-select-container.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

.multi-trigger {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); 
    padding: 10px 0;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.multi-trigger:hover, .multi-select-container.open .multi-trigger {
    border-bottom-color: #fff; 
}

.multi-trigger::after {
    content: ''; 
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s;
}

.multi-select-container.open .multi-trigger::after {
    transform: rotate(180deg);
}

.multi-options-list {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background-color: #000; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.multi-select-container.open .multi-options-list {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.multi-option-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #b0b0b0;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.multi-option-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.multi-option-item.selected {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    font-weight: 500;
}

.custom-cb {
    width: 14px;
    height: 14px;
    border: 1px solid #666;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.multi-option-item.selected .custom-cb {
    background: #fff;
    border-color: #fff;
}

.multi-option-item.selected .custom-cb::after {
    content: '✓';
    font-size: 10px;
    color: #000;
    font-weight: bold;
    line-height: 1;
}

.category-btn-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.category-selector-btn {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #b0b0b0;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.category-selector-btn:hover {
    border-color: #fff;
    color: #fff;
}

.category-selector-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 600;
}

select.form-control-line {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    color: #fff; 
    padding: 10px 0;
    outline: none;
    box-shadow: none;
    appearance: none; 
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 10px;
}

select.form-control-line:focus {
    background-color: transparent;
    border-bottom: 1px solid #fff;
    color: #fff;
}

select.form-control-line option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

select.form-control-line optgroup {
    background-color: #111;
    color: #888;
    font-style: normal;
    font-weight: bold;
}

select.form-control-line option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}
select.form-control-line optgroup {
    background-color: #111;
    color: #888;
    font-style: normal;
    font-weight: bold;
}

@font-face {
    font-family: 'Kallisto';
    src: url('../css/fonts/Kallisto-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

.main-navbar {
    background-color: #000000 !important;
    transition: all 0.3s ease;
    z-index: 9999 !important; 
}

.main-navbar .nav-link {
    font-family: 'Kallisto', serif !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: normal;    
    padding-top: 15px;
    padding-bottom: 15px;
    transition: all 0.3s ease;
}

.main-navbar .nav-link:hover, 
.main-navbar .nav-link.show {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.active-link {
    color: #ffffff !important;
    font-weight: bold;
}

.btn-cta-header {
    font-family: 'Kallisto', serif !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    letter-spacing: 2px;
    font-size: 0.65rem !important;
    padding: 8px 25px;
}
.btn-cta-header:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.nav-item.dropdown .d-flex { align-items: center; }
.dropdown-toggle-split {
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin-left: -5px;
    cursor: pointer;
}
.dropdown-toggle-split::after { color: rgba(255,255,255,0.7); }
.dropdown-toggle-split:hover::after { color: #fff; }

.dropdown-menu-luxury {
    background-color: #0a0a0a !important;   
    border: 1px solid rgba(255, 255, 255, 0.15) !important; 
    border-radius: 12px !important;         
    padding: 12px !important;               
    box-shadow: 0 15px 40px rgba(0,0,0,0.8) !important; 
    min-width: 180px;                       
    margin-top: 15px !important;            
    
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    z-index: 99999 !important;
}

.dropdown-menu-luxury .dropdown-item {
    font-family: 'Work Sans', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px !important;
    border-radius: 8px !important; 
    transition: all 0.3s ease;
    margin-bottom: 1px;
}

.dropdown-menu-luxury .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important; 
    color: #ffffff !important;
    transform: translateX(5px); 
}

.dropdown-menu-luxury .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar-collapse { overflow: visible !important; }

.offcanvas-luxury {
    background-color: #080808 !important;
    width: 100% !important;
    border: none !important;
}
.mobile-nav-link {
    font-family: 'Kallisto', serif;
    color: #ffffff;
    font-size: 1.2rem;      
    letter-spacing: 3px;    
    text-transform: uppercase; 
    text-align: center;      
    width: 100%;            
    margin-bottom: 1.5rem;  
    font-weight: 400;
    text-decoration: none;
    display: block;
    opacity: 1;
    transition: all 0.4s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active-link {
    letter-spacing: 5px; 
    opacity: 0.7;
}
.mobile-submenu {
    background: rgba(255,255,255,0.03);
    width: 100%;
    margin-bottom: 1.5rem;
}
.mobile-sub-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 10px 0;
    text-decoration: none;
}
.mobile-sub-link:hover { color: #fff; }
.btn-close-luxury {
    filter: invert(1);
    opacity: 1;
    background-size: 1.2rem; 
}
.mobile-menu-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    width: 100%;
    text-align: center;
}
.mobile-social-link {
    color: rgba(255,255,255,0.5);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    display: inline-block;
}
.mobile-social-link:hover { color: #fff; }

.footer-section {
    text-align: left;
    background-color: #000000 !important;
    color: #ffffff !important;
}

.footer-subtitle {
    font-family: 'Kallisto', serif;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #6c757d !important; 
    text-transform: uppercase;
    font-size: 0.85rem; 
}

.footer-text, 
.footer-links li a, 
.footer-contact li span, 
.footer-contact li a, 
.legal-links a {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    color: #b0b0b0 !important; 
    text-decoration: none;
    font-size: 0.75rem; 
    transition: color 0.3s;
    line-height: 1.5; 
}

.footer-links li a:hover, 
.footer-contact li a:hover, 
.legal-links a:hover {
    color: #ffffff !important;
    padding-left: 3px; 
}

.social-icons a {
    color: #ffffff;
    font-size: 0.9rem;
    margin-left: 12px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}
.social-icons a:hover {
    color: #cccccc;
    transform: translateY(-2px);
}


.whatsapp-float {
    position: fixed;
    right: 30px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    bottom: 30px;
}


.whatsapp-float img {
    width: 69px;
    height: 69px;
}

.whatsapp-float .fab {
    display: none;
}

.whatsapp-float:active,
.whatsapp-float:visited,
.whatsapp-float:focus {
    background-color: #ffffff !important;
    outline: none !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 991px) {
    .footer-section { text-align: center; padding-top: 40px; }
    .footer-links li a:hover { padding-left: 0; }
    .social-icons a { margin: 0 8px; }
    .footer-bottom .col-lg-4 { margin-bottom: 10px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 35px; right: 35px; }
}

.hero-admin-full, .hero-vende, .hero-contacto-fixed {
    position: relative;
    z-index: 1 !important; 
}
.hero-admin-full div, .hero-vende div, .hero-contacto-fixed div {
    z-index: 1 !important;
}

.nav-item.dropdown .d-flex {
    position: relative !important; 
    overflow: visible !important;  
    z-index: 10002 !important;     
}

.dropdown-menu-luxury {
    position: absolute !important;
    top: 100% !important;          
    right: 0 !important;           
    left: auto !important;
    z-index: 10003 !important;     
    display: none;                 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}
.custom-select__trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 300;
    color: #b0b0b0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.custom-select-wrapper.open .custom-select__trigger {
    border-bottom: 1px solid #fff;
}
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #333;
    border-top: 0;
    background: #000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}
.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.custom-option {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #b0b0b0;
    cursor: pointer;
    transition: all 0.2s;
}
.custom-option:hover {
    background-color: #1a1a1a;
    color: #fff;
}
.custom-option.selected {
    color: #fff;
    background-color: #222;
}
.arrow {
    position: relative;
    height: 8px; width: 8px;
}
.arrow::before, .arrow::after {
    content: ""; position: absolute; bottom: 0; width: 2px; height: 100%; background-color: #b0b0b0; transition: all 0.3s;
}
.arrow::before { left: -2px; transform: rotate(45deg); }
.arrow::after { left: 2px; transform: rotate(-45deg); }
.custom-select-wrapper.open .arrow::before { transform: rotate(-45deg); }
.custom-select-wrapper.open .arrow::after { transform: rotate(45deg); }

.required-mark {
    color: #c5a47e; 
    margin-left: 3px;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1;
    vertical-align: top;
}

::placeholder {
    text-transform: none !important;
}


#luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#luxury-preloader.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}


.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: center;
}


.luxury-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px; 
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}