/* =========================================
   VILLA HORIZONTE - ESTILO LUJO NATURAL
   ========================================= */

:root {
    --primary: #4a5d23;
    /* Verde Oliva */
    --bg-color: #f5f0e6;
    /* Beige Arena */
    --text-dark: #2b2b2b;
    --text-light: #666;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.8;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* --- NAVBAR --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond';
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: white;
    text-decoration: underline;
}

.btn-book {
    background: white;
    color: var(--text-dark);
    padding: 10px 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 1px solid white;
}

.btn-book:hover {
    background: transparent;
    color: white;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.pre-title {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
    animation: float 2s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* --- INTRO --- */
.section-intro {
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--primary);
}

.intro-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.features-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.features-list i {
    color: var(--primary);
}

.intro-img img {
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(74, 93, 35, 0.1);
}

/* --- GALERÍA MOSAICO --- */
.section-gallery {
    padding: 0 0 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.section-header p {
    font-family: 'Montserrat';
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.g-item {
    overflow: hidden;
    position: relative;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.g-item:hover img {
    transform: scale(1.05);
}

.g-wide {
    grid-column: span 2;
}

.g-tall {
    grid-row: span 2;
}

/* --- UBICACIÓN --- */
.section-location {
    padding: 100px 0;
    background: white;
}

.location-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.loc-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.loc-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.nearby-places {
    margin: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.nearby-places h4 {
    font-family: 'Montserrat';
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.nearby-places ul {
    list-style: none;
}

.nearby-places li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nearby-places i {
    color: var(--primary);
}

.btn-waze {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 12px 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-waze:hover {
    background: var(--primary);
}

.map-frame {
    height: 400px;
    filter: grayscale(20%);
}

/* --- CTA FINAL --- */
.section-cta {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.price-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.price-big {
    font-family: 'Cormorant Garamond';
    font-size: 5rem;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 40px;
}

.price-big small {
    font-size: 1.5rem;
    color: var(--text-light);
}

.btn-reserve-big {
    background: var(--primary);
    color: white;
    padding: 20px 50px;
    font-size: 1rem;
    letter-spacing: 3px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-reserve-big:hover {
    background: var(--text-dark);
}

/* --- FOOTER --- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 50px 0;
    font-size: 0.8rem;
}

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

.f-logo {
    font-family: 'Cormorant Garamond';
    font-size: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.f-socials a {
    color: white;
    margin-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.f-socials a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .intro-grid,
    .location-flex {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .g-wide,
    .g-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-flex {
        flex-direction: column;
        gap: 20px;
    }
}

