*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"oswald";
}

body{
    background-color:black;
}

header{
    background-color: transparenlog;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav{
    width:100%;
    height:90px;
    background:transparent;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    position:fixed;
    top:0;
    left:0;

    z-index:1000;
}

.logo{
    color:#ffb703;
    font-family: "oswald";
    font-size: 2rem;
    font-weight: 700;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    color: orange;
}

.nav-links li{
    list-style: none;
}

.nav-links img{
    width: 70px;
    height: 35px;
    filter:invert(1);

}
.nav-links img:hover{
      transform:scale(1.15);
}

#hero{
    padding-top: 2rem;
    min-height: 100vh;
    background:
    linear-gradient(
        rgba(0, 0, 0, 0.418),
        rgba(0, 0, 0, 0.637)
    ),
    url("fondo1.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    color: white;
    padding: 0 1rem;
}

#hero h1{
    max-width: 800px;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-family:"Oswald";
}

#hero p{
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button{
    padding: 12px 25px;
    border: none;
    background-color: green;
    color: rgb(34, 34, 33);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.cta-button:hover{
    background-color: lightblue;
}

#propiedades{
    padding: 5rem 2rem;
}

h2{
    text-align: center;
    color: green;
    margin-bottom: 50px;
    font-size: 50px;
    font-family:"oswald";
}

.propiedades-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.propiedades-card{
    background: black;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px green;
    transition: 0.3s;
}

.propiedades-card:hover{
    transform: translateY(-8px);
}

.propiedades-card img{
    width: 100%;
    height: 100;
    object-fit: cover;
}

.propiedades-card h3{
    padding: 1rem;
    font-family:"oswald";
    color: orange;
    font-size: 30px;
}

.precio{
    color: orange;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 1rem;
    font-family: "oswald";
}

.descripcion{
    padding: 1rem;
    color: white;
    font-family: "oswald";
    font-weight: 700px;
}

.propiedades-card button{
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 10px;
    border: none;
    background: orange;
    color: black;
    border-radius: 8px;
    cursor: pointer;
}

.propiedades-card button:hover{
    background: green;
}

#contacto{
    padding: 5rem 2rem;
    background: black;
}

#contacto h2{
    text-align: center;
    margin-bottom: 2rem;
      font-family: "oswald";
    font-weight: 700px;
}

form{
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
      font-family: "oswald";
    font-weight: 700px;
}

textarea{
    min-height: 150px;
}

form button{
    background: orange;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
      font-family: "oswald";
    font-weight: 700px;
}

form button:hover{
    background: green;
}
#ubicacion{
    padding: 4rem 2rem;
    text-align: center;
     font-family: "oswald";
    font-weight: 700px;
}

#ubicacion h2{
    margin-bottom: 1rem;
      font-family: "oswald";
    font-weight: 700px;
}
#ubicacion p{
    color: white;
      font-family: "oswald";
    font-weight: 700px;
    font-size: 20px;
}

#redes{
    text-align: center;
    padding: 4rem 2rem;
}

.social-icons{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icons img{
    width: 75px;
    height: 50px;
    transition: 0.3s;
    filter:invert(1);
}
.social-icons img:hover{
    transform: translateY(-8px);
}
.logo-container{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img{
    width: 125px;
    height: 75px;
}
.btn-acerca{
    display: inline-flexbox;
    padding: 20px 40px;
    background: orange;
    color:white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: 0.3s;
    font-family:"oswald";
}

.btn-acerca:hover{
    background: green;
}
.marquesina {
    width:100%;
    padding:18px 0;

    background:green;

    color:white;

    font-size:35px;
}

.marquesina span {
    padding-left: 100%;
    animation: mover 12s linear infinite;
}

@keyframes mover {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
marquee{
    font-family: "oswald";
    color:white;
}
