*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#0F0F0F;
    color:white;
    font-family:'Poppins',sans-serif;

}

.navbar{

    width:90%;
    margin:auto;

    display:flex;
    align-items:center;

    padding:35px 0;

}

.logo{
    margin-right:auto;
}

.logo img{

    width:120px;

}

.menu{

    display:flex;
    list-style:none;
    gap:45px;

    margin-right:130px;

}


.menu a{

    color:#FFFFFF;
    text-decoration:none;
    font-size:22px;
    font-weight:500;
    transition:0.3s;

}
.menu a:hover{

    color:#C9A14A;

}


.hero{

    min-height:55vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background-image:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
        url("../img/hero/hero.png");

    background-size:cover;
    background-position:center;

}

.hero-content h1{

    font-family:'Playfair Display',serif;

    font-size:60px;

    color:#C9A14A;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    margin-bottom:35px;

}

button{

    background:#C9A14A;

    color:#111;

    border:none;

    padding:16px 34px;

    border-radius:10px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}
button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(201,161,74,.35);

}

.destacadas{

    width:90%;
    margin:80px auto;

}

.destacadas h2{

    text-align:center;
    margin-bottom:40px;
    font-family:'Playfair Display',serif;
    color:#C9A14A;
    font-size:42px;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;

}

.card{

    background:#1b1b1b;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    position: relative;

}

.card:hover{

    transform:translateY(-8px);

}

.card img{

    width:100%;
    display:block;

}

.contenido{

    padding:20px;

}

.precio{

    color:#C9A14A;
    font-size:22px;
    font-weight:600;
    margin:10px 0;

}

.card button{

    margin-top:20px;
    width:100%;

}
.buscador{

    margin-top:40px;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;

    flex-wrap:wrap;

}

.buscador select,
.buscador input{

    padding:15px;

    border:none;

    border-radius:8px;

    font-size:16px;

    min-width:220px;

}

.buscador button{

    padding:15px 35px;

    border-radius:8px;

}
.hero-content{

    width:min(900px,90%);

}
.info-propiedad{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:20px;
    margin-bottom:25px;

    color:#DDD;
    font-size:15px;

}

.info-propiedad span{

    display:flex;
    align-items:center;
    gap:8px;

}

.info-propiedad i{

    color:#C9A14A;
    font-size:15px;
    width:18px;
    text-align:center;

}

.info-propiedad i{

    color:#C9A14A;
}
.info-propiedad{

    display:flex;
    justify-content:space-between;

    margin-top:18px;

    margin-bottom:20px;

    color:#d8d8d8;

    font-size:15px;

    flex-wrap:wrap;

    gap:10px;

}

.info-propiedad span{

    display:flex;
    align-items:center;
    gap:5px;

}
.ubicacion{

    color:#d6d6d6;
    margin:12px 0 18px;

}

.ubicacion i{

    color:#C9A14A;
    margin-right:8px;

}
.operacion{

    position:absolute;

    top:15px;
    left:15px;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    color:white;

    z-index:10;

    letter-spacing:1px;

    text-transform:uppercase;

}

.venta{

    background:#1f9d55;

}

.alquiler{

    background:#2563eb;

}
.badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

    text-transform:uppercase;

    letter-spacing:1px;

}

.venta{

    background:#C9A14A;
    color:#111;

}

.alquiler{

    background:#2D6CDF;
    color:white;

}
.sin-resultados{

    grid-column:1/-1;

    text-align:center;

    padding:60px 20px;

    background:#1b1b1b;

    border-radius:15px;

}

.sin-resultados h3{

    color:#C9A14A;

    font-size:30px;

    margin-bottom:15px;

}

.sin-resultados p{

    color:#ccc;

    font-size:18px;

}
.detalle-propiedad{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.galeria-detalle{
    background:#111;
    border-radius:18px;
    padding:20px;
}

#imagen-principal-detalle{
    width:100%;
    max-height:620px;
    object-fit:contain;
    border-radius:14px;
    background:#000;
}

.miniaturas{
    display:flex;
    gap:12px;
    margin-top:16px;
    overflow-x:auto;
}

.miniaturas img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    opacity:.6;
    border:2px solid transparent;
}

.miniaturas img.activa{
    opacity:1;
    border-color:#d4af37;
}

.info-detalle{
    margin-top:35px;
    background:#181818;
    color:white;
    border-radius:18px;
    padding:35px;
}

.info-detalle h1{
    font-size:36px;
    margin-bottom:10px;
}

.info-detalle h2{
    color:#d4af37;
    font-size:32px;
    margin-bottom:20px;
}

.ubicacion-detalle{
    font-size:18px;
    margin-bottom:25px;
}

.caracteristicas-detalle{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:30px;
}

.caracteristicas-detalle span{
    background:#222;
    padding:12px 16px;
    border-radius:12px;
}

.descripcion-detalle{
    margin-bottom:30px;
    line-height:1.7;
}

.btn-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:16px 26px;
    border-radius:12px;
    font-weight:700;
}
.asesor-card{
    margin-top:30px;
    background:#222;
    padding:25px;
    border-radius:16px;
}

.asesor-card h3{
    margin-bottom:12px;
    color:#d4af37;
}

.asesor-nombre{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}
.asesor-card{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin-top:30px;
    background:#222;
    padding:25px;
    border-radius:16px;
    border:1px solid rgba(212,175,55,.25);
}

.asesor-card h3{
    margin-bottom:8px;
    color:#d4af37;
}

.asesor-nombre{
    font-size:22px;
    font-weight:700;
}

.asesor-card p{
    margin:0;
}

.btn-whatsapp{
    width:max-content;
}
.consulta-card{
    margin-top:30px;
    background:#222;
    padding:25px;
    border-radius:16px;
    border:1px solid rgba(212,175,55,.25);
}

.consulta-card h3{
    color:#d4af37;
    margin-bottom:8px;
}

.consulta-card p{
    margin-bottom:20px;
}

.consulta-card textarea{
    min-height:120px;
}
.consulta-card .form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.consulta-card input,
.consulta-card textarea{
    width:100%;
    padding:14px;
    border:1px solid #444;
    border-radius:10px;
    background:#111;
    color:white;
    font-family:inherit;
    font-size:15px;
}

.consulta-card textarea{
    grid-column:1/-1;
    min-height:130px;
    resize:vertical;
}

.consulta-card .campo-full{
    grid-column:1/-1;
}

.consulta-card .btn-principal{
    margin-top:18px;
}

.consulta-card input::placeholder,
.consulta-card textarea::placeholder{
    color:#aaa;
}
.contacto-web {
    padding: 80px 8%;
    background: #111;
    color: #fff;
}

.contacto-web h2 {
    color: #d8b135;
    font-size: 42px;
    text-align: center;
    margin-bottom: 12px;
}

.contacto-subtitulo {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #ddd;
}

.asesores-web-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.asesor-web-card {
    background: #1b1b1b;
    border: 1px solid rgba(216, 177, 53, 0.35);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}

.asesor-web-card h3 {
    color: #d8b135;
    margin-bottom: 10px;
    font-size: 24px;
}

.asesor-web-card p {
    margin: 8px 0;
    color: #eee;
}

.asesor-web-card a {
    display: inline-block;
    margin-top: 16px;
    background: #d8b135;
    color: #000;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}
.destacadas {
    padding: 80px 8%;
    background: #111;
    color: #fff;
}

.destacadas h2 {
    color: #d8b135;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.propiedad-web-card {
    background: #1b1b1b;
    border: 1px solid rgba(216, 177, 53, 0.35);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    color: #fff;
    transition: 0.25s ease;
}

.propiedad-web-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 177, 53, 0.75);
}

.propiedad-web-tipo {
    display: inline-block;
    background: rgba(216, 177, 53, 0.14);
    color: #d8b135;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.propiedad-web-card h3 {
    color: #d8b135;
    margin-bottom: 10px;
    font-size: 24px;
}

.propiedad-web-ubicacion {
    color: #eee;
    margin-bottom: 14px;
    font-size: 15px;
}

.propiedad-web-ubicacion i {
    color: #d8b135;
    margin-right: 6px;
}

.propiedad-web-precio {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 16px 0;
}

.propiedad-web-datos {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.propiedad-web-datos span {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 10px;
    color: #ddd;
    font-size: 14px;
}

.propiedad-web-btn {
    display: inline-block;
    margin-top: 8px;
    background: #d8b135;
    color: #000;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.propiedad-web-btn:hover {
    background: #caa42f;
}
.contacto-redes {
    margin-top: 35px;
    text-align: center;
}

.contacto-redes h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #111;
}

.contacto-redes-botones {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-red-social:hover {
    background: #c9a24a;
    color: #111;
}
