/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    align-items: center;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #333;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: color 0.3s;

}
a:hover{

    border-bottom: solid 4px #007bff;
    transition: .2s;

}

.nav a:hover {
    color: #007bff;
}

/* Botones */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Secciones generales */
section {
    padding: 5rem 5%;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222;
}

/* Sección Hero */
.hero {
    background: url('https://via.placeholder.com/1920x800/007bff/fff?text=Imagen+de+Fondo+del+Fraccionamiento') no-repeat center center/cover;
    color: #fff;
    padding: 10rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Tarjetas de Prototipos */
.prototipos-container, .galeria-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    margin: 1rem 0;
}

.card p {
    padding: 0 1rem;
    color: #666;
}

.btn-card {
    display: block;
    background-color: #333;
    color: #fff;
    padding: 0.75rem 0;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
}

.btn-card:hover {
    background-color: #555;
}

/* Galería */
.galeria-container img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Contacto */
.contacto {
    background-color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    height: 120px;
}

.contact-form .btn {
    border: none;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: 30% 70% ;
}

.hero{
    background-image: url(files/pexels-thelazyartist-1471606.jpg);
}


.amenidades{
    background-image: url(files/pool.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.amenidades-container{
    background-color: white;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

#enviado{
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: rgb(146, 253, 146, .5);
    border-radius: 10px;
}


