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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

/* Header */
.header {
    background-color: #1a2332;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    color: white;
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: #4a9d5f;
}

/* Hero Section */
.hero {
    background-image: url('casa-principal.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Main Section */
.main-section {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Left Content */
.left-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery {
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.thumbnail-gallery img:hover {
    transform: scale(1.05);
}

.section-block {
    margin-bottom: 40px;
}

.section-block h2 {
    color: #1a2332;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #4a9d5f;
    padding-bottom: 10px;
}

.section-block p {
    margin-bottom: 15px;
    text-align: justify;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9d5f;
    font-weight: bold;
}

.warning-text {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.experience-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.experience-gallery img:hover {
    transform: scale(1.05);
}

/* Sidebar Reserva */
.sidebar-reserva {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.reserva-box {
    background: linear-gradient(135deg, #4a9d5f 0%, #3d8550 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.reserva-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.reserva-quote {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.price-note {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.reserva-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-note {
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.9;
}

.btn-reserva {
    width: 100%;
    padding: 15px;
    background-color: #1a2332;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-reserva:hover {
    background-color: #0f1621;
}

/* Location Section */
.location-section {
    padding: 60px 0;
    background: white;
}

.location-section h2 {
    color: #1a2332;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.location-note {
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
    color: #666;
}

.map-container {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.address {
    text-align: center;
}

.address h3 {
    color: #1a2332;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background-color: #1a2332;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #4a9d5f;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4a9d5f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-reserva {
        position: static;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .experience-gallery {
        grid-template-columns: 1fr;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .left-content {
        padding: 20px;
    }
    
    .reserva-box {
        padding: 20px;
    }
    
    .hero {
        height: 300px;
    }
}

