  :root {
        /* COLOR CORPORATIVO */
        --color-primary: #0d1b2a;         /* Azul oscuro */
        --color-primary-light: #1b263b;   /* Hover */
        --color-secondary: #415a77;       /* Azul grisáceo */

        /* TEXTOS */
        --color-text: #111111;
        --color-muted: #6d6d6d;

        /* FONDOS */
        --color-soft: #f7f5f0;            /* crema claro */
        --color-soft-2: #f0ede7;          /* crema suave */
        --color-soft-3: #ffffff;          /* blanco puro */

        --radius-xl: 22px;
        --shadow-soft: 0 10px 30px rgba(0,0,0,0.10);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: 'Inter', sans-serif;
        /* Fondo radial blanco-crema elegante */
        background: radial-gradient(circle at top, 
                                    var(--color-soft-3) 0%, 
                                    var(--color-soft) 55%, 
                                    var(--color-soft-2) 100%);
        color: var(--color-text);
        line-height: 1.5;
    }

    a { text-decoration: none; color: inherit; }

    .container {
        width: 100%;
        max-width: 1250px;
        margin: 0 auto;
        padding: 0 16px;
    }

    /* ===================================
   BARRA SUPERIOR (EMPRESAS ASOCIADAS)
   =================================== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 6px 0;
    font-size: 13px;
}

.top-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-container span {
    opacity: 0.85;
}

.btn-pago {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #0f0f0f, #1b1b1b);
    border-radius: 40px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35),
                inset 0 1px 2px rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all .25s ease;
}

/* Hover: Efecto Apple */
.btn-pago:hover {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* Click */
.btn-pago:active {
    transform: scale(.97);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ================================
   HEADER ESTILO OIKOS PREMIUM
   ================================ */
.header-card {
    background: #ffffff;
    border-bottom: 1px solid #f1f1f1;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO EN CARD FLOTANTE */
.logo-card {
    background: transparent;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    border: 1px solid #ececec;
}

.logo-card img {
    height: 55px;
}

/* CINTA NEGRA ESTILO OIKOS */
.header-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: #000;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a {
    color: #222;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #000;
    transform: translateY(-1px);
}

/* BOTONES CTA */
.nav-cta {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.btn-flotante {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    background: #000;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s ease;

    display: flex;
    align-items: center;
    gap: 8px;
}

/* Animación SOLO del emoji */
.btn-flotante .emoji {
    display: inline-block;
    animation: pulso 1.8s infinite ease-in-out;
}

@keyframes pulso {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}


    /* ============================
   HERO FULLSCREEN + EFECTO APPLE
   ============================ */

#inicio {
    position: relative;
    width: 100%;
    height: 100vh;           /* pantalla completa */
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    transition: height 0.6s ease;
}

/* Imagen de fondo hero */
#inicio::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/fondo_hero.jpg");  /* TU IMAGEN */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;  
      animation: kenburns 18s ease-in-out infinite alternate;

}

/* Overlay para contraste */
#inicio::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.30),
        rgba(0,0,0,0.55)
    );
    z-index: -1;
}

/* Contenido */
.hero-content {
    max-width: 760px;
    padding: 20px;
    animation: fadeIn 1.2s ease;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    color: #ffffff;
    margin-top: -100px;
}

.hero-content span {
    color: #dce2eb;
}

.hero-content p {
    color: #f1f1f1;
    font-size: 19px;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Efecto aparecer suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   NAV SCROLL - AL BAJAR CAMBIA
   ============================ */

header {
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(255,255,255,0.92);
    box-shadow: 0px 4px 16px rgba(0,0,0,0.08);
}

/* HERO SHRINK EFECTO APPLE */
.hero-small {
    height: 55vh !important;  /* se encoge elegante */
}


/* ============================
   Traemos de regreso tu fondo crema
   ============================ */

body {
    background: radial-gradient(circle at top, 
                                var(--color-soft-3) 0%, 
                                var(--color-soft) 55%, 
                                var(--color-soft-2) 100%);
}
/* ============================
   ANIMACIÓN KEN BURNS PREMIUM
   ============================ */

#inicio::before {
    animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(0, -10px); /* zoom suave + ligero desplazamiento */
    }
}


    .btn-primary {
        padding: 10px 22px;
        background: var(--color-primary);
        border: none;
        border-radius: 999px;
        color: white;
        font-weight: 600;
        font-size: 15px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(13,27,42,0.35);
    }
    .btn-primary:hover {
        background: var(--color-primary-light);
    }

    .btn-secondary {
        padding: 10px 22px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid #ddd;
        font-weight: 600;
        color: var(--color-text);
    }

    .hero-actions { 
        display: flex; 
        gap: 12px; 
    }

    .hero-image {
        width: 100%;
        background: #ececec;
        height: 360px;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-muted);
    }

    /* SECCIONES */
    .section-title {
        font-size: 24px;
        font-weight: 700;
        margin: 40px 0 15px;
        color: var(--color-primary);
    }

    /* CARRUSEL PROPIEDADES */
    .swiper { padding-bottom: 60px; }

    .property-card {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 18px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.07);
        overflow: hidden;
        cursor: pointer;
    }

    .property-img {
        height: 180px;
        background: #dcdcdc;
    }
    .property-body { padding: 14px; }
    .property-location { color: var(--color-muted); font-size: 13px; }
    .property-title { margin-top: 6px; font-size: 16px; font-weight: 600; }
    .property-price {
        color: var(--color-primary);
        font-weight: 700;
        font-size: 17px;
        margin-top: 8px;
    }

    /* QUIENES SOMOS */
    .about {
        background: #ffffff;
        padding: 40px 0;
        border-top: 1px solid #eaeaea;
    }
    .about p { 
        max-width: 600px; 
        color: var(--color-muted); 
    }

    /* CONTACTO */
    .cta-contact {
        margin: 40px 0;
        background: var(--color-soft);
        border: 1px solid #ddd;
        padding: 22px;
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

   .footer-vanno {
    background: #0d0d0f;
    color: #e5e5e5;
    padding: 70px 40px 40px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #bcbcbc;
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    font-size: 22px;
    background: #1b1b1e;
    padding: 10px;
    border-radius: 12px;
    display: inline-flex;
    transition: 0.2s ease;
}

.social-icon:hover {
    background: #10c061;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bcbcbc;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-links a:hover {
    color: #10c061;
}

.footer-form {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-input {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #1b1b1e;
    color: #fff;
    flex: 1;
}

.footer-btn {
    padding: 12px 18px;
    background: #10c061;
    color: #fff;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.footer-btn:hover {
    background: #0ea74f;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #1f1f22;
    margin-top: 50px;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 0; /* ← Aquí lo pegamos TOTALMENTE a la derecha */
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;

    text-decoration: none;
}

/* ETIQUETA VERDE */
.whatsapp-label {
    background: #25d366;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 60px 0 0 60px; /* Sin borde a la derecha */
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

/* ICONO */
.whatsapp-float img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    padding: 10px;
    margin-right: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform .3s ease;
}


    @media(max-width:900px){
        .hero { grid-template-columns: 1fr; }
    }


    .hero-search-box {
    text-align: left;
    max-width: 900px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

/* Caja de búsqueda */
.search-bar {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.search-select {
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 1rem;
    border-right: 1px solid #eee;
    background: #fff;
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-btn {
    background: #000;
    color: #fff;
    padding: 0 26px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}








.nosotros-section {
    padding: 100px 20px;
    background: #f7f6f4;
    display: flex;
    justify-content: center;
}

.nosotros-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.nosotros-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.nosotros-intro {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.nosotros-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
    transition: 0.25s ease;
}

.nosotros-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

.nosotros-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.nosotros-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.nosotros-card p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
}

















.contacto-vanno {
    padding: 100px 20px;
    background: #f7f7f5;
    display: flex;
    justify-content: center;
}

.contacto-container {
    max-width: 900px;
    width: 100%;
}

.contacto-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.contacto-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
}

.contacto-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    background: #fff;
    transition: .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #10c061;
    box-shadow: 0 0 4px rgba(16,192,97,.3);
}

.btn-enviar {
    background: #10c061;
    border: none;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: .2s ease;
}

.btn-enviar:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(16,192,97,.35);
}
