/* Base styles similar to main site but adapted for tourism */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f2ed;
    color: #2a2a2a;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background: #0a0a0a;
    color: #fff;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f2ed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.dark-mode .loading-screen {
    background: #0a0a0a;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: spinLogo 3s ease-in-out infinite;
}

@keyframes spinLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-brand {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    background: linear-gradient(135deg, #d4a355 0%, #f4d799 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    font-size: 1.2rem;
    color: rgba(139, 111, 71, 0.7);
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

body.dark-mode .loading-subtitle {
    color: rgba(212, 163, 85, 0.7);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 111, 71, 0.2);
    border-top-color: #8b6f47;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f5f2ed 0%, #e8e2d5 50%, #f5f2ed 100%);
}

body.dark-mode .bg-animation {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    backdrop-filter: blur(20px);
    background: rgba(245, 242, 237, 0.95);
    border-bottom: 1px solid rgba(139, 111, 71, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

body.dark-mode header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #8b6f47;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

body.dark-mode .back-arrow {
    color: #c49350;
    background: rgba(139, 111, 71, 0.15);
}

.back-arrow:hover {
    background: rgba(139, 111, 71, 0.2);
    transform: translateX(-5px);
}

body.dark-mode .back-arrow:hover {
    background: rgba(139, 111, 71, 0.25);
}

.logo-svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: rotate(180deg);
}

.brand-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.back-home {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.back-home:hover {
    transform: scale(1.2);
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #8b6f47;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

body.dark-mode .brand-subtitle {
    color: #c49350;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: rgba(42, 42, 42, 0.7);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

body.dark-mode nav a {
    color: rgba(255, 255, 255, 0.7);
}

nav a:hover {
    color: #8b6f47;
}

/* Theme Toggle & Language Selector - same as main site */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.1);
    border: 1px solid rgba(139, 111, 71, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(139, 111, 71, 0.2);
    transform: rotate(15deg);
}

.sun-icon, .moon-icon {
    position: absolute;
    transition: all 0.3s ease;
    color: #8b6f47;
}

.sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

body.dark-mode .sun-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

body.dark-mode .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #d4a355;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(139, 111, 71, 0.08);
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: 50px;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: rgba(42, 42, 42, 0.5);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.dark-mode .lang-btn {
    color: rgba(255, 255, 255, 0.5);
}

.lang-btn:hover {
    background: rgba(139, 111, 71, 0.12);
    color: rgba(42, 42, 42, 0.8);
}

.lang-btn.active {
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(139, 111, 71, 0.3);
}

/* Hero Section */
.hero-turismo {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(196, 147, 80, 0.08) 100%);
}

body.dark-mode .hero-turismo {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(196, 147, 80, 0.05) 100%);
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 111, 71, 0.12);
    border: 1px solid rgba(139, 111, 71, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
    color: #8b6f47;
    animation: fadeInUp 0.8s ease;
    font-weight: 600;
}

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

.hero-turismo h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #8b6f47;
    animation: fadeInUp 0.8s ease 0.2s both;
}

body.dark-mode .hero-turismo h1 {
    background: linear-gradient(135deg, #ffffff 0%, #c49350 50%, #d4a355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-turismo p {
    font-size: 1.5rem;
    color: rgba(42, 42, 42, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

body.dark-mode .hero-turismo p {
    color: rgba(255, 255, 255, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.25);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 111, 71, 0.35);
}

/* Common Section Styles */
.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #8b6f47;
}

body.dark-mode .section-title {
    background: linear-gradient(135deg, #ffffff 0%, #c49350 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.6);
    margin-bottom: 5rem;
}

body.dark-mode .section-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* Parallax layers */
.parallax-layer {
    position: relative;
    will-change: transform;
}

/* Accommodation Section */
.accommodation-section {
    padding: 8rem 2rem;
    background: #fff;
}

body.dark-mode .accommodation-section {
    background: rgba(10, 10, 10, 0.5);
}

.accommodation-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.accommodation-card {
    background: #faf8f5;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

body.dark-mode .accommodation-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.15);
}

.accommodation-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.accommodation-content {
    padding: 2.5rem;
}

.accommodation-content h3 {
    font-size: 2rem;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    padding: 0.5rem 1rem;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8b6f47;
}

body.dark-mode .feature {
    background: rgba(139, 111, 71, 0.15);
    color: #c49350;
}

.accommodation-content p {
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

body.dark-mode .accommodation-content p {
    color: rgba(255, 255, 255, 0.7);
}

.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.amenities li {
    color: rgba(42, 42, 42, 0.7);
    font-size: 0.95rem;
}

body.dark-mode .amenities li {
    color: rgba(255, 255, 255, 0.7);
}

/* Experiences Section */
.experiences-section {
    padding: 8rem 2rem;
    background: rgba(139, 111, 71, 0.04);
}

body.dark-mode .experiences-section {
    background: rgba(139, 111, 71, 0.03);
}

.experiences-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.experience-card {
    padding: 2.5rem;
    background: #fff;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.dark-mode .experience-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.experience-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.experience-card h3 {
    font-size: 1.6rem;
    color: #8b6f47;
    margin-bottom: 1rem;
}

body.dark-mode .experience-card h3 {
    color: #c49350;
}

.experience-card p {
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

body.dark-mode .experience-card p {
    color: rgba(255, 255, 255, 0.7);
}

.experience-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: #8b6f47;
}

body.dark-mode .experience-duration {
    background: rgba(139, 111, 71, 0.15);
    color: #c49350;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
    background: #fff;
}

body.dark-mode .gallery-section {
    background: rgba(10, 10, 10, 0.5);
}

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

.gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.25);
}

.gallery-item p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: rgba(42, 42, 42, 0.7);
    font-weight: 500;
}

body.dark-mode .gallery-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 2rem;
    background: rgba(139, 111, 71, 0.04);
}

body.dark-mode .pricing-section {
    background: rgba(139, 111, 71, 0.03);
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    padding: 3rem 2.5rem;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

body.dark-mode .pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

.pricing-card.featured {
    border: 2px solid #c49350;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.15);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #c49350 0%, #d4a355 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #8b6f47;
    margin-bottom: 2rem;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-value {
    font-size: 4rem;
    font-weight: 800;
    color: #8b6f47;
}

body.dark-mode .price-value {
    color: #c49350;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.5);
}

body.dark-mode .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.8rem 0;
    color: rgba(42, 42, 42, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .price-features li {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.min-stay {
    display: block;
    text-align: center;
    color: #8b6f47;
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 20px;
    text-align: center;
}

body.dark-mode .booking-note {
    background: rgba(139, 111, 71, 0.15);
}

.booking-note p {
    color: rgba(42, 42, 42, 0.8);
    line-height: 1.8;
}

body.dark-mode .booking-note p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: #fff;
}

body.dark-mode .contact-section {
    background: rgba(10, 10, 10, 0.5);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(139, 111, 71, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #8b6f47;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(42, 42, 42, 0.7);
    line-height: 1.6;
}

body.dark-mode .contact-item p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    background: #faf8f5;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 111, 71, 0.2);
}

body.dark-mode .contact-form {
    background: rgba(255, 255, 255, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(42, 42, 42, 0.8);
    font-size: 1rem;
}

body.dark-mode .form-group label {
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(139, 111, 71, 0.25);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 111, 71, 0.2);
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b6f47;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.4);
}

.form-success {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 111, 71, 0.15);
    background: #faf8f5;
}

body.dark-mode footer {
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(139, 111, 71, 0.2);
}

.footer-links {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links a {
    color: #8b6f47;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: #c49350;
}

footer p {
    color: rgba(42, 42, 42, 0.6);
    margin-bottom: 0.5rem;
}

body.dark-mode footer p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 111, 71, 0.1);
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 0.5);
}

.bitbean-link {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.bitbean-link:hover {
    color: #c49350;
}

.bitbean-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b6f47 0%, #c49350 100%);
    transition: width 0.3s ease;
}

.bitbean-link:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .hero-turismo h1 {
        font-size: 3rem;
    }

    .hero-turismo p {
        font-size: 1.2rem;
    }

    nav {
        display: none;
    }

    .nav-right {
        gap: 1rem;
    }

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

    .experiences-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

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

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

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .brand {
        font-size: 1.4rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }

    .back-home {
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }

    .back-arrow {
        width: 35px;
        height: 35px;
    }

    .back-arrow svg {
        width: 18px;
        height: 18px;
    }
}