:root {
    --primary:   #798C74;   /* Sage Green */
    --primary-dark: #5a6b56;
    --secondary: #C2A88F;   /* Sand Beige */
    --secondary-dark: #a68a70;
    --dark:      #1E201D;
    --dark2:     #2C302B;
    --cream:     #F9F6F0;
    --white:     #ffffff;
    --text-muted: #7a7a7a;
    --glass:     rgba(255,255,255,0.92);
    --glass-border: rgba(121,140,116,0.18);
    --shadow-soft: 0 8px 32px rgba(44,48,43,0.10);
    --shadow-card: 0 20px 60px rgba(121,140,116,0.13);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* =================== BASE =================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #2a2a2a;
    background: var(--cream);
    overflow-x: hidden;
}

h1,h2,h3,h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* =================== NAVBAR =================== */
.navbar-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1040;
    padding: 14px 0;
    background: transparent;
    transition: var(--transition);
}
.navbar-main.scrolled {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
}
.navbar-main .brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.drawer-nav-item {
    color: var(--white);
    font-weight: 400;
    opacity: 0.85;
}
.drawer-nav-item i {
    color: var(--secondary);
}
.drawer-nav-item.active {
    color: var(--primary) !important;
    font-weight: 700;
    opacity: 1;
}
.drawer-nav-item.active i {
    color: var(--primary) !important;
}
.navbar-main.scrolled .brand-text { color: var(--primary); }
.navbar-main .nav-desktop a {
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.navbar-main .nav-desktop a:hover,
.navbar-main .nav-desktop a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
.navbar-main.scrolled .nav-desktop a { color: var(--dark2); }
.navbar-main.scrolled .nav-desktop a:hover,
.navbar-main.scrolled .nav-desktop a.active { color: var(--primary); background: rgba(121,140,116,0.1); font-weight: 600; }
.btn-nav-reservar {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(121,140,116,0.4);
    transition: var(--transition) !important;
    border: none !important;
}
.btn-nav-reservar:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(121,140,116,0.5) !important;
}

/* =================== HERO =================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}
.hero-section .swiper, .heroSwiper { width: 100%; height: 100%; }
.hero-slide-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(30,32,29,0.75) 0%, rgba(30,32,29,0.3) 60%, rgba(194,168,143,0.2) 100%);
    z-index: -1;
}
.hero-content {
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 1; padding: 0 20px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white; border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 6px 18px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700; color: white;
    line-height: 1.1; text-align: center;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.85);
    text-align: center; max-width: 500px;
    line-height: 1.7; margin-bottom: 38px;
    font-family: 'Inter', sans-serif; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* =================== SECTIONS =================== */
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(121,140,116,0.12);
    color: var(--primary-dark);
    border-radius: 50px; padding: 5px 16px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--dark2); margin-bottom: 10px;
}
.section-lead {
    font-size: 1rem; color: var(--text-muted);
    max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 99px; margin: 16px auto 0;
}

/* =================== CARDS =================== */
.service-card, .offer-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border) !important;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}
.service-card:hover, .offer-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-card) !important;
    border-color: var(--primary) !important;
}
.service-card .card-img-top, .offer-card .card-img-top {
    transition: transform 0.6s ease;
}
.service-card:hover .card-img-top, .offer-card:hover .card-img-top {
    transform: scale(1.06);
}
.card-img-placeholder {
    height: 210px;
    background: linear-gradient(135deg, #f0ede8, #e8e4dd);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
}
.price-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 1.25rem; font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Cormorant Garamond', serif;
}
.duration-tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.82rem; color: var(--text-muted);
    background: #f5f5f3; border-radius: 50px;
    padding: 3px 10px;
}

/* Offer Badge */
.offer-ribbon {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, #e65c5c, #c0392b);
    color: white; font-size: 0.72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 50px;
    letter-spacing: 0.5px; text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(192,57,43,0.4);
    z-index: 3;
}
.price-original { font-size: 0.9rem; color: #aaa; text-decoration: line-through; }
.price-offer {
    font-size: 2rem; font-weight: 700;
    color: var(--secondary-dark);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

/* =================== BUTTONS =================== */
.btn-primary, button.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important; color: white !important;
    font-weight: 600; transition: var(--transition);
    box-shadow: 0 4px 14px rgba(121,140,116,0.3);
}
.btn-primary:hover, button.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(121,140,116,0.45) !important;
    background: linear-gradient(135deg, var(--primary-dark), #4a5a46) !important;
}
.btn-outline-brand {
    border: 2px solid rgba(255,255,255,0.7);
    color: white; background: rgba(255,255,255,0.1);
    font-weight: 600; border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.btn-outline-brand:hover {
    background: white; color: var(--primary-dark);
    border-color: white;
}
.btn-secondary-action {
    border: 2px solid var(--secondary);
    color: var(--secondary-dark); background: transparent;
    font-weight: 600; border-radius: 50px;
    padding: 9px 24px;
    transition: var(--transition);
}
.btn-secondary-action:hover {
    background: var(--secondary); color: white;
    box-shadow: 0 6px 18px rgba(194,168,143,0.4);
}

/* =================== MODAL RESERVA =================== */
.modal-reserva .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.modal-reserva .modal-left {
    background: linear-gradient(160deg, var(--dark2) 0%, var(--primary-dark) 100%);
    padding: 40px 32px;
    color: white;
    display: flex; flex-direction: column; justify-content: center;
}
.modal-reserva .modal-left h3 {
    font-size: 2rem; margin-bottom: 12px; color: white;
}
.modal-reserva .feature-list { list-style: none; padding: 0; margin: 24px 0; }
.modal-reserva .feature-list li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px; color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}
.modal-reserva .feature-list li i {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; flex-shrink: 0;
}
.modal-reserva .modal-right { padding: 40px 36px; background: #fff; }
.modal-reserva .form-control,
.modal-reserva .form-select {
    border: 1.5px solid #e8e4dd;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    background: #faf9f7;
    transition: var(--transition);
}
.modal-reserva .form-control:focus,
.modal-reserva .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(121,140,116,0.15);
    background: white;
}
.modal-reserva .input-icon-wrap {
    position: relative;
}
.modal-reserva .input-icon-wrap i {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%);
    color: var(--primary); font-size: 1rem; z-index: 5;
}
.modal-reserva .input-icon-wrap .form-control,
.modal-reserva .input-icon-wrap .form-select {
    padding-left: 42px;
}
.modal-reserva label { font-weight: 600; font-size: 0.85rem; color: var(--dark2); margin-bottom: 6px; }

/* =================== SECTION BENEFITS =================== */
.benefits-section { background: var(--dark2); }
.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.benefit-card:hover {
    background: rgba(121,140,116,0.1);
    border-color: var(--primary);
    transform: translateY(-6px);
}
.benefit-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem; color: white;
    box-shadow: 0 8px 24px rgba(121,140,116,0.3);
}

/* =================== FOOTER =================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 24px;
}
.site-footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: white; font-weight: 700;
}
.site-footer .footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: block; margin-bottom: 8px;
}
.site-footer .footer-link:hover { color: var(--secondary); }
.site-footer .footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.95rem;
    text-decoration: none; margin-right: 8px;
    transition: var(--transition);
}
.site-footer .footer-social a:hover {
    background: var(--secondary); border-color: var(--secondary);
    color: white; transform: translateY(-3px);
}
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 32px 0 20px; }
.footer-bottom { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* =================== BOTTOM NAV (Mobile only) =================== */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex; justify-content: space-around; align-items: center;
    box-shadow: 0 -1px 0 rgba(0,0,0,0.06), 0 -8px 24px rgba(0,0,0,0.08);
    z-index: 1030; padding: 10px 0 12px;
    border-top: 1px solid var(--glass-border);
}
.bottom-nav .nav-item {
    display: flex; flex-direction: column; align-items: center;
    color: #aaa; text-decoration: none; font-size: 0.7rem;
    font-weight: 500; transition: var(--transition);
    padding: 4px 16px; border-radius: var(--radius-sm);
}
.bottom-nav .nav-item i {
    font-size: 1.3rem; margin-bottom: 3px;
    transition: transform 0.25s ease;
}
.bottom-nav .nav-item:hover, .bottom-nav .nav-item.active {
    color: var(--primary);
}
.bottom-nav .nav-item:hover i, .bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}
.bottom-nav .nav-item.active {
    background: rgba(121,140,116,0.1);
}

/* Hide bottom nav on desktop, show top nav links */
@media (min-width: 992px) {
    .bottom-nav { display: none; }
    main { padding-bottom: 0 !important; }
}
@media (max-width: 991px) {
    .site-footer { padding-bottom: 70px; }
}

/* =================== ANIMATIONS =================== */
.animate-fade-up {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0; transform: translateY(30px);
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =================== OVERRIDES =================== */
.text-primary { color: var(--primary) !important; }
.text-secondary-brand { color: var(--secondary) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-dark-brand { background-color: var(--dark2) !important; }
.badge-primary {
    background: rgba(121,140,116,0.12);
    color: var(--primary-dark);
    border-radius: 50px; padding: 4px 12px;
    font-size: 0.78rem; font-weight: 600;
}
.badge-offer {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white; border-radius: 50px;
    padding: 4px 14px; font-size: 0.75rem; font-weight: 700;
}

/* =================== SWIPER CUSTOM =================== */
.swiper-pagination-bullet { background: white; opacity: 0.5; }
.swiper-pagination-bullet-active { background: white; opacity: 1; width: 20px; border-radius: 99px; }
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%; width: 44px !important; height: 44px !important;
}
.swiper-button-next:after, .swiper-button-prev:after { font-size: 16px !important; }

/* =================== FORMS =================== */
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--dark2); }

 / *   = = = = = = = = = = = = = = = = = = =   S E L E C T 2   C U S T O M   S T Y L E   = = = = = = = = = = = = = = = = = = =   * / 
 . s e l e c t 2 - c o n t a i n e r - - d e f a u l t   . s e l e c t 2 - s e l e c t i o n - - s i n g l e   { 
         h e i g h t :   5 2 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
         b a c k g r o u n d :   # f 8 f 7 f 5 ; 
         p a d d i n g - l e f t :   3 6 p x ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
 } 
 . s e l e c t 2 - c o n t a i n e r - - d e f a u l t   . s e l e c t 2 - s e l e c t i o n - - s i n g l e   . s e l e c t 2 - s e l e c t i o n _ _ r e n d e r e d   { 
         c o l o r :   v a r ( - - d a r k ) ; 
         l i n e - h e i g h t :   n o r m a l ; 
         p a d d i n g - l e f t :   0 ; 
 } 
 . s e l e c t 2 - c o n t a i n e r - - d e f a u l t   . s e l e c t 2 - s e l e c t i o n - - s i n g l e   . s e l e c t 2 - s e l e c t i o n _ _ a r r o w   { 
         h e i g h t :   5 0 p x ; 
         r i g h t :   1 0 p x ; 
 } 
 . s e l e c t 2 - c o n t a i n e r - - d e f a u l t   . s e l e c t 2 - s e a r c h - - d r o p d o w n   . s e l e c t 2 - s e a r c h _ _ f i e l d   { 
         b o r d e r - r a d i u s :   8 p x ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
         p a d d i n g :   8 p x   1 2 p x ; 
 } 
 . s e l e c t 2 - c o n t a i n e r - - d e f a u l t   . s e l e c t 2 - r e s u l t s _ _ o p t i o n - - h i g h l i g h t e d . s e l e c t 2 - r e s u l t s _ _ o p t i o n - - s e l e c t a b l e   { 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y ) ; 
         c o l o r :   w h i t e ; 
 } 
 . s e l e c t 2 - d r o p d o w n   { 
         b o r d e r :   1 p x   s o l i d   v a r ( - - g l a s s - b o r d e r ) ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ; 
         o v e r f l o w :   h i d d e n ; 
 } 
  
 
 / *   = = = = = = = = = = = = = = = = = = =   P A G E   T R A N S I T I O N S   = = = = = = = = = = = = = = = = = = =   * / 
 b o d y   { 
         o p a c i t y :   0 ; 
         a n i m a t i o n :   p a g e F a d e I n   0 . 5 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 )   f o r w a r d s ; 
 } 
 b o d y . f a d e - o u t   { 
         a n i m a t i o n :   p a g e F a d e O u t   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 )   f o r w a r d s ; 
 } 
 @ k e y f r a m e s   p a g e F a d e I n   { 
         f r o m   {   o p a c i t y :   0 ;   } 
         t o   {   o p a c i t y :   1 ;   } 
 } 
 @ k e y f r a m e s   p a g e F a d e O u t   { 
         f r o m   {   o p a c i t y :   1 ;   } 
         t o   {   o p a c i t y :   0 ;   } 
 } 
  
 