/*=============================
            HERO
==============================*/

.hero{

    padding:170px 0 120px;

    background:linear-gradient(135deg,#0B1F3A 0%,#184E77 100%);

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(246,139,31,.20);

    border-radius:50%;

    right:120px;

    top:120px;

    filter:blur(100px);

    z-index:0;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-subtitulo{

    color:#F68B1F;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero-titulo{

    font-size:3.5rem;

    font-weight:800;

    color:#ffffff;

    margin:20px 0;

    line-height:1.2;

}

.hero-texto{

    font-size:1.15rem;

    color:rgba(255,255,255,.85);

    margin-bottom:35px;

}

.hero-botones{

    display:flex;

    gap:15px;

    margin-bottom:40px;

}

.hero-info{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    font-weight:600;

    color:#ffffff;

}

.hero-info i{

    color:#F68B1F;

    margin-right:8px;

}

.hero-img{

    width:100%;

    max-width:700px;

    border-radius:24px;

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    animation:float 5s ease-in-out infinite;

    transition:.4s;

}

.hero-img:hover{

    transform:scale(1.02);

}

@keyframes float{

    0%{transform:translateY(0);}

    50%{transform:translateY(-12px);}

    100%{transform:translateY(0);}

}


/*=============================
        EMPRESAS
==============================*/

.empresas{

    padding:100px 0;

    background:#ffffff;

}

.titulo-seccion{

    color:#F68B1F;

    text-transform:uppercase;

    font-size:14px;

    letter-spacing:3px;

    font-weight:700;

}

.titulo-seccion::before{

    content:"";

    display:block;

    width:60px;

    height:3px;

    background:#F68B1F;

    margin:auto auto 15px;

}

.empresas h2{

    color:#0B1F3A;

    font-size:2.4rem;

    margin:15px 0;

    font-weight:700;

}

.empresas p{

    color:#666;

}

.empresa-card{

    background:white;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    height:100%;

}

.empresa-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.empresa-icono{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#0B1F3A;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:36px;

    margin-bottom:25px;

}

.empresa-card:hover .empresa-icono{

    background:#F68B1F;

    color:#0B1F3A;

}

.empresa-card h4{

    color:#0B1F3A;

    margin-bottom:15px;

}

.empresa-link{

    text-decoration:none;

    color:#0B1F3A;

    font-weight:700;

}

.empresa-link:hover{

    color:#F68B1F;

}


/*=============================
        SERVICIOS
==============================*/

.servicios{

    padding:100px 0;

    background:#F8FAFC;

}

.servicio-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.servicio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.servicio-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.servicio-body{

    padding:25px;

}

.servicio-body h4{

    color:#0B1F3A;

    margin-bottom:15px;

}

.servicio-body p{

    color:#666;

    margin-bottom:25px;

}

/*=============================
        BENEFICIOS
==============================*/

.beneficios{

    padding:100px 0;

    background:#0B1F3A;

}

.beneficio-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    border:none;

    overflow:hidden;

}

.beneficio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.beneficio-icono{

    width:90px;

    height:90px;

    background:#0B1F3A;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    font-size:34px;

    margin-bottom:25px;

    transition:.35s;

}

.beneficio-card:hover .beneficio-icono{

    background:#F68B1F;

    color:#0B1F3A;

}

.beneficio-card h4{

    color:#0B1F3A;

    margin-bottom:15px;

    font-weight:700;

}

.beneficio-card p{

    color:#666;

    margin-bottom:0;

}

.beneficios .titulo-seccion{

    color:#F68B1F;

}

.beneficios h2{

    color:#ffffff;

}

.beneficios .container > .text-center p{

    color:rgba(255,255,255,.80);

}

/*==================================
    PROPIEDADES DESTACADAS
==================================*/

.propiedades{

    padding:100px 0;

    background:#ffffff;

}

.propiedad-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    height:100%;

    display:flex;

    flex-direction:column;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.propiedad-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.propiedad-card:hover .propiedad-imagen img{

    transform:scale(1.08);

}

.propiedad-imagen{

    position:relative;

    overflow:hidden;

}

.propiedad-imagen img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.5s;

}

.property-content{

    padding:25px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.property-content .btn{

    margin-top:auto;

}

.propiedades-filtro{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.propiedades-filtro button{

    background:white;

    border:2px solid #F68B1F;

    color:#F68B1F;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.propiedades-filtro button:hover{

    background:#F68B1F;

    color:white;

}

.propiedades-filtro .activo{

    background:#F68B1F;

    color:white;

}

.propiedad-body{

    padding:25px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.propiedad-body h3{

    color:#F68B1F;

    font-size:32px;

    font-weight:800;

    margin:15px 0;

}

.propiedad-body .btn{

    margin-top:auto;

}

.estado{

    position:absolute;

    top:18px;

    left:18px;

    background:#F68B1F;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 8px 20px rgba(246,139,31,.35);

}

.linea-propiedad{

    border:none;

    border-top:1px solid #E5E7EB;

    margin:20px 0;

}


/*=============================
    TESTIMONIOS
=============================*/

.testimonios{

    background:#F8FAFC;
    padding:100px 0;

}

.testimonial-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.avatar-cliente{

    width:90px;

    height:90px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #0B1F3A,
        #184E77
    );

    border:4px solid #F68B1F;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    font-weight:700;

    letter-spacing:2px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(11,31,58,.25);

}

.avatar-wrapper{

    position:relative;

    width:90px;

    margin:0 auto 25px;

}

.quote-icon{

    position:absolute;

    top:-12px;

    right:-8px;

    width:34px;

    height:34px;

    border-radius:50%;

    background:#F68B1F;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:14px;

    box-shadow:0 8px 20px rgba(246,139,31,.35);

    z-index:10;

}

.testimonial-card:hover .avatar-cliente{

    transform:scale(1.08);

    box-shadow:0 20px 45px rgba(11,31,58,.35);

}

.testimonial-card:hover .quote-icon{

    transform:rotate(12deg);

    transition:.35s;

}

.estrellas{

    color:#F68B1F;
    font-size:22px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    font-style:italic;
    line-height:1.8;

}

.testimonial-card h5{

    margin-top:20px;
    color:#0B1F3A;
    font-weight:700;

}

.testimonial-card span{

    color:#999;
    font-size:14px;

}


/*=============================
      ESTADÍSTICAS
=============================*/

.estadisticas{

    background:#0B1F3A;

    padding:90px 0;

}

.contador{

    padding:30px 20px;

    border-radius:20px;

    transition:.35s;

}

.contador:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.05);

}

.contador i{

    font-size:50px;

    color:#F68B1F;

    margin-bottom:20px;

    transition:.35s;

}

.contador:hover i{

    transform:scale(1.15);

}

.contador-numero{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:4px;

    font-size:52px;

    font-weight:800;

    color:#F68B1F;

    margin-bottom:10px;

}

.contador-numero span{

    line-height:1;

}

.contador p{

    font-size:18px;

    color:#E5E7EB;

}


/*==================================
        CTA
==================================*/

.cta-vivexa{

    background:#ffffff;

    padding:110px 0;

    position:relative;

    overflow:hidden;

}

.cta-vivexa h2{

    color:#0B1F3A;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin:20px 0;

}

.cta-vivexa p{

    color:#6B7280;

    font-size:19px;

    line-height:1.8;

}

.cta-vivexa .btn{

    background:#F68B1F;

    color:#fff;

    border:none;

    padding:18px 38px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(246,139,31,.30);

}

.cta-vivexa .btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(246,139,31,.45);

}

.cta-vivexa::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(246,139,31,.08);

    border-radius:50%;

    top:-120px;

    right:-100px;

}

.cta-vivexa::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(11,31,58,.05);

    border-radius:50%;

    bottom:-80px;

    left:-80px;

}

.cta-lista{

    list-style:none;

    padding:0;

    margin-top:30px;

}

.cta-lista li{

    margin-bottom:16px;

    font-size:18px;

    color:#374151;

}

.cta-lista i{

    color:#F68B1F;

    margin-right:10px;

}

.cta-img{

    max-width:480px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.15));

}


/*====================================
        CONTACTO
====================================*/

.contacto{

    padding:110px 0;

    background:#F8FAFC;

}

.contacto-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.info-contacto{

    background:linear-gradient(
    135deg,
    #0B1F3A,
    #184E77);

    color:white;

    padding:60px;

    height:100%;

}

.info-contacto h3{

    color:#fff;

    font-size:42px;

    font-weight:800;

    margin-bottom:15px;

}

.item-contacto{

    display:flex;

    gap:14px;

    margin-bottom:35px;

}

.item-contacto i{

    font-size:28px;

    color:#F68B1F;

}

.form-contacto{

    padding:60px;

}

.form-contacto .form-control,
.form-contacto .form-select{

    border-radius:12px;

    padding:15px;

}

.form-contacto textarea{

    resize:none;

}

.descripcion-contacto{

    color:#D1D5DB;

    font-size:17px;

    line-height:1.8;

    margin-bottom:45px;

}