body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: url("IMAGENES/LUGARES/BARRANCO_0704.png") center/cover no-repeat fixed;
    background-color: #f8f8f8cb;
    padding-top: 70px; /* Para navbar fija */
}
/* Navbar clara */
.navbar-light {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(3px);
    color: #333;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #ececec;
}
.navbar-logo {
    margin-left: 40px;
    transition: all 0.3s;
    z-index: 200;
}
.navbar-logo img {
    height: 60px;
    transition: all 0.3s;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 48px;
    min-height: 48px;
}
.navbar-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    justify-content: center;
    width: 100%;
}
.navbar-links li {
    position: relative;
}
.navbar-links a {
    color: #181818;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #181818 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.navbar-links a.active,
.navbar-links a:hover {
    background: #ffc83d;
    color: #181818;
}
.navbar-btn {
    background: #fff;
    color: #181818 !important;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 18px;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}
.navbar-btn:hover {
    background: #ffc83d;
    color: #181818 !important;
}
.navbar-icon {
    width: 25px;
    height: 25px;
    margin-left: 10px;
    transition: transform 0.3s;
    filter: invert(0.2);
}
.navbar-icon:hover {
    transform: scale(1.2);
}
.navbar-toggle {
    display: none;
}
/* Íconos de redes sociales en una sola línea horizontal */
.navbar-links li:last-child {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 0;
}
.navbar-links li:last-child a {
    padding: 0;
    background: none !important;
}
/* Intro locales */
.locales-intro {
    max-width: 900px;
    margin: 0 auto 32px auto;
    padding: 48px 20px 0 20px;
    text-align: center;
}
.locales-intro h2 {
    color: #a0522d;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 18px;
}
.locales-intro p {
    color: #444;
    font-size: 1.15em;
    line-height: 1.6;
}

/* Slider fullscreen y collage */
.slider-fullscreen {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
}
.slider-collage {
    display: flex;
    width: 90vw;
    height: 80vh;
    max-width: 1400px;
    max-height: 700px;
    transition: transform 1s;
    position: relative;
}
.slide-collage {
    min-width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    overflow: hidden;
    align-items: stretch;
    justify-content: stretch;
    transition: box-shadow 0.3s;
}
.collage-fotos {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 16px 32px 32px;
    justify-content: center;
}
.collage-img.grande {
    width: 100%;
    height: 48%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.collage-img.chica {
    width: 48%;
    height: 22%;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.collage-img.chica:last-child {
    margin-right: 0;
}
.collage-mapa-info {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 32px 32px 16px;
}
.collage-mapa {
    width: 100%;
    max-width: 700px;
    margin-bottom: 18px;
}
.mapa-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgb(245, 158, 27);
}
.collage-info {
    text-align: center;
}
.collage-info h2 {
    color: #a0522d;
    margin-bottom: 8px;
    font-size: 2em;
}
.slide-info {
    margin-bottom: 18px;
    color: #444;
    font-size: 1.1em;
}
.slide-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}
.slide-btns a {
    background: #a0522d;
    color: #fff;
    padding: 10px 18px;
    border-radius: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 1em;
}
.slide-btns a:hover {
    background: #ffc83d;
    color: #333;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #a0522d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
    opacity: 0.85;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.slider-arrow.left { left: 2vw; }
.slider-arrow.right { right: 2vw; }
.slider-arrow:hover {
    background: #ffc83d;
    color: #333;
}
/* --- Nuevo Footer Moderno --- */
.footer-section {
    background: #fffdfa;
    color: #181818;
    padding: 48px 0 0 0;
    border-top: 1.5px solid #f3e6d0;
}
.footer-container.new-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 24px 24px;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    text-align: center;
}
.footer-logo img {
    height: 54px;
    margin-bottom: 10px;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}
.footer-social img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(160,82,45,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 6px;
    border: 2px solid #ffc83d;
}
.footer-social a:hover img {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 4px 16px #ffc83d;
    background: #ffc83d;
}
.footer-title {
    font-weight: 700;
    font-size: 1.15em;
    margin-bottom: 8px;
    color: #a0522d;
    letter-spacing: 0.01em;
}
.footer-link {
    color: #a0522d;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-link:hover {
    color: #ffc83d;
}
.footer-copyright {
    background: #a0522d;
    color: #fff;
    text-align: center;
    padding: 16px 0 12px 0;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 0;
}
.footer-col.footer-libro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    margin-top: 0;
}
.footer-col.footer-libro img {
    margin-bottom: 10px;
    width: 54px;
    height: 54px;
}
.footer-col.footer-libro .footer-link {
    color: #a0522d;
    font-size: 1.08em;
    font-weight: 700;
    text-decoration: underline;
    margin-top: 0;
    transition: color 0.2s;
}
.footer-col.footer-libro .footer-link:hover {
    color: #ffc83d;
}