/* Estilos específicos para la página de propiedad destacada */

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



/* Contenido principal de la propiedad */
.propiedad-destacada {
    padding: 40px 0;
}

.propiedad-header {
    text-align: center;
    margin-bottom: 30px;
}

.propiedad-header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #0056b3;
}

.propiedad-subtitulo {
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

.propiedad-info-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.precio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.moneda {
    font-size: 1.2rem;
    color: #666;
}

.valor {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0056b3;
}

.operacion {
    background-color: #0056b3;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.caracteristicas {
    display: flex;
    gap: 30px;
}

.caracteristica {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caracteristica .titulo {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.caracteristica .valor {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.agentes {
    text-align: center;
    margin-bottom: 30px;
}

.agentes h3 {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.3rem;
    color: #0056b3;
}

.descripcion {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.descripcion h2 {
    color: #0056b3;
    margin-top: 0;
}

.descripcion p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.contacto {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contacto h3 {
    color: #0056b3;
    margin-top: 0;
}

.contacto ul {
    list-style-type: none;
    padding: 0;
}

.contacto li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.formulario-contacto {
    margin-top: 20px;
}

.campo {
    margin-bottom: 15px;
}

.campo label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.campo input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-contacto {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.btn-contacto:hover {
    background-color: #004494;
}

/* Footer */
#pie {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

#pie .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul ul {
    margin-left: 15px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.llamar {
    margin-bottom: 20px;
}

.llamar a {
    color: #fff;
    font-size: 1.2rem;
}

.redespie {
    display: flex;
    list-style: none;
    padding: 0;
}

.redespie li {
    margin-right: 15px;
}

.redespie a {
    color: #fff;
    font-size: 1.5rem;
}

/* Copyright */
#copy {
    background-color: var(--rojo);
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

#copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.prov {
    text-align: center;
}

.prov a {
    color: white;
    text-decoration: none;
}

/* WhatsApp flotante */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-whatsapp {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    
    .propiedad-info-principal {
        flex-direction: column;
        text-align: center;
    }
    
    .precio {
        margin-bottom: 20px;
        align-items: center;
    }
    
    .caracteristicas {
        justify-content: center;
    }
    
    #pie .container {
        flex-direction: column;
    }
    
    #copy .container {
        flex-direction: column;
        text-align: center;
    }
    
    .prov {
        margin-top: 15px;
    }
}

.btn-agente {
    background-color: #0056b3;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-size: 1.3rem;
}
.btn-agente:hover {
    background-color: #ff0101;
}
