/* ...aquí irá el contenido de los estilos extraídos de index.php... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

/* Header */
header {
    background: #2D2D2D;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    height: 80px; /* Altura fija para mejor cálculo del offset */
    box-sizing: border-box;
    transition: all 0.3s ease; /* Transición suave para cambios */
}

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    background: #A5A59B;
    border: none;
    padding: 12px 24px;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
}

.nav-btn:hover,
.nav-btn.active {
    background: #D5D7D6;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2D2D2D;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav .nav-btn {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 120px 0 50px; /* Aumenté el padding-top para compensar el header fijo */
}

/* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('imgh/hero-bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            display: flex;
            align-items: center;
            text-align: center;
        }.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-tagline {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Transition Section */
.transition-section {
    background: linear-gradient(to bottom, #F5F5F5, #fff);
    padding: 80px 0;
    text-align: center;
}

.transition-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.transition-section p {
    font-size: 1.2rem;
    color: #A5A59B;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
        #quienes-somos {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('imgh/quienes-somos-bg.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            display: flex;
            align-items: center;
        }.about-content {
    background: rgba(0,0,0,0.7);
    padding: 60px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Properties Section */
        #propiedades {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('imgh/propiedades-bg.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            display: flex;
            align-items: center;
        }.properties-content {
    text-align: center;
    width: 100%;
}

.properties-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.properties-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.properties-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

.property-link {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 3rem 2rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 350px;
    text-align: center;
    border-radius: 15px;
}

.property-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.property-link h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.property-link p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.property-link_a, .link-a{
    text-decoration: none;
    color:white;
}
.property-link_img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Contact Section */
        #contacto {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('imgh/contacto-bg.png');
            background-size: cover;
            background-position: center;
            color: #fff;
            display: flex;
            align-items: center;
        }.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin-top: 3rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.submit-btn {
    background: #A5A59B;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #D5D7D6;
    transform: translateY(-2px);
}

/* Modified contact info to only show 2 boxes */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0.5rem 0;
}

/* Footer */
footer {
    background: #000000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #D5D7D6;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2D2D2D;
    color: #A5A59B;
}

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

    .mobile-menu-btn {
        display: block;
    }

    .logo img {
        height: 32px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-tagline {
        display:none;
    }
    .about-content,
    .contact-form {
        padding: 30px 20px;
    }

    .about-content h2,
    .properties-content h2,
    .contact-content h2 {
        font-size: 2rem;
    }

    .properties-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .property-link {
        max-width: none;
        padding: 2rem 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transition-section h2 {
        font-size: 2rem;
    }

    .transition-section p {
        font-size: 1rem;
    }
}