/* Importa la fuente Gotham (debes ajustar las rutas a donde tienes los archivos de la fuente) */
@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Bold.woff2') format('woff2'),
         url('fonts/Gotham-Bold.woff') format('woff'),
         url('fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Regular.woff2') format('woff2'),
         url('fonts/Gotham-Regular.woff') format('woff'),
         url('fonts/Gotham-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Aplica Gotham a todo el cuerpo del documento */
body {
    font-family: 'Gotham', sans-serif;
}

/* Reseteo de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo del Encabezado con Imagen de Fondo */
.hero {
    background: url('fondo1.jpeg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Estilo de la Sección de Introducción y Formulario */
.intro-form {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.intro {
    flex: 1;
    margin-right: 2rem;
}

.intro img {
    width: 150px;
    margin-bottom: 1rem;
}

.intro h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1rem;
    line-height: 1.5;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Estilo de la Galería de Propiedades */
.properties-gallery {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.property {
    flex: 1;
    margin: 0 0.9rem;
    max-width: 400px; /* Ajusta el ancho máximo de cada imagen */
}

.property img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* Estilo de los Beneficios Destacados */
.benefits {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background-color: #f8f8f8;
}

.benefit {
    flex: 1;
    text-align: center;
    margin: 0 0.5rem;
}

.benefit .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.benefit p {
    font-size: 1rem;
    color: #555;
}

/* Estilo del Pie de Página */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
    font-size: 0.9rem;
}
