/* =============================
   VARIABLES & BASE
============================= */
:root {
    --primary: #1a2a3a;
    --accent: #c5a059;
    --accent-light: #e8d5a3;
    --bg: #faf9f7;
    --white: #ffffff;
    --text: #3d3d3d;
    --text-light: #777;
    --border: #e5e2dc;
    --border-light: #f0ede8;
    --radius: 4px;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* =============================
   NAVEGACIÓN
============================= */
nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-selector button {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 4px 6px;
    border-radius: 3px;
    transition: all 0.2s;
}

.lang-selector button:hover,
.lang-selector button.active {
    color: var(--accent);
    background: rgba(197,160,89,0.1);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 9px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent); }

/* =============================
   HERO
============================= */
.hero {
    position: relative;
    height: 92vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,25,40,0.7) 0%, rgba(26,42,58,0.55) 50%, rgba(0,0,0,0.5) 100%),
                url('img/foto5.jpg') center/cover no-repeat;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 24px;
    animation: fadeUp 0.9s ease both;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(197,160,89,0.2);
    border: 1px solid rgba(197,160,89,0.5);
    color: var(--accent-light);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeUp 0.9s 0.1s ease both;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1;
    margin-bottom: 10px;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-sub {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    animation: fadeUp 0.9s 0.3s ease both;
}

.hero-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 28px;
    margin-bottom: 30px;
    animation: fadeUp 0.9s 0.4s ease both;
}

.score-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 20px;
}

.score-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.score-info { text-align: left; }

.booking-link {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

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

.score-detail {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.5s ease both;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-light);
}

.btn-ghost {
    background: transparent;
    color: white;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* =============================
   TRUST BAR
============================= */
.trust-bar {
    background: var(--primary);
    padding: 0;
    overflow: hidden;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 18px 30px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.1rem; }

/* =============================
   CONTAINER & SECTIONS
============================= */
.container { max-width: 1060px; margin: auto; padding: 0 24px; }

.section { padding: 80px 0; border-bottom: 1px solid var(--border-light); }
.section:last-child { border-bottom: none; }

.section-header {
    margin-bottom: 48px;
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 400;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: 8px;
}

.section-sub {
    color: var(--text-light);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =============================
   GALERÍA
============================= */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-main {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-main:hover img { transform: scale(1.04); }

.gallery-side {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-thumb:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    font-size: 1.5rem;
    opacity: 0;
}

.gallery-main:hover .gallery-overlay,
.gallery-thumb:hover .gallery-overlay {
    background: rgba(0,0,0,0.25);
    opacity: 1;
}

.gallery-more {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 11px 22px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

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

/* =============================
   LIGHTBOX
============================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-height: 85vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 4px;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }

.lb-caption {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    margin-top: 16px;
    letter-spacing: 1px;
}

/* =============================
   APT OVERVIEW STATS
============================= */
.apt-overview {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    background: white;
}

.apt-stat {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid var(--border);
}

.apt-stat:last-child { border-right: none; }

.apt-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.apt-stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 6px;
}

/* =============================
   FEATURE CARDS
============================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================
   AMENITIES
============================= */
.amenities-full {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
}

.amenities-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-cat h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.amenity-cat ul {
    list-style: none;
}

.amenity-cat ul li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 5px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-cat ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
}

/* =============================
   RESEÑAS
============================= */
.reviews-score-bar {
    display: flex;
    gap: 50px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    align-items: center;
}

.reviews-big-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.reviews-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 4px;
}

.reviews-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
}

.review-bar-item > span:first-child {
    width: 120px;
    color: var(--text-light);
}

.review-bar-item > span:last-child {
    width: 30px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 10px;
    animation: fillBar 1.2s ease both;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    transition: box-shadow 0.3s;
}

.review-card:hover { box-shadow: var(--shadow-hover); }

.review-stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.review-flag { font-size: 1.1rem; }

.reviews-cta { text-align: center; margin-top: 16px; }

/* =============================
   CALENDARIO
============================= */
#calendar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 14px;
    min-height: 500px;
}

.fc-toolbar-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: var(--primary) !important;
}

.small-note {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

/* =============================
   CONTACTO
============================= */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-perks {
    margin-bottom: 30px;
}

.perk {
    padding: 8px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.perk span { margin-left: 6px; }

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 4px;
}

.whatsapp-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.booking-form {
    background: white;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 7px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s;
    margin-top: 6px;
}

.btn-submit:hover { background: var(--accent); }

/* =============================
   FOOTER
============================= */
footer {
    background: #111;
    color: #888;
    padding: 50px 24px 30px;
    font-size: 0.85rem;
}

.footer-content {
    max-width: 1060px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-info p { margin: 4px 0; line-height: 1.8; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid #333;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    max-width: 1060px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 0.78rem;
}

/* =============================
   WHATSAPP FLOAT
============================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 1001;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-icon { width: 30px; height: 30px; }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-main img { height: 320px; }
    .gallery-side { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-score-bar { flex-direction: column; gap: 24px; }
    .contact-split { grid-template-columns: 1fr; gap: 40px; }
    .trust-item { padding: 14px 18px; }
    .apt-overview { flex-wrap: wrap; }
    .apt-stat { flex: 1 1 40%; }
}

@media (max-width: 640px) {
    .nav-cta { display: none; }
    .hero-content h1 { letter-spacing: 4px; }
    .hero-score { flex-direction: column; text-align: center; }
    .score-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 0 0 16px 0; }
    .score-info { text-align: center; }
    .gallery-side { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .trust-container { flex-direction: column; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .amenities-full { padding: 24px; }
    .booking-form { padding: 24px; }
    .section { padding: 55px 0; }
    .review-bar-item > span:first-child { width: 80px; }
}

/* =============================
   PRECIOS
============================= */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

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

.price-card--high {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fff9f0 0%, white 100%);
}

.price-season-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.price-season {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.price-dates {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-card--high .price-amount { color: var(--accent); }

.price-amount span {
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 8px;
}

.price-disclaimer {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* =============================
   CÓMO LLEGAR
============================= */
.howto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.distances {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.distance-item:last-child { border-bottom: none; }

.dist-icon { font-size: 1.4rem; width: 36px; text-align: center; flex-shrink: 0; }

.dist-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dist-info strong {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.dist-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* =============================
   FAQ
============================= */
.faq-list {
    max-width: 780px;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-arrow {
    font-size: 1.4rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
    line-height: 1;
}

.faq-q.open .faq-arrow { transform: rotate(90deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.faq-a.open {
    max-height: 300px;
    padding: 0 0 20px 0;
}

.faq-a p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .prices-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .prices-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .price-card { padding: 20px 12px; }
    .price-amount { font-size: 1.8rem; }
}

.price-notes {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-notes p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.price-notes p:first-child { color: var(--text-light); }

.price-notes p:not(:first-child) {
    color: var(--primary);
    font-weight: 500;
}
