/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --purple: #8B4C9F;
    --purple-dark: #6B2C7F;
    --magenta: #FF00FF;
    --magenta-bright: #FF1493;
    --white: #FFFFFF;
    --black: #000000;
    --green: #228B22;
    --blue-green: #2E8B57;
    --font-decorative: 'Dancing Script', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de Navegación Superior */
.top-nav {
    background: var(--gold);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle {
    display: none;
}

.nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
}

.nav-row-1 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn-purple {
    background: var(--purple);
}

.nav-btn-purple:hover {
    background: var(--purple-dark);
}

.nav-icon {
    font-size: 18px;
}

.nav-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magenta-bright);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid var(--white);
    white-space: nowrap;
    cursor: pointer;
}

.offer-icon {
    font-size: 16px;
}

/* Contenido Principal */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 120px);
    gap: 0;
}

/* Sección Logotipo */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.logo-circle {
    position: relative;
    width: 500px;
    height: 500px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 60px;
}

.offer-badge-top {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--magenta-bright);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    border: 3px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.logo-text-top {
    text-align: center;
    margin-bottom: 20px;
}

.logo-navaluenga {
    display: block;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 2px;
}

.logo-avila {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    margin-top: 4px;
}

.logo-title {
    text-align: center;
    margin: 20px 0;
}

.logo-la {
    display: block;
    font-family: var(--font-decorative);
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    margin-bottom: 10px;
}

.logo-la::before {
    content: '🍃';
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 24px;
}

.logo-casita {
    display: block;
    font-family: var(--font-decorative);
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    position: relative;
    letter-spacing: 2px;
}

.logo-casita::after {
    content: '🍃';
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 24px;
    color: var(--blue-green);
}

.logo-divider {
    width: 200px;
    height: 20px;
    margin: 15px 0;
}

.logo-subtitle {
    font-family: var(--font-decorative);
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    position: relative;
    margin-top: 10px;
}

.logo-subtitle::before {
    content: '🌸';
    position: absolute;
    left: -40px;
    top: 10px;
    font-size: 20px;
}

.logo-subtitle::after {
    content: '🌿';
    position: absolute;
    right: -40px;
    top: 10px;
    font-size: 20px;
}

.logo-text-bottom {
    margin-top: 30px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    letter-spacing: 1px;
}

/* Sección de Imágenes */
.images-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landscape-image {
    position: relative;
    width: 100%;
    height: 50vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landscape-top {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23767B8A" width="1200" height="600"/><path d="M0,400 Q300,300 600,400 T1200,400 L1200,600 L0,600 Z" fill="%234A5568"/></svg>');
    background-size: cover;
    background-position: center;
}

.landscape-bottom {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228B22" width="1200" height="600"/><path d="M0,500 Q400,400 800,500 T1200,500 L1200,600 L0,600 Z" fill="%23155A15"/></svg>');
    background-size: cover;
    background-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.landscape-title {
    font-family: var(--font-decorative);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.landscape-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Secciones de Contenido */
.content-section {
    padding: 60px 20px;
    min-height: 400px;
}

.content-section.hidden {
    display: none;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .logo-circle {
        width: 400px;
        height: 400px;
        padding: 40px;
    }

    .logo-la {
        font-size: 36px;
    }

    .logo-casita {
        font-size: 42px;
    }

    .logo-subtitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Navegación móvil mejorada */
    .top-nav {
        padding: 0;
    }

    .nav-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding: 6px 8px;
        max-height: none;
        overflow: visible;
    }

    .nav-row.collapsed {
        display: none;
    }

    .nav-btn {
        padding: 8px 10px;
        font-size: 10px;
        flex: 1 1 calc(50% - 2px);
        min-width: calc(50% - 2px);
        max-width: calc(50% - 2px);
        text-align: center;
    }

    .nav-badge {
        display: none;
    }

    /* Mejorar legibilidad de botones */
    .nav-btn-purple {
        background: var(--purple);
        color: var(--white);
    }

    /* Contenido principal móvil */
    .main-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .logo-section {
        padding: 20px 10px;
    }

    .logo-circle {
        width: 280px;
        height: 280px;
        padding: 25px;
    }

    .logo-navaluenga {
        font-size: 16px;
    }

    .logo-avila {
        font-size: 11px;
    }

    .logo-la {
        font-size: 26px;
    }

    .logo-casita {
        font-size: 30px;
    }

    .logo-subtitle {
        font-size: 26px;
    }

    .logo-text-bottom {
        font-size: 11px;
        margin-top: 15px;
    }

    .logo-la::before,
    .logo-casita::after,
    .logo-subtitle::before,
    .logo-subtitle::after {
        display: none;
    }

    .landscape-image {
        height: 35vh;
        min-height: 250px;
    }

    .landscape-title {
        font-size: 28px;
    }

    .landscape-text {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Contact strip móvil */
    .contact-strip {
        padding: 15px 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }

    .contact-text,
    .contact-phone {
        font-size: 0.9rem;
    }

    .social-badges {
        gap: 8px;
        flex-wrap: wrap;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    /* Secciones de contenido */
    .content-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Reservas móvil */
    .reservation-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reservation-box {
        padding: 20px;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .whatsapp-icon {
        font-size: 3rem;
    }

    /* Precios móvil */
    .prices-container {
        margin: 20px 0;
    }

    .year-label {
        position: static;
        transform: none;
        margin-bottom: 15px;
        font-size: 2rem;
        text-align: center;
    }

    .prices-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        gap: 15px;
    }

    .price-tier {
        padding: 20px;
    }

    /* House description móvil */
    .house-description {
        flex-direction: column;
        gap: 15px;
    }

    .house-size {
        align-self: center;
    }

    .floor-plans {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Gallery móvil */
    .gallery-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-photo {
        height: 250px;
    }

    /* Activities móvil */
    .activity-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .activity-large {
        height: 300px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .activity-card {
        height: 200px;
    }

    .valle-banner {
        height: 150px;
    }

    .valle-banner h3 {
        font-size: 2rem;
    }

    /* Offers móvil */
    .discounts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .discount-box {
        padding: 20px;
    }

    .discount-percent {
        font-size: 3rem;
    }

    .offer-image-placeholder {
        height: 300px;
        padding: 20px;
    }

    /* Services móvil */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .activities-services {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Pets móvil */
    .pet-content {
        flex-direction: column;
    }

    .pet-image-placeholder {
        width: 150px;
        height: 150px;
    }

    .pet-logo-circle {
        width: 120px;
        height: 120px;
    }

    /* Breakfast móvil */
    .breakfast-images {
        flex-direction: column;
    }

    .breakfast-image-placeholder,
    .breakfast-map {
        width: 100%;
        min-width: 100%;
    }

    .breakfast-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .breakfast-price {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    /* Location móvil */
    .location-address {
        padding: 20px;
    }

    .location-address p {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .contact-footer {
        padding: 20px;
    }

    /* Rules móvil */
    .rule-box {
        padding: 20px;
    }

    .condition-box {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    /* VIP móvil */
    .vip-box {
        padding: 25px;
    }

    .vip-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navegación extra pequeña */
    .nav-btn {
        padding: 6px 6px;
        font-size: 9px;
        flex: 1 1 calc(33.333% - 2px);
        min-width: calc(33.333% - 2px);
        max-width: calc(33.333% - 2px);
    }

    .nav-row {
        padding: 4px 4px;
        gap: 2px;
    }

    /* Botones más pequeños pero legibles */
    .nav-icon,
    .offer-icon {
        font-size: 12px;
    }

    /* Logo más pequeño */
    .logo-circle {
        width: 240px;
        height: 240px;
        padding: 20px;
    }

    .logo-navaluenga {
        font-size: 14px;
    }

    .logo-avila {
        font-size: 10px;
    }

    .logo-la {
        font-size: 22px;
    }

    .logo-casita {
        font-size: 26px;
    }

    .logo-subtitle {
        font-size: 22px;
    }

    .logo-text-bottom {
        font-size: 10px;
    }

    .logo-divider {
        width: 150px;
        margin: 10px 0;
    }

    /* Imágenes más pequeñas */
    .landscape-image {
        height: 30vh;
        min-height: 200px;
    }

    .landscape-title {
        font-size: 24px;
    }

    .landscape-text {
        font-size: 12px;
    }

    /* Secciones más compactas */
    .content-section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Contact strip más compacto */
    .contact-strip {
        padding: 10px 5px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 5px 8px;
    }

    /* Reservas más compactas */
    .reservation-box {
        padding: 15px;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    .whatsapp-icon {
        font-size: 2.5rem;
    }

    /* Precios más compactos */
    .prices-year {
        font-size: 1.8rem;
    }

    .price-tier {
        padding: 15px;
    }

    .price-item {
        padding: 8px;
        font-size: 0.9rem;
    }

    /* House description más compacto */
    .house-size {
        font-size: 1.5rem;
        padding: 10px;
        min-width: 80px;
    }

    .house-description p {
        font-size: 0.95rem;
    }

    /* Floor plans más pequeños */
    .floor-plan {
        padding: 15px;
    }

    .plan-room {
        padding: 10px;
        font-size: 0.8rem;
    }

    /* Gallery más pequeña */
    .gallery-item {
        height: 150px;
    }

    .gallery-photo {
        height: 200px;
    }

    .photo-placeholder {
        font-size: 0.9rem;
    }

    /* Activities más compactas */
    .activity-large {
        height: 250px;
    }

    .activity-card {
        height: 180px;
    }

    .activity-image-placeholder h3 {
        font-size: 1.5rem;
    }

    .activity-subtitle {
        font-size: 1.8rem;
    }

    .valle-banner {
        height: 120px;
    }

    .valle-banner h3 {
        font-size: 1.5rem;
    }

    /* Offers más compactos */
    .discount-box {
        padding: 15px;
    }

    .discount-percent {
        font-size: 2.5rem;
    }

    .offer-image-placeholder {
        height: 250px;
        padding: 15px;
    }

    .offer-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .old-price {
        font-size: 1.5rem;
    }

    .new-price {
        font-size: 2rem;
    }

    /* Services más compactos */
    .service-item {
        padding: 12px;
        gap: 10px;
    }

    .service-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .activity-service-item {
        padding: 15px;
    }

    /* Pets más compactos */
    .pet-image-placeholder {
        width: 120px;
        height: 120px;
    }

    .pet-logo-circle {
        width: 100px;
        height: 100px;
    }

    .pet-logo-text {
        font-size: 0.75rem;
    }

    .pet-paw {
        font-size: 1.5rem;
    }

    .pet-icon-large {
        font-size: 3rem;
    }

    /* Breakfast más compacto */
    .breakfast-bar h3 {
        font-size: 1.5rem;
    }

    .breakfast-image-placeholder,
    .breakfast-map {
        height: 150px;
    }

    .breakfast-box {
        padding: 20px;
    }

    .breakfast-box h4 {
        font-size: 1.5rem;
    }

    .breakfast-price {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .breakfast-includes li {
        padding: 8px;
        font-size: 0.9rem;
    }

    /* Location más compacto */
    .location-address {
        padding: 15px;
    }

    .location-address p {
        font-size: 0.9rem;
    }

    .map-container {
        height: 250px;
    }

    .map-marker {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .contact-footer {
        padding: 15px;
    }

    .contact-footer p {
        font-size: 0.95rem;
    }

    /* Rules más compactos */
    .rule-box {
        padding: 15px;
    }

    .rule-box h4 {
        font-size: 1.1rem;
    }

    .no-smoking-icon {
        font-size: 2rem;
    }

    .stop-icon {
        font-size: 2rem;
    }

    /* VIP más compacto */
    .vip-box {
        padding: 20px;
    }

    .vip-box h3 {
        font-size: 1.8rem;
    }

    .vip-icon {
        font-size: 2.5rem;
    }

    .vip-box h4 {
        font-size: 1.2rem;
    }

    .vip-box ul li {
        padding: 8px;
        font-size: 0.9rem;
    }

    /* Condition boxes más compactos */
    .condition-box {
        padding: 15px;
    }

    .condition-icon {
        font-size: 2rem;
    }

    .check-icon {
        font-size: 2.5rem;
    }

    .cancel-percent {
        font-size: 3rem;
    }

    .condition-content h4 {
        font-size: 1.1rem;
    }

    .condition-box ul li {
        font-size: 0.95rem;
    }

    /* Availability más compacto */
    .availability-section h3 {
        font-size: 1.5rem;
    }

    .phone-box {
        padding: 12px 20px;
        font-size: 1.2rem;
    }

    .legend-items {
        grid-template-columns: 1fr;
    }

    .legend-item {
        padding: 8px;
        font-size: 0.85rem;
    }
}

/* Logo VUT */
.logo-vut {
    margin-top: 10px;
    font-size: 12px;
    color: var(--black);
    font-weight: 600;
}

/* Contact Strip */
.contact-strip {
    background: var(--gold);
    padding: 20px;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-text {
    font-weight: 600;
    color: var(--black);
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
}

.social-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--black);
}

.badge.booking {
    background: #003580;
    color: var(--white);
}

.badge.booking .rating {
    font-weight: 700;
    color: var(--gold);
}

.badge.social {
    background: rgba(255, 255, 255, 0.9);
}

.badge.pet {
    background: rgba(255, 255, 255, 0.9);
}

/* Content Text Sections */
.content-text {
    padding: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    height: 300px;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Titles */
.section-title {
    font-family: var(--font-decorative);
    font-size: 3rem;
    text-align: center;
    color: var(--purple);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Reservation Section */
.reservation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.reservation-box {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.reservation-box.direct {
    background: var(--green);
    color: var(--white);
}

.reservation-box.online {
    background: #f0f0f0;
}

.whatsapp-box {
    margin-top: 20px;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.booking-platforms {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.platform-box {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.platform-box.booking {
    background: #003580;
    color: var(--white);
}

.platform-box.casasrurales {
    background: var(--white);
    border: 2px solid var(--gold);
}

.platform-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Reservation Conditions */
.reservation-conditions {
    margin-top: 50px;
}

.conditions-title {
    text-align: center;
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 30px;
}

.condition-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.condition-box.baby {
    background: #fff9c4;
}

.condition-box.payment {
    background: var(--gold);
    flex-direction: column;
    text-align: center;
}

.condition-box.cancel-full {
    background: var(--green);
    color: var(--white);
    flex-direction: column;
}

.condition-box.cancel-partial {
    background: #ffb3d9;
    flex-direction: column;
}

.condition-icon {
    font-size: 2.5rem;
}

.condition-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.check-icon {
    font-size: 3rem;
    color: var(--white);
}

.cancel-percent {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.condition-box ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.condition-box ul li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.payment-method {
    margin-top: 15px;
    font-weight: 600;
}

/* Prices Section */
.prices-year {
    text-align: center;
    font-size: 2.5rem;
    color: var(--purple);
    margin: 20px 0;
}

.prices-note {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.prices-container {
    position: relative;
    margin: 40px 0;
}

.year-label {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-left: 60px;
}

.price-tier {
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.price-tier.baja {
    background: #fff9c4;
}

.price-tier.media {
    background: #c8e6c9;
}

.price-tier.alta {
    background: #f8bbd0;
}

.price-tier h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.price-label {
    font-weight: 600;
    margin-bottom: 15px;
}

.price-people {
    margin: 20px 0;
}

.price-item {
    padding: 10px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    font-weight: 600;
}

.price-note {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #555;
}

/* Availability Section */
.availability-section {
    margin-top: 50px;
    text-align: center;
}

.availability-section h3 {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 20px;
}

.availability-phone {
    margin: 30px 0;
}

.phone-box {
    display: inline-block;
    padding: 15px 30px;
    background: var(--green);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 10px;
}

.availability-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.availability-legend {
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.availability-legend h4 {
    margin-bottom: 15px;
    color: var(--purple);
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.legend-item {
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.legend-item.free-1 {
    background: var(--green);
    color: var(--white);
}

.legend-item.free-2 {
    background: var(--green);
    color: var(--white);
    border: 2px dashed var(--white);
}

.legend-item.not-available {
    background: #f44336;
    color: var(--white);
}

.legend-item.baja {
    background: #fff9c4;
}

.legend-item.media {
    background: #c8e6c9;
}

.legend-item.alta {
    background: #f8bbd0;
}

.legend-item.closed {
    background: #f44336;
    color: var(--white);
}

/* House Description */
.house-description {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
}

.house-size {
    font-size: 2rem;
    font-weight: 700;
    color: var(--purple);
    padding: 15px;
    background: var(--gold);
    border-radius: 10px;
    min-width: 100px;
    text-align: center;
}

.warning-box {
    background: #ffebee;
    border-left: 5px solid #f44336;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.warning-icon {
    font-size: 2.5rem;
}

.warning-content p {
    margin: 10px 0;
    color: #c62828;
    font-weight: 600;
}

/* Floor Plans */
.floor-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.floor-plan {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
}

.floor-plan h4 {
    margin-bottom: 15px;
    color: var(--purple);
}

.plan-drawing {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-room {
    padding: 15px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Floor Details */
.floor-details {
    margin: 40px 0;
}

.floor-title {
    font-family: var(--font-decorative);
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 20px;
    text-align: center;
}

.floor-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.floor-list li {
    padding: 15px;
    margin: 10px 0;
    background: var(--gold);
    border-radius: 5px;
    font-weight: 600;
}

/* Interior Gallery */
.interior-gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-photo {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Rules Section */
.rules-section {
    max-width: 800px;
    margin: 0 auto;
}

.rule-box {
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.rule-box.entry-exit {
    background: var(--gold);
    text-align: center;
}

.rule-box.capacity {
    background: #e3f2fd;
}

.rule-box.smoking {
    background: #fff3e0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.no-smoking-icon {
    font-size: 3rem;
}

.no-smoking-box {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold);
    border-radius: 5px;
    font-weight: 700;
    margin-top: 10px;
}

.rule-box.prohibited {
    background: #ffebee;
    position: relative;
}

.stop-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
}

.rule-box.pets {
    background: #e8f5e9;
    text-align: center;
}

.pet-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 15px;
}

.rule-box ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.rule-box ul li {
    padding: 10px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

/* Activities Section */
.activity-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.activity-large {
    height: 400px;
}

.activity-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--green), var(--blue-green));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 20px;
    position: relative;
}

.activity-image-placeholder h3 {
    font-family: var(--font-decorative);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.activity-subtitle {
    font-family: var(--font-decorative);
    font-size: 2.5rem;
}

.how-to-arrive {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--black);
}

.valle-banner {
    height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><rect fill="%23228B22" width="1200" height="200"/></svg>');
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    border-radius: 10px;
}

.valle-banner h3 {
    font-family: var(--font-decorative);
    font-size: 3rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.activity-card {
    position: relative;
    height: 250px;
}

.activity-card .activity-image-placeholder {
    height: 100%;
    font-size: 1rem;
}

/* Offers Section */
.discounts-section {
    margin: 40px 0;
    padding: 30px;
    border: 3px dashed var(--magenta-bright);
    border-radius: 10px;
}

.discounts-title {
    color: var(--magenta-bright);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.discount-box {
    background: #2c2c2c;
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--magenta-bright);
}

.discount-box h4 {
    margin-bottom: 15px;
}

.discount-percent {
    font-size: 4rem;
    font-weight: 700;
    color: var(--magenta-bright);
    margin: 20px 0;
}

.discount-note {
    text-align: center;
    color: #ff9800;
    font-weight: 600;
    margin-top: 20px;
}

.offers-section {
    margin: 40px 0;
}

.offers-title {
    color: var(--magenta-bright);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.offer-card {
    margin: 30px 0;
}

.offer-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--purple), var(--gold));
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 3px solid var(--magenta-bright);
}

.offer-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-badge {
    padding: 10px 20px;
    background: var(--magenta-bright);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.offer-label {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: var(--magenta-bright);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
}

.offer-content {
    text-align: center;
    color: var(--white);
}

.offer-content p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
}

.discount-badge {
    padding: 10px 15px;
    background: var(--magenta-bright);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

.vip-section {
    margin: 40px 0;
}

.vip-box {
    background: var(--magenta-bright);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.vip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vip-box h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vip-box h4 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.vip-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.vip-box ul li {
    padding: 10px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.vip-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.service-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.people-icons {
    font-size: 1.2rem;
}

.activities-services {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.activity-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 10px;
}

.activity-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

/* Pets Section */
.pet-section {
    max-width: 900px;
    margin: 0 auto;
}

.pet-free-box {
    background: var(--gold);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.pet-free-box h4 {
    font-size: 1.5rem;
    color: var(--black);
}

.pet-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pet-image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--green), var(--blue-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.pet-logo-circle {
    width: 150px;
    height: 150px;
    border: 5px solid var(--purple);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.pet-logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--purple);
    text-align: center;
}

.pet-paw {
    font-size: 2rem;
    margin-top: 10px;
}

.pet-collaborator {
    text-align: center;
    margin: 20px 0;
}

.pet-link {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}

.pet-amenities {
    background: #fff9c4;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.pet-icon-large {
    font-size: 4rem;
    margin-top: 15px;
}

.pet-limit {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.dog-icons {
    font-size: 2rem;
    margin: 15px 0;
}

.pet-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.pet-size {
    background: #fff3e0;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.pet-size-note {
    margin: 15px 0;
    color: #666;
}

.pet-bed-image {
    width: 150px;
    height: 100px;
    background: #8B6F47;
    border-radius: 10px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.pet-breed {
    background: #f3e5f5;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.pet-breed h4 {
    font-size: 1.5rem;
    color: var(--purple);
    margin-bottom: 15px;
}

.pet-important {
    background: #ffebee;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.pet-important h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.pet-heart {
    font-size: 3rem;
    margin: 15px 0;
}

.pet-rules {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 20px auto 0;
}

.pet-rules li {
    padding: 15px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    line-height: 1.6;
}

/* Breakfast Section */
.breakfast-bar {
    background: #fff9c4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.breakfast-bar h3 {
    font-size: 2rem;
    color: var(--black);
}

.breakfast-images {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.breakfast-image-placeholder {
    flex: 1;
    min-width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--purple));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.breakfast-map {
    flex: 1;
    min-width: 200px;
    height: 200px;
    background: #e3f2fd;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.breakfast-options-title {
    font-size: 1.8rem;
    color: var(--purple);
    margin: 30px 0 20px;
    text-align: center;
}

.breakfast-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.breakfast-box {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--gold);
}

.breakfast-box.iberico {
    background: #fff9c4;
}

.breakfast-box.americano {
    background: #e3f2fd;
}

.breakfast-box h4 {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 20px;
}

.breakfast-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    background: var(--gold);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.breakfast-includes {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.breakfast-includes li {
    padding: 10px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    font-weight: 600;
}

.breakfast-important {
    background: #fff9c4;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.breakfast-important h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 20px;
    text-align: center;
}

.breakfast-important ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.breakfast-important ul li {
    padding: 10px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.breakfast-warning {
    margin-top: 20px;
    padding: 15px;
    background: #ffebee;
    border-left: 5px solid #f44336;
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
}

/* Location Section */
.location-address {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: var(--gold);
    border-radius: 10px;
}

.location-address p {
    margin: 10px 0;
    font-size: 1.2rem;
}

.map-container {
    margin: 30px 0;
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e3f2fd;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-marker {
    position: absolute;
    padding: 10px 15px;
    background: var(--purple);
    color: var(--white);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-marker.gas {
    top: 20%;
    left: 10%;
    background: #2196F3;
}

.map-marker.football {
    bottom: 20%;
    right: 10%;
    background: var(--green);
}

.contact-footer {
    text-align: center;
    padding: 30px;
    background: var(--gold);
    border-radius: 10px;
    margin: 30px 0;
}

.contact-footer p {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mejoras adicionales para móvil */
@media (max-width: 768px) {
    /* Asegurar que todos los grids sean de una columna */
    .reservation-options,
    .prices-grid,
    .discounts-grid,
    .breakfast-options,
    .activities-grid,
    .floor-plans {
        grid-template-columns: 1fr;
    }

    /* Mejorar espaciado en móvil */
    .container {
        padding: 0 15px;
    }

    /* Texto más legible */
    .content-text {
        font-size: 1rem;
        padding: 20px 0;
    }

    /* Mejorar botones en móvil */
    .how-to-arrive {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Mejorar tabs de navegación */
    .nav-row-1,
    .nav-row-2 {
        justify-content: flex-start;
    }

    /* Ocultar elementos decorativos innecesarios en móvil */
    .offer-badge-top {
        font-size: 12px;
        padding: 6px 10px;
    }
}
