        :root {
            --color-primary: #2C2416;
            --color-secondary: #B8936D;
            --color-accent: #D4A574;
            --color-light: #F5F1EB;
            --color-white: #FFFFFF;
            --color-dark: #1A1612;
            --color-muted: #6B6660;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--color-light);
            color: var(--color-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(184, 147, 109, 0.2);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

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

        .logo {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-primary);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--color-secondary);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="%23B8936D" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            animation: moveGrid 20s linear infinite;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 300;
            color: var(--color-white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .hero h1 strong {
            font-weight: 700;
            display: block;
            color: var(--color-accent);
            font-size: 1.2em;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 3rem;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--color-accent);
            color: var(--color-dark);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 2px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(184, 147, 109, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-indicator span {
            display: block;
            width: 2px;
            height: 60px;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(212,165,116,1));
            margin: 0 auto 10px;
        }

        .scroll-indicator p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat {
            text-align: center;
            padding: 2rem;
            background: var(--color-white);
            border-radius: 4px;
            transition: transform 0.3s ease;
        }

        .stat:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--color-secondary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--color-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-image {
            position: relative;
            height: 600px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 36, 22, 0.3), transparent);
            z-index: 1;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Projects Section */
        .projects {
            padding: 8rem 3rem;
            background: var(--color-white);
        }

        .projects-header {
            max-width: 1400px;
            margin: 0 auto 5rem;
            text-align: center;
        }

        .projects-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .projects-header p {
            font-size: 1.1rem;
            color: var(--color-muted);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .project-card {
            position: relative;
            height: 650px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(26, 22, 18, 0.95));
            z-index: 1;
            transition: all 0.5s ease;
        }

        .project-card:hover::before {
            background: linear-gradient(to bottom, transparent 20%, rgba(26, 22, 18, 0.98));
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image {
            transform: scale(1.05);
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            z-index: 2;
            color: var(--color-white);
        }

        .project-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(212, 165, 116, 0.2);
            color: var(--color-accent);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            border: 1px solid rgba(212, 165, 116, 0.3);
            border-radius: 2px;
        }

        .project-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .project-location {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .project-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .project-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            fill: var(--color-accent);
        }

        /* Footer */
        .footer {
            background: var(--color-dark);
            color: rgba(255, 255, 255, 0.8);
            padding: 5rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-white);
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--color-white);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        /* Nav Back Button (edificio.html) */
        .nav-back {
            color: var(--color-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .nav-back:hover {
            color: var(--color-secondary);
        }

        /* Hero Building Section (edificio.html) */
        .hero-building {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            background: var(--color-dark);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .hero-building::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 40%, var(--color-dark));
            z-index: 1;
        }

        .hero-building-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .building-tag {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: rgba(212, 165, 116, 0.2);
            color: var(--color-accent);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            border: 1px solid rgba(212, 165, 116, 0.4);
            border-radius: 2px;
        }

        .hero-building h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 600;
            color: var(--color-white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .hero-location {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1.2rem 3rem;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 2px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-dark);
        }

        .btn-primary:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(184, 147, 109, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Quick Stats */
        .quick-stats {
            background: var(--color-white);
            padding: 0;
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-radius: 4px;
            overflow: hidden;
        }

        .stat-item {
            padding: 3rem 2rem;
            text-align: center;
            background: var(--color-white);
            border-right: 1px solid var(--color-light);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 1rem;
            fill: var(--color-secondary);
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-primary);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Main Content */
        .main-content {
            padding: 8rem 3rem;
        }

        .content-section {
            max-width: 1200px;
            margin: 0 auto 8rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--color-muted);
            max-width: 700px;
            margin: -2rem auto 4rem;
            line-height: 1.8;
        }

        /* Description Grid */
        .description-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .description-text h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .description-text p {
            font-size: 1.05rem;
            color: var(--color-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .location-details {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 4px;
            border-left: 4px solid var(--color-accent);
        }

        .location-details h4 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .location-details p {
            color: var(--color-muted);
            line-height: 1.8;
        }

        /* Uses Grid */
        .uses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .use-card {
            background: var(--color-white);
            padding: 3rem 2.5rem;
            border-radius: 4px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .use-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .use-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            fill: var(--color-secondary);
        }

        .use-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .use-card p {
            color: var(--color-muted);
            line-height: 1.6;
        }

        /* Amenities Grid */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .amenity-card {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 4px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .amenity-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .amenity-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            fill: var(--color-accent);
        }

        .amenity-info h4 {
            font-size: 1.1rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .amenity-info p {
            font-size: 0.9rem;
            color: var(--color-muted);
            line-height: 1.6;
        }

        /* Kitchen Specs */
        .kitchen-section {
            background: var(--color-white);
            padding: 6rem 3rem;
        }

        .kitchen-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .kitchen-image {
            height: 500px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .kitchen-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .kitchen-specs h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 2rem;
        }

        .specs-list {
            list-style: none;
        }

        .spec-item {
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--color-light);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            fill: var(--color-accent);
            margin-top: 0.2rem;
        }

        .spec-text {
            flex: 1;
        }

        .spec-text strong {
            color: var(--color-primary);
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
        }

        .spec-text span {
            color: var(--color-muted);
            font-size: 0.95rem;
        }

        /* Equipment Section */
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .equipment-item {
            background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
            padding: 2.5rem 2rem;
            border-radius: 4px;
            text-align: center;
            border: 1px solid rgba(184, 147, 109, 0.1);
            transition: all 0.3s ease;
        }

        .equipment-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--color-accent);
        }

        .equipment-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem;
            fill: var(--color-secondary);
        }

        .equipment-item h4 {
            font-size: 1.1rem;
            color: var(--color-primary);
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .equipment-item p {
            font-size: 0.9rem;
            color: var(--color-muted);
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--color-white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(26, 22, 18, 0.6));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        /* Planos Section */
        .planos-section {
            background: var(--color-light);
        }

        .planos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 2.5rem;
        }

        .plano-item {
            position: relative;
            background: var(--color-white);
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .plano-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .plano-item img {
            width: 100%;
            height: 400px;
            object-fit: contain;
            background: var(--color-white);
            padding: 1rem;
            transition: transform 0.5s ease;
        }

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

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #lightbox-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-counter {
            margin-top: 1rem;
            color: var(--color-white);
            font-size: 1rem;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--color-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .lightbox-close:hover {
            background: var(--color-accent);
            border-color: var(--color-accent);
            transform: rotate(90deg);
        }

        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--color-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--color-accent);
            border-color: var(--color-accent);
        }

        .lightbox-prev:disabled,
        .lightbox-next:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Map Section */
        .map-section {
            background: var(--color-dark);
            padding: 6rem 3rem;
            color: var(--color-white);
        }

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

        .map-container h2 {
            font-family: var(--font-display);
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
        }

        .map-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        .map-embed {
            height: 500px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 3rem;
            background: var(--color-white);
        }

        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-container h2 {
            font-family: var(--font-display);
            font-size: 3.5rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
        }

        .contact-container > p {
            font-size: 1.2rem;
            color: var(--color-muted);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        /* Agent Card - Estilos Base */
        .agent-card {
            margin: 3rem 0;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .agent-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .agent-name {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .agent-title {
            font-size: 1.1rem;
            color: var(--color-secondary);
            margin-bottom: 0.3rem;
        }

        .agent-company {
            font-size: 1rem;
            color: var(--color-muted);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .agent-contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .agent-btn {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .agent-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .agent-btn-email {
            background: var(--color-accent);
            color: var(--color-dark);
        }

        .agent-btn-email:hover {
            background: var(--color-secondary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(184, 147, 109, 0.3);
        }

        .agent-btn-whatsapp {
            background: #25D366;
            color: white;
        }

        .agent-btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        /* Estilo 1: Minimalista Moderno - Horizontal */
        .agent-card[data-style="style1"] {
            background: var(--color-light);
            padding: 3rem;
            display: flex;
            align-items: center;
            gap: 3rem;
            text-align: left;
        }

        .agent-card[data-style="style1"] .agent-photo {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 5px solid var(--color-white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .agent-card[data-style="style1"] .agent-info {
            flex: 1;
        }

        .agent-card[data-style="style1"] .agent-contact-buttons {
            justify-content: flex-start;
        }

        /* Estilo 2: Tipo Tarjeta - Vertical Centrado */
        .agent-card[data-style="style2"] {
            background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
            padding: 3rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .agent-card[data-style="style2"] .agent-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            overflow: hidden;
            border: 6px solid var(--color-accent);
            box-shadow: 0 10px 30px rgba(184, 147, 109, 0.3);
        }

        /* Estilo 3: Corporativo Elegante - Foto Pequeña */
        .agent-card[data-style="style3"] {
            background: var(--color-white);
            border: 2px solid var(--color-light);
            padding: 2.5rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            text-align: left;
        }

        .agent-card[data-style="style3"] .agent-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--color-accent);
        }

        .agent-card[data-style="style3"] .agent-info {
            flex: 1;
        }

        .agent-card[data-style="style3"] .agent-name {
            font-size: 2.5rem;
            color: var(--color-accent);
        }

        .agent-card[data-style="style3"] .agent-contact-buttons {
            justify-content: flex-start;
        }

        /* Estilo 4: Con Foto de Fondo - Overlay */
        .agent-card[data-style="style4"] {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem;
            overflow: hidden;
        }

        .agent-card[data-style="style4"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(44, 36, 22, 0.85) 0%, rgba(26, 22, 18, 0.9) 100%);
            z-index: 1;
        }

        .agent-card[data-style="style4"] .agent-photo {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .agent-card[data-style="style4"] .agent-photo img {
            filter: blur(3px) grayscale(30%);
            opacity: 0.4;
        }

        .agent-card[data-style="style4"] .agent-info {
            position: relative;
            z-index: 2;
        }

        .agent-card[data-style="style4"] .agent-name {
            color: var(--color-white);
            font-size: 3rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .agent-card[data-style="style4"] .agent-title {
            color: var(--color-accent);
            font-size: 1.3rem;
        }

        .agent-card[data-style="style4"] .agent-company {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Email Modal */
        .email-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .email-modal.active {
            display: flex;
        }

        .email-modal-content {
            background: var(--color-white);
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 3rem;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .email-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: transparent;
            border: none;
            color: var(--color-muted);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .email-modal-close:hover {
            background: var(--color-light);
            color: var(--color-primary);
        }

        .email-modal h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 2rem;
        }

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

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid var(--color-light);
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-accent);
        }

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

        .form-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            margin-top: 2rem;
        }

        .email-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 4px;
            text-align: center;
            font-weight: 600;
            display: none;
        }

        .email-status.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .email-status.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .description-grid, .kitchen-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

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

            .about-stats {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .project-card {
                height: 500px;
            }

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

            .stats-container {
                grid-template-columns: 1fr;
            }

            .uses-grid, .equipment-grid, .gallery-grid, .planos-grid {
                grid-template-columns: 1fr;
            }

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

            .agent-card[data-style="style1"],
            .agent-card[data-style="style3"] {
                flex-direction: column;
                text-align: center;
            }

            .agent-card[data-style="style1"] .agent-contact-buttons,
            .agent-card[data-style="style3"] .agent-contact-buttons {
                justify-content: center;
            }

            .agent-contact-buttons {
                flex-direction: column;
                width: 100%;
            }

            .agent-btn {
                width: 100%;
                justify-content: center;
            }
        }
