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

:root {
    --primary: #1a365d;
    --primary-dark: #0f2440;
    --primary-light: #2a4a7f;
    --accent: #c9a227;
    --accent-light: #d4b84a;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #f7f5f2;
    --bg-warm: #faf8f5;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0;
    }
}

/* section {
    padding: 4rem 0;
} */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 54, 93, 0.97);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    padding: 0.6rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 2rem;
    background: rgba(0,0,0,0.2);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-icon {
    font-size: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateX(0);
    height: 100vh;
    overflow-y: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.mobile-nav a:hover {
    padding-left: 10px;
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 2rem 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2024/01/PortadaLasNubes2.png') center/cover no-repeat;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.3) 0%, rgba(15,36,64,0.5) 50%, rgba(15,36,64,0.7) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg {
        background: url('/assets/images/wp-content/uploads/2023/12/FinalNubes1-1.png') center/cover no-repeat;
    }
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.4s both;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.hero-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

@media (max-width: 600px) {
    .hero-badges {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 2rem;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hero-badges::-webkit-scrollbar {
        display: none;
    }
    .hero-badge {
        flex-shrink: 0;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(0,0,0,0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.hero-badge:hover {
    background: rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

.hero-badge svg {
    stroke: var(--white);
}

.hero-badge .home-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.home-icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    stroke: currentColor;
}

.home-modal-icon {
    width: 3rem;
    height: 3rem;
    color: var(--accent);
    stroke: currentColor;
    margin-bottom: 0.25rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-content h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
}

.modal-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Section */
.banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.banner h2 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
    position: relative;
}

.banner p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
}

/* Featured Section */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.featured-card {
    text-align: center;
    padding: 1.2rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.featured-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.featured-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.featured-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.featured-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

#mas {
    padding: 4rem 2rem;
}

.booking-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.booking-call {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.booking-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-input {
    flex: 1;
    min-width: 150px;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.booking-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.booking-date-input {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.booking-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.booking-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.booking-calendar {
    position: absolute;
    z-index: 3000;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 55px rgba(15, 36, 64, 0.18);
}

.booking-calendar.active {
    display: block;
    animation: fadeInUp 0.2s ease both;
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    text-transform: capitalize;
}

.booking-calendar-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-radius: 999px;
    background: var(--bg-warm);
    color: var(--primary);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transition: var(--transition);
}

.booking-calendar-nav:hover {
    border-color: rgba(26, 54, 93, 0.24);
    background: var(--primary);
    color: var(--white);
}

.booking-calendar-weekdays,
.booking-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.booking-calendar-weekdays {
    margin-bottom: 0.45rem;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
}

.booking-calendar-day {
    aspect-ratio: 1;
    min-width: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: var(--bg-warm);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.booking-calendar-day:hover:not(:disabled),
.booking-calendar-day.selected {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.booking-calendar-day.weekend:not(:disabled) {
    border-color: rgba(201, 162, 39, 0.45);
}

.booking-calendar-day.muted {
    opacity: 0.45;
}

.booking-calendar-day:disabled {
    cursor: not-allowed;
    background: #f1f5f9;
    color: #b4bfca;
    text-decoration: line-through;
}

/* Offers Section */
.offers-section {
    background: var(--bg-warm);
    padding: 3rem 0;
}

.featured-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--bg-warm);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.featured-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
}

.featured-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.featured-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.featured-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}



/* Tabs Section - Scrollspy */
.tabs-section {
    background: var(--bg);
    padding-top: 4rem;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tabs-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.tab-inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.tab-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.tab-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.98rem;
}

.tab-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    width: fit-content;
    transition: var(--transition);
    text-decoration: none;
}

.tab-btn-link .home-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.tab-btn-link:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tabs-section .section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: left;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: sticky;
    top: 70px;
    padding: 1rem 0;
    z-index: 100;
}

@media (max-width: 768px) {
    .tabs-nav {
        position: sticky;
        top: 60px;
        padding: 0.75rem 0.5rem;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.4rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tabs-nav::-webkit-scrollbar {
        display: none;
    }
    .tab-btn {
        flex-shrink: 0;
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

.tab-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    color: var(--text);
    text-decoration: none;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active,
.tab-btn:focus {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-section {
    padding: 4rem 0;
    scroll-margin-top: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 768px) {
    .tab-section {
        padding: 2rem 0;
    }
}

.tab-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.tabs-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    padding-top: 2rem;
    min-height: 100vh;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-btn {
    background: var(--white);
    border: none;
    padding: 0.9rem 1.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    white-space: nowrap;
}

.tab-btn .home-icon {
    width: 1.1rem;
    height: 1.1rem;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.tab-content {
    display: none;
    padding: 3rem 0;
    min-height: 80vh;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-inner {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tab-image {
    position: relative;
    min-height: 450px;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tab-content.active .tab-image img {
    transform: scale(1.03);
}

.tab-info {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.tab-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 0.98rem;
}

.tab-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    width: fit-content;
    transition: var(--transition);
}

.tab-btn-link:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

/* Offers Section */
.offers-section {
    padding: 3rem 2rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(26, 54, 93, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.offer-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.offer-card h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.offer-card h4 i {
    color: var(--accent);
    font-size: 0.9rem;
}

.offer-tag {
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.offer-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    flex: 1;
}

.offer-alert {
    background: #fff8e6;
    border-left: 3px solid var(--accent);
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    color: #8a7a3a;
    margin: 0.5rem 0;
    border-radius: 0 4px 4px 0;
}

.offer-price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
    display: block;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Blog Section */
.blog {
    background: var(--white);
    padding: 4rem 2rem;
}

.blog .container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog .section-title {
    margin-bottom: 2.5rem;
}

.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-link:hover {
    color: var(--accent);
    gap: 0.8rem;
}

/* Reservations */
.reservations-page {
    padding: 7.5rem 0 4rem;
    background: var(--bg);
}

.reservations-header {
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.reservations-kicker {
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.reservations-header h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.reservations-header p:not(.reservations-kicker) {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.reservations-frame-wrap {
    overflow: hidden;
    border: 1px solid rgba(26,54,93,0.1);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
}

.reservations-frame {
    display: block;
    width: 100%;
    height: 80vh;
    min-height: 620px;
    border: 0;
}

@media (max-width: 768px) {
    .reservations-page {
        padding: 6.5rem 0 2rem;
    }

    .reservations-page .container {
        padding: 0 1rem;
    }

    .reservations-frame {
        min-height: 680px;
    }
}

/* Blog index and articles */
.blog-index-hero,
.blog-article-hero {
    position: relative;
    padding: 8.5rem 0 4rem;
    overflow: hidden;
    background: var(--primary-dark);
    color: var(--white);
}

.blog-index-hero {
    background:
        linear-gradient(135deg, rgba(15,36,64,0.94) 0%, rgba(26,54,93,0.82) 58%, rgba(201,162,39,0.26) 100%),
        url('/assets/images/wp-content/uploads/2019/05/casa-rural-las-nubes-28-min-1024x682.jpg') center/cover;
}

.blog-article-hero-bg,
.blog-article-hero-overlay {
    position: absolute;
    inset: 0;
}

.blog-article-hero-bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.blog-article-hero-overlay {
    background: linear-gradient(135deg, rgba(15,36,64,0.94) 0%, rgba(26,54,93,0.76) 56%, rgba(0,0,0,0.32) 100%);
}

.blog-index-hero .container,
.blog-article-hero .container {
    position: relative;
    z-index: 2;
}

.blog-index-hero h1,
.blog-article-hero h1 {
    max-width: 980px;
    color: var(--white);
    font-size: clamp(2.15rem, 6vw, 4.6rem);
    margin-bottom: 1rem;
}

.blog-index-hero p:not(.blog-kicker),
.blog-article-hero p:not(.blog-kicker) {
    max-width: 760px;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.1vw, 1.22rem);
    line-height: 1.75;
}

.blog-kicker {
    color: var(--accent-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.blog-back-link {
    display: inline-flex;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.86);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.blog-back-link:hover {
    color: var(--accent-light);
}

.blog-post-date {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
}

.blog-index-section {
    padding: 3rem 0 5rem;
    background: var(--bg);
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-index-card {
    overflow: hidden;
    border: 1px solid rgba(26,54,93,0.08);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-index-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-index-card-image {
    display: block;
    height: 230px;
    overflow: hidden;
}

.blog-index-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-index-card:hover .blog-index-card-image img {
    transform: scale(1.05);
}

.blog-index-card-content {
    padding: 1.5rem;
}

.blog-index-card-content .blog-post-date {
    margin-top: 0;
    margin-bottom: 0.55rem;
    color: var(--accent);
}

.blog-index-card h2 {
    font-size: 1.22rem;
    margin-bottom: 0.75rem;
}

.blog-index-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-article-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 1rem 5rem;
}

.blog-article-body p,
.blog-article-body li {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.blog-article-body a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-article-body h2 {
    font-size: clamp(1.55rem, 4vw, 2.25rem);
    margin: 2.5rem 0 1rem;
}

.blog-article-body figure {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.blog-feature-image {
    margin-top: -4rem;
}

.blog-article-body figure img {
    width: 100%;
    height: auto;
}

.blog-article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--bg-warm);
}

.blog-article-body blockquote p {
    margin-bottom: 0;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.24rem;
    font-weight: 600;
    line-height: 1.55;
}

.blog-place-list {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.blog-place {
    display: grid;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid rgba(26,54,93,0.08);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
}

.blog-place-image {
    min-height: 220px;
}

.blog-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-place-copy {
    padding: 1.25rem;
}

.blog-place-copy h2 {
    margin-top: 0;
}

.blog-place-copy p {
    margin-bottom: 0;
}

.blog-article-cta {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.blog-article-cta h2,
.blog-article-cta p {
    color: var(--white);
}

.blog-article-cta h2 {
    margin-top: 0;
}

.blog-article-cta a {
    display: inline-flex;
    margin-top: 0.4rem;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-decoration: none;
}

.blog-article-cta a:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .blog-index-hero,
    .blog-article-hero {
        padding: 11rem 0 5rem;
    }

    .blog-article-body {
        padding-top: 3rem;
    }

    .blog-feature-image {
        margin-top: -5.5rem;
    }

    .blog-place {
        grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .blog-index-hero .container,
    .blog-article-hero .container,
    .blog-index-section .container {
        padding: 0 1rem;
    }

    .blog-article-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .blog-feature-image {
        margin-top: 1.5rem;
    }
}

/* Map Section */
.map-section {
    height: 400px;
    overflow: hidden;
    filter: grayscale(20%);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Scroll indicator for tabs */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tab-inner {
        grid-template-columns: 1fr;
    }

    .tab-image {
        min-height: 350px;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 1rem 60px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 1rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .featured-card {
        padding: 1rem;
    }

    #mas {
        padding: 2rem 1rem;
    }

    .booking-form {
        flex-direction: column;
    }

    .tabs-nav {
        position: sticky;
        top: 60px;
        padding: 0.75rem 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }

    .tab-btn {
        flex-shrink: 0;
    }

    .tab-info {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog {
        padding: 2rem 1rem 3rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .tab-image {
        min-height: 250px;
    }

    .tab-info {
        padding: 1.5rem;
    }

    .tab-info h3 {
        font-size: 1.3rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Cuevas bioclimaticas */
.caves-hero {
    min-height: 86vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: var(--primary-dark);
}

.caves-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2023/12/FinalNubes1-1-1024x726.png') center/cover no-repeat;
    transform: scale(1.02);
}

.caves-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.2) 0%, rgba(15,36,64,0.48) 45%, rgba(15,36,64,0.88) 100%);
}

.caves-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease both;
}

.caves-hero-content > * {
    max-width: 820px;
}

.caves-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.caves-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 11vw, 4.9rem);
    line-height: 0.98;
    margin-bottom: 1.25rem;
}

.caves-hero p:not(.caves-kicker) {
    max-width: 660px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.caves-hero-actions,
.caves-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.caves-primary-btn,
.caves-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.caves-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.caves-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.caves-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.caves-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.caves-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.caves-intro,
.caves-equipment,
.caves-cta {
    padding: 3rem 0;
}

.caves-climate {
    padding: 2rem 0;
    background: var(--bg-warm);
}

.caves-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.caves-gallery {
    min-width: 0;
    overflow: hidden;
}

.caves-gallery-main {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--primary-dark);
    box-shadow: var(--shadow);
}

.caves-gallery-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caves-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    background: rgba(15,36,64,0.58);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.caves-gallery-arrow:hover {
    background: var(--white);
    color: var(--primary);
}

.caves-gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.caves-gallery-prev {
    left: 0.75rem;
}

.caves-gallery-next {
    right: 0.75rem;
}

.caves-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    max-width: 100%;
}

.caves-thumb {
    width: 88px;
    height: 64px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    background: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.caves-thumb.active {
    border-color: var(--accent);
}

.caves-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caves-copy {
    align-self: center;
}

.caves-copy h2,
.caves-climate-card h2,
.caves-section-head h2,
.caves-cta h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.caves-copy p,
.caves-climate-card p,
.caves-equipment-card p,
.caves-cta p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.caves-climate-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.caves-section-head {
    max-width: 760px;
    margin-bottom: 2rem;
}

.caves-equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.caves-equipment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.caves-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-warm);
    color: var(--primary);
    margin-bottom: 1rem;
}

.caves-icon svg {
    width: 28px;
    height: 28px;
}

.caves-equipment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.caves-cta {
    background: var(--primary);
    color: var(--white);
}

.caves-cta-inner {
    max-width: 760px;
    margin: 0;
}

.caves-cta h2,
.caves-cta p {
    color: var(--white);
}

.caves-cta p {
    opacity: 0.86;
}

.caves-reveal,
.caves-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.caves-reveal.visible,
.caves-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .scroll-horizontal.caves-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .scroll-horizontal.caves-thumbs::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 768px) {
    .caves-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .caves-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .caves-intro,
    .caves-equipment,
    .caves-cta {
        padding: 5rem 0;
    }

    .caves-split {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: 3rem;
    }

    .caves-gallery-main {
        min-height: 520px;
    }

    .caves-climate {
        padding: 4rem 0;
    }

    .caves-climate-card {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
        padding: 2.5rem;
    }

    .caves-equipment-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .caves-hero {
        min-height: 82vh;
    }

    .caves-gallery-main {
        min-height: 260px;
        border-radius: var(--radius-sm);
    }

    .caves-booking .container,
    .caves-intro .container,
    .caves-climate .container,
    .caves-equipment .container,
    .caves-cta .container {
        padding: 0 1rem;
    }
}

/* El hotel */
.hotel-hero {
    min-height: 86vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: var(--primary-dark);
}

.hotel-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2024/05/HabitacionVistas-min-1024x768.png') center/cover no-repeat;
    transform: scale(1.02);
}

.hotel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.18) 0%, rgba(15,36,64,0.48) 48%, rgba(15,36,64,0.88) 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease both;
}

.hotel-hero-content > * {
    max-width: 820px;
}

.hotel-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hotel-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.hotel-hero p:not(.hotel-kicker) {
    max-width: 650px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.hotel-hero-actions,
.hotel-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.hotel-primary-btn,
.hotel-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.hotel-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.hotel-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.hotel-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.hotel-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.hotel-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.hotel-intro,
.hotel-room,
.hotel-equipment,
.hotel-cta {
    padding: 3rem 0;
}

.hotel-room-warm,
.hotel-equipment {
    background: var(--bg-warm);
}

.hotel-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.hotel-gallery {
    min-width: 0;
    overflow: hidden;
}

.hotel-gallery-main {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--primary-dark);
    box-shadow: var(--shadow);
}

.hotel-gallery-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    background: rgba(15,36,64,0.58);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.hotel-gallery-arrow:hover {
    background: var(--white);
    color: var(--primary);
}

.hotel-gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.hotel-gallery-prev {
    left: 0.75rem;
}

.hotel-gallery-next {
    right: 0.75rem;
}

.hotel-thumbs {
    display: flex;
    gap: 0.75rem;
    max-width: 100%;
    margin-top: 0.75rem;
}

.hotel-thumb {
    width: 88px;
    height: 64px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    background: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.hotel-thumb.active {
    border-color: var(--accent);
}

.hotel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-copy {
    align-self: center;
}

.hotel-copy h2,
.hotel-section-head h2,
.hotel-cta h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.hotel-copy p,
.hotel-equipment-card p,
.hotel-cta p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hotel-section-head {
    max-width: 800px;
    margin-bottom: 2rem;
}

.hotel-equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.hotel-equipment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.hotel-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.hotel-icon svg {
    width: 28px;
    height: 28px;
}

.hotel-equipment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hotel-cta {
    background: var(--primary);
    color: var(--white);
}

.hotel-cta-inner {
    max-width: 760px;
    margin: 0;
}

.hotel-cta h2,
.hotel-cta p {
    color: var(--white);
}

.hotel-cta p {
    opacity: 0.86;
}

.hotel-reveal,
.hotel-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hotel-reveal.visible,
.hotel-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .scroll-horizontal.hotel-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .scroll-horizontal.hotel-thumbs::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 768px) {
    .hotel-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .hotel-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .hotel-intro,
    .hotel-room,
    .hotel-equipment,
    .hotel-cta {
        padding: 5rem 0;
    }

    .hotel-split {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: 3rem;
    }

    .hotel-split-reverse {
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    }

    .hotel-gallery-main {
        min-height: 500px;
    }

    .hotel-equipment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .hotel-equipment-grid-suite {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hotel-hero {
        min-height: 82vh;
    }

    .hotel-gallery-main {
        min-height: 260px;
        border-radius: var(--radius-sm);
    }

    .hotel-booking .container,
    .hotel-intro .container,
    .hotel-room .container,
    .hotel-equipment .container,
    .hotel-cta .container {
        padding: 0 1rem;
    }
}

/* Spa */
.spa-hero {
    min-height: 86vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: var(--primary-dark);
}

.spa-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2023/05/1-min-1024x771.jpg') center/cover no-repeat;
    transform: scale(1.02);
}

.spa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.2) 0%, rgba(15,36,64,0.5) 48%, rgba(15,36,64,0.9) 100%);
}

.spa-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease both;
}

.spa-hero-content > * {
    max-width: 820px;
}

.spa-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.spa-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.spa-hero p:not(.spa-kicker) {
    max-width: 650px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.spa-hero-actions,
.spa-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.spa-primary-btn,
.spa-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.spa-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.spa-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.spa-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.spa-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.spa-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.spa-intro,
.spa-experience,
.spa-float,
.spa-equipment,
.spa-cta {
    padding: 3rem 0;
}

.spa-experience,
.spa-equipment {
    background: var(--bg-warm);
}

.spa-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.spa-gallery {
    min-width: 0;
    overflow: hidden;
}

.spa-gallery-main {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--primary-dark);
    box-shadow: var(--shadow);
}

.spa-gallery-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    background: rgba(15,36,64,0.58);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.spa-gallery-arrow:hover {
    background: var(--white);
    color: var(--primary);
}

.spa-gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.spa-gallery-prev {
    left: 0.75rem;
}

.spa-gallery-next {
    right: 0.75rem;
}

.spa-thumbs {
    display: flex;
    gap: 0.75rem;
    max-width: 100%;
    margin-top: 0.75rem;
}

.spa-thumb {
    width: 88px;
    height: 64px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    padding: 0;
    background: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.spa-thumb.active {
    border-color: var(--accent);
}

.spa-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-copy {
    align-self: center;
}

.spa-copy h2,
.spa-experience-card h2,
.spa-section-head h2,
.spa-cta h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.spa-copy p,
.spa-experience-card p,
.spa-equipment-card p,
.spa-cta p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.spa-alerts {
    background: #fff4f2;
    border-left: 4px solid #d04a3a;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.spa-alerts p {
    color: #9a2f24;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.spa-alerts p:last-child {
    margin-bottom: 0;
}

.spa-experience-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.spa-feature-image {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.spa-feature-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.spa-section-head {
    max-width: 800px;
    margin-bottom: 2rem;
}

.spa-equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.spa-equipment-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.spa-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.spa-icon svg {
    width: 28px;
    height: 28px;
}

.spa-equipment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.spa-cta {
    background: var(--primary);
    color: var(--white);
}

.spa-cta-inner {
    max-width: 760px;
    margin: 0;
}

.spa-cta h2,
.spa-cta p {
    color: var(--white);
}

.spa-cta p {
    opacity: 0.86;
}

.spa-reveal,
.spa-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.spa-reveal.visible,
.spa-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .scroll-horizontal.spa-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .scroll-horizontal.spa-thumbs::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 768px) {
    .spa-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .spa-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .spa-intro,
    .spa-experience,
    .spa-float,
    .spa-equipment,
    .spa-cta {
        padding: 5rem 0;
    }

    .spa-split {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: 3rem;
    }

    .spa-split-reverse {
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    }

    .spa-gallery-main {
        min-height: 500px;
    }

    .spa-experience-card {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
        padding: 2.5rem;
    }

    .spa-equipment-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .spa-hero {
        min-height: 82vh;
    }

    .spa-gallery-main {
        min-height: 260px;
        border-radius: var(--radius-sm);
    }

    .spa-booking .container,
    .spa-intro .container,
    .spa-experience .container,
    .spa-float .container,
    .spa-equipment .container,
    .spa-cta .container {
        padding: 0 1rem;
    }
}

/* Restaurante */
.restaurant-hero {
    min-height: 86vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: var(--primary-dark);
}

.restaurant-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2019/05/Las-Nubes10-min.jpg') center/cover no-repeat;
    transform: scale(1.02);
}

.restaurant-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.12) 0%, rgba(15,36,64,0.42) 45%, rgba(15,36,64,0.9) 100%);
}

.restaurant-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease both;
}

.restaurant-hero-content > * {
    max-width: 820px;
}

.restaurant-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.restaurant-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.restaurant-hero p:not(.restaurant-kicker) {
    max-width: 650px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.restaurant-hero-actions,
.restaurant-menu-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.restaurant-primary-btn,
.restaurant-secondary-btn,
.restaurant-secondary-dark-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.restaurant-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.restaurant-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.restaurant-primary-btn svg,
.restaurant-secondary-dark-btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.restaurant-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.restaurant-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.restaurant-secondary-dark-btn {
    border: 1px solid rgba(26,54,93,0.18);
    color: var(--primary);
    background: var(--white);
}

.restaurant-secondary-dark-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.restaurant-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.restaurant-intro,
.restaurant-menu,
.restaurant-features,
.restaurant-contact {
    padding: 3rem 0;
}

.restaurant-menu,
.restaurant-features {
    background: var(--bg-warm);
}

.restaurant-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.restaurant-image {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.restaurant-image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.restaurant-copy {
    align-self: center;
}

.restaurant-copy h2,
.restaurant-menu-card h2,
.restaurant-contact h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.restaurant-copy p,
.restaurant-menu-card p,
.restaurant-feature-card p,
.restaurant-contact p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.restaurant-menu-card {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.restaurant-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.restaurant-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.restaurant-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.restaurant-icon svg {
    width: 28px;
    height: 28px;
}

.restaurant-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.restaurant-contact {
    background: var(--primary);
    color: var(--white);
}

.restaurant-contact-inner {
    display: grid;
    gap: 1.5rem;
}

.restaurant-contact h2,
.restaurant-contact p {
    color: var(--white);
}

.restaurant-contact p {
    opacity: 0.86;
}

.restaurant-phone-list {
    display: grid;
    gap: 0.8rem;
}

.restaurant-phone-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-weight: 700;
}

.restaurant-phone-list a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.restaurant-reveal,
.restaurant-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.restaurant-reveal.visible,
.restaurant-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .restaurant-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .restaurant-hero-actions,
    .restaurant-menu-actions {
        flex-direction: row;
        align-items: center;
    }

    .restaurant-intro,
    .restaurant-menu,
    .restaurant-features,
    .restaurant-contact {
        padding: 5rem 0;
    }

    .restaurant-split {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: 3rem;
    }

    .restaurant-image img {
        min-height: 520px;
    }

    .restaurant-menu-card,
    .restaurant-contact-inner {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        padding: 2.5rem;
    }

    .restaurant-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .restaurant-hero {
        min-height: 82vh;
    }

    .restaurant-image {
        border-radius: var(--radius-sm);
    }

    .restaurant-image img {
        min-height: 260px;
    }

    .restaurant-booking .container,
    .restaurant-intro .container,
    .restaurant-menu .container,
    .restaurant-features .container,
    .restaurant-contact .container {
        padding: 0 1rem;
    }
}

/* Actividades */
.activities-hero {
    min-height: 86vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 3rem;
    overflow: hidden;
    background: var(--primary-dark);
}

.activities-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/wp-content/uploads/2019/05/caballos-2-min-768x399-1.jpg') center/cover no-repeat;
    transform: scale(1.02);
}

.activities-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,36,64,0.12) 0%, rgba(15,36,64,0.42) 45%, rgba(15,36,64,0.9) 100%);
}

.activities-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease both;
}

.activities-hero-content > * {
    max-width: 840px;
}

.activities-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.activities-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.activities-hero p:not(.activities-kicker) {
    max-width: 680px;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.activities-hero-actions,
.activities-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.activities-primary-btn,
.activities-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.activities-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.activities-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.activities-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.activities-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.activities-notice {
    padding: 2rem 0 0;
    background: var(--bg);
}

.activities-alert {
    background: #fff4f2;
    border-left: 4px solid #d04a3a;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem;
}

.activities-alert p {
    color: #9a2f24;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}

.activities-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.activities-intro,
.activities-list,
.activities-cta {
    padding: 3rem 0;
}

.activities-list {
    background: var(--bg-warm);
}

.activities-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.activities-feature-image {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.activities-feature-image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.activities-copy {
    align-self: center;
}

.activities-copy h2,
.activities-section-head h2,
.activities-cta h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.activities-copy p,
.activities-card p,
.activities-cta p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.activities-section-head {
    max-width: 820px;
    margin-bottom: 2rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.activities-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.activities-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--primary-dark);
}

.activities-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.activities-card:hover .activities-card-image img {
    transform: scale(1.04);
}

.activities-card-content {
    padding: 1.35rem;
}

.activities-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.activities-icon svg {
    width: 28px;
    height: 28px;
}

.activities-icon svg.activities-fill-icon {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.activities-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.activities-cta {
    background: var(--primary);
    color: var(--white);
}

.activities-cta-inner {
    max-width: 760px;
}

.activities-cta h2,
.activities-cta p {
    color: var(--white);
}

.activities-cta p {
    opacity: 0.86;
}

.activities-reveal,
.activities-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.activities-reveal.visible,
.activities-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .activities-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .activities-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .activities-intro,
    .activities-list,
    .activities-cta {
        padding: 5rem 0;
    }

    .activities-split {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        align-items: center;
        gap: 3rem;
    }

    .activities-feature-image img {
        min-height: 520px;
    }

    .activities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .activities-hero {
        min-height: 82vh;
    }

    .activities-feature-image {
        border-radius: var(--radius-sm);
    }

    .activities-feature-image img {
        min-height: 260px;
    }

    .activities-notice .container,
    .activities-booking .container,
    .activities-intro .container,
    .activities-list .container,
    .activities-cta .container {
        padding: 0 1rem;
    }
}

/* Surroundings Page */
.surroundings-hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
    color: var(--white);
}

.surroundings-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/wp-content/uploads/2019/05/entorno5-pastrana-min.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.surroundings-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,24,45,0.86), rgba(10,24,45,0.48) 48%, rgba(10,24,45,0.18));
}

.surroundings-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    width: min(100%, 1300px);
}

.surroundings-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.surroundings-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 5.6rem);
    line-height: 0.98;
    margin-bottom: 1.2rem;
    max-width: 880px;
}

.surroundings-hero p:not(.surroundings-kicker) {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.75;
    max-width: 650px;
}

.surroundings-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
    max-width: 340px;
}

.surroundings-primary-btn,
.surroundings-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.surroundings-primary-btn {
    background: var(--accent);
    color: var(--primary-dark);
}

.surroundings-primary-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.surroundings-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.surroundings-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.surroundings-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.surroundings-intro,
.surroundings-list,
.surroundings-cta {
    padding: 3rem 0;
}

.surroundings-list {
    background: var(--bg-warm);
}

.surroundings-split {
    display: grid;
    gap: 2rem;
    min-width: 0;
}

.surroundings-copy {
    align-self: center;
}

.surroundings-copy h2,
.surroundings-section-head h2,
.surroundings-cta h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1rem;
}

.surroundings-copy p,
.surroundings-card p,
.surroundings-cta p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.surroundings-feature-image {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.surroundings-feature-image img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
}

.surroundings-section-head {
    max-width: 820px;
    margin-bottom: 2rem;
}

.surroundings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.surroundings-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.surroundings-card-image {
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
    background: var(--primary-dark);
}

.surroundings-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.surroundings-card:hover .surroundings-card-image img {
    transform: scale(1.04);
}

.surroundings-card-content {
    padding: 1.35rem;
}

.surroundings-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.surroundings-icon svg {
    width: 27px;
    height: 27px;
}

.surroundings-icon svg.surroundings-fill-icon {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.surroundings-card-tag {
    color: var(--accent) !important;
    font-size: 0.76rem !important;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.45rem !important;
}

.surroundings-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.surroundings-cta {
    background: var(--primary);
    color: var(--white);
}

.surroundings-cta-inner {
    max-width: 760px;
}

.surroundings-cta h2,
.surroundings-cta p {
    color: var(--white);
}

.surroundings-cta p {
    opacity: 0.86;
}

.surroundings-reveal,
.surroundings-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.surroundings-reveal.visible,
.surroundings-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .surroundings-hero {
        min-height: 92vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .surroundings-hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .surroundings-intro,
    .surroundings-list,
    .surroundings-cta {
        padding: 5rem 0;
    }

    .surroundings-split {
        grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
        align-items: center;
        gap: 3rem;
    }

    .surroundings-feature-image img {
        min-height: 520px;
    }

    .surroundings-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .surroundings-hero {
        min-height: 82vh;
    }

    .surroundings-feature-image {
        border-radius: var(--radius-sm);
    }

    .surroundings-feature-image img {
        min-height: 260px;
    }

    .surroundings-booking .container,
    .surroundings-intro .container,
    .surroundings-list .container,
    .surroundings-cta .container {
        padding: 0 1rem;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    min-height: 84vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 8rem 1.5rem 4rem;
    color: var(--white);
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/wp-content/uploads/2019/05/LogoFondoNegro-768x768-1.png');
    background-size: min(78vh, 620px);
    background-repeat: no-repeat;
    background-position: right 8vw center;
    background-color: var(--primary-dark);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,24,45,0.94), rgba(10,24,45,0.76) 45%, rgba(10,24,45,0.38));
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    width: min(100%, 1300px);
}

.contact-kicker {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.contact-hero h1 {
    color: var(--white);
    font-size: clamp(2.35rem, 10vw, 5.4rem);
    line-height: 0.98;
    margin-bottom: 1.2rem;
    max-width: 900px;
}

.contact-hero p:not(.contact-kicker) {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.75;
    max-width: 650px;
}

.contact-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
    max-width: 340px;
}

.contact-primary-btn,
.contact-secondary-btn,
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.contact-primary-btn,
.contact-submit {
    background: var(--accent);
    color: var(--primary-dark);
    border: 0;
}

.contact-primary-btn:hover,
.contact-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.contact-secondary-btn {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--white);
}

.contact-secondary-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.contact-booking {
    padding: 2rem 0;
    background: var(--bg);
}

.contact-main,
.contact-info,
.contact-legal-links {
    padding: 3rem 0;
}

.contact-main {
    background: var(--bg-warm);
}

.contact-layout {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
}

.contact-map-panel,
.contact-form-panel,
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(26,54,93,0.06);
}

.contact-map-panel {
    overflow: hidden;
}

.contact-map {
    min-height: 360px;
    background: var(--primary-dark);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.contact-address {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem;
}

.contact-address p {
    color: var(--text);
    line-height: 1.65;
    margin: 0;
    font-weight: 700;
}

.contact-form-panel {
    padding: 1.35rem;
}

.contact-form-panel h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1.25rem;
}

.contact-form {
    display: grid;
    gap: 0.75rem;
}

.contact-form-alert {
    border-radius: var(--radius-sm);
    padding: 0.9rem 1rem;
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 700;
}

.contact-form-alert p {
    margin: 0;
}

.contact-form-alert p + p {
    margin-top: 0.35rem;
}

.contact-form-alert.success {
    background: #edf7ef;
    color: #256236;
    border: 1px solid rgba(37,98,54,0.2);
}

.contact-form-alert.error {
    background: #fff4f2;
    color: #9a2f24;
    border: 1px solid rgba(154,47,36,0.2);
}

.contact-form label {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(26,54,93,0.16);
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
    color: var(--text);
    padding: 0.9rem 1rem;
    line-height: 1.45;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}

.contact-checkbox {
    display: flex !important;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0.35rem 0 0.6rem;
}

.contact-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    flex: 0 0 auto;
}

.contact-checkbox a {
    color: var(--primary);
    font-weight: 800;
}

.contact-submit {
    width: 100%;
    cursor: pointer;
}

.contact-info {
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-info-card {
    padding: 1.35rem;
}

.contact-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.contact-icon svg {
    width: 27px;
    height: 27px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.contact-info-card a {
    color: var(--text-light);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-legal-links {
    background: var(--bg);
}

.contact-legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-legal-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(26,54,93,0.12);
    border-radius: 50px;
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    padding: 0.75rem 1rem;
}

.contact-legal-nav a:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-reveal,
.contact-reveal-item {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-reveal.visible,
.contact-reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .contact-hero {
        min-height: 88vh;
        align-items: center;
        padding-top: 9rem;
        padding-bottom: 5rem;
    }

    .contact-hero-actions,
    .contact-legal-nav {
        flex-direction: row;
        align-items: center;
    }

    .contact-main,
    .contact-info,
    .contact-legal-links {
        padding: 5rem 0;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
        gap: 1.5rem;
        align-items: stretch;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 520px;
    }

    .contact-form-panel {
        padding: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .contact-legal-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 82vh;
    }

    .contact-hero-bg {
        background-size: 380px;
        background-position: center 62%;
    }

    .contact-booking .container,
    .contact-main .container,
    .contact-info .container,
    .contact-legal-links .container {
        padding: 0 1rem;
    }

    .contact-form-panel,
    .contact-info-card {
        padding: 1.15rem;
    }
}

/* Legal pages */
.legal-hero {
    position: relative;
    padding: 8.5rem 0 3rem;
    background:
        linear-gradient(135deg, rgba(15,36,64,0.92) 0%, rgba(26,54,93,0.82) 58%, rgba(201,162,39,0.26) 100%),
        url('/assets/images/wp-content/uploads/2019/05/casa-rural-las-nubes-28-min-1024x682.jpg') center/cover;
    color: var(--white);
}

.legal-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 7vw, 4.6rem);
    max-width: 860px;
}

.legal-kicker {
    color: var(--accent-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.legal-section {
    padding: 2rem 0 4rem;
    background: var(--bg);
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.35rem;
    border: 1px solid rgba(26,54,93,0.08);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.legal-content strong {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
}

@media (min-width: 768px) {
    .legal-hero {
        padding: 11rem 0 4.5rem;
    }

    .legal-section {
        padding: 4rem 0 6rem;
    }

    .legal-content {
        padding: 3rem;
    }
}

@media (max-width: 480px) {
    .legal-section .container {
        padding: 0 1rem;
    }

    .legal-content {
        padding: 1.1rem;
    }
}

/* Cookie modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,36,64,0.56);
    backdrop-filter: blur(4px);
}

.cookie-modal-panel {
    position: relative;
    width: min(100%, 780px);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: 0 22px 70px rgba(15,36,64,0.28);
    animation: cookieModalIn 0.35s ease both;
}

.cookie-modal-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    color: var(--primary);
    margin-bottom: 1rem;
}

.cookie-modal-icon svg {
    width: 25px;
    height: 25px;
}

.cookie-modal-copy h2 {
    font-size: clamp(1.25rem, 4vw, 1.8rem);
    margin-bottom: 0.75rem;
}

.cookie-modal-copy p {
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 0.7rem;
}

.cookie-modal-copy a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-modal-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    margin-top: 1rem;
}

.cookie-btn {
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.cookie-btn-primary {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn-primary:hover {
    background: var(--primary-dark);
}

.cookie-btn-secondary {
    background: var(--bg-warm);
    border-color: rgba(26,54,93,0.14);
    color: var(--primary);
}

.cookie-btn-secondary:hover {
    background: var(--bg);
    border-color: rgba(26,54,93,0.28);
}

.cookie-modal-open {
    overflow: hidden;
}

@keyframes cookieModalIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .cookie-modal {
        align-items: center;
        padding: 2rem;
    }

    .cookie-modal-panel {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 1rem;
        padding: 1.75rem;
    }

    .cookie-modal-icon {
        grid-row: span 2;
        margin-bottom: 0;
    }

    .cookie-modal-actions {
        grid-column: 2;
        flex-direction: row;
        justify-content: flex-end;
    }

    .cookie-btn {
        min-width: 130px;
    }
}
