        /* --- RESET Y VARIABLES GLOBALES --- */
        :root {
            --color-principal: #0A2240; /* Azul Marino */
            --color-acento: #C0A062;    /* Dorado Suave */
            --color-fondo: #F4F4F4;      /* Blanco Roto */
            --color-texto: #333333;
            --color-blanco: #FFFFFF;
            --color-whatsapp: #25D366;
            --font-titulos: 'Playfair Display', serif;
            --font-texto: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-texto);
            background-color: var(--color-fondo);
            color: var(--color-texto);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: var(--font-titulos);
            color: var(--color-principal);
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--color-acento);
            margin: 10px auto 0;
        }

        section {
            padding: 80px 0;
        }

        /* --- HEADER Y NAVEGACIÓN --- */
        .header {
            background-color: var(--color-blanco);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* --- NUEVOS ESTILOS PARA EL LOGO COMPUESTO --- */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px; /* Espacio entre el ícono y el texto */
            text-decoration: none;
        }

        .logo-icon {
            height: 45px; /* Tamaño del ícono */
            width: auto;
        }

        .logo-text {
            font-family: var(--font-titulos);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--color-principal); /* Color para "Grupo" */
        }
        
        .logo-text .text-accent {
            color: var(--color-acento); /* Color para "Inmobiliario" */
        }
        /* --- FIN DE NUEVOS ESTILOS --- */


        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--color-principal);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-acento);
        }

        /* --- SECCIÓN HERO --- */
        .hero {
            background-image: linear-gradient(rgba(10, 34, 64, 0.7), rgba(10, 34, 64, 0.7)), url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            color: var(--color-blanco);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 4rem;
            color: var(--color-blanco);
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btn {
            background-color: var(--color-acento);
            color: var(--color-blanco);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: var(--font-texto);
            font-size: 1rem;
        }

        .btn:hover {
            background-color: #a88a53;
        }

        /* --- SECCIÓN PROPIEDADES --- */
        .propiedades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .propiedad-card {
            background-color: var(--color-blanco);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .propiedad-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .propiedad-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .propiedad-card-content {
            padding: 25px;
        }

        .propiedad-card h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }

        .propiedad-card-info {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
            color: var(--color-principal);
            font-weight: 600;
        }
        
        .propiedad-card-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .propiedad-card p {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-acento);
            margin-bottom: 20px;
        }

        .propiedad-card .btn {
            width: 100%;
            text-align: center;
            display: block;
        }

        /* --- SECCIÓN EQUIPO --- */
        #equipo {
            background-color: var(--color-blanco);
        }

        .equipo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .miembro-card {
            padding: 30px;
        }
        
        .miembro-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--color-acento);
            margin-bottom: 20px;
        }

        .miembro-card h3 {
            font-size: 1.5rem;
            color: var(--color-principal);
        }

        .miembro-card h4 {
            color: var(--color-acento);
            font-family: var(--font-texto);
            font-weight: 600;
            margin: 5px 0 15px;
        }

        .miembro-card p {
            line-height: 1.6;
        }

        /* --- SECCIÓN CONTACTO --- */
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--color-blanco);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--color-principal);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: var(--font-texto);
            font-size: 1rem;
        }
        
        .form-group input#propiedadInteres {
            background-color: #e9ecef;
            font-weight: bold;
        }

        .form-group textarea {
            resize: vertical;
            height: 120px;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
        }
        
        .spinner {
            display: none;
            margin-right: 10px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            width: 20px;
            height: 20px;
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
          to { transform: rotate(360deg); }
        }
        
        #confirmationMessage {
            text-align: center;
            padding: 20px;
            background-color: #eaf6ec;
            border: 1px solid #c4e4ca;
            border-radius: 5px;
            color: #2b6b3e;
            display: none; /* Oculto por defecto */
        }
        #confirmationMessage h3 { color: #2b6b3e; }
        #confirmationMessage .btn-whatsapp {
            background-color: var(--color-whatsapp);
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
            display: inline-block;
            font-weight: bold;
        }

        /* --- BOTÓN FLOTANTE DE WHATSAPP --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: var(--color-whatsapp);
            color: var(--color-blanco);
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* --- FOOTER --- */
        .footer {
            background-color: var(--color-principal);
            color: var(--color-blanco);
            text-align: center;
            padding: 40px 0;
        }

        .footer p {
            margin: 10px 0;
            font-size: 0.9rem;
        }

        .footer-credit a {
            color: var(--color-acento);
            text-decoration: none;
            font-weight: bold;
        }
        .footer-credit a:hover {
            text-decoration: underline;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Simplificado para este ejemplo. Se podría implementar un menú hamburguesa */
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 24px;
            }
            .logo-text {
                font-size: 1.4rem;
            }
        }