/* Estilos Generales */
body {
    font-family: 'Sora', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0 auto;
    padding: 0;
    min-width: 900px auto;
}

/* Estilos del Header */
header {
    text-align: center;
    padding: 20px;
}

header img {
    max-width: 200px;
}

/* Estilos de la Sección Hero */
.section-1 .hero {
    position: relative;
    text-align: center;
    color: white;
}

.section-1 .hero img {
    width: 100%;
    height: auto;
}

.section-1 .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}

/* Estilos de las Tarjetas de Servicios */
.section-2 {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background-color: #000000;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
   
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background-color:  #101010;
    border: 1px solid #2887E0;
    padding: 20px;
    margin: 10px;
    width: 30%;
    text-align: center;
}

.service-card img {
    max-width: 100%;
    max-height: 200px;
}

.service-card h2 {
    color: #2887E0;
}

.service-card p {
    color: #ccc;
}

/* Estilos del Mapa */
.section-3 .map-container {
    text-align: center;
    padding: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilos del Formulario de Contacto */
.section-4 {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #050505;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-container, .search-form-container {
    background-color:  #090909;
    padding: 20px;
    border: 1px solid #090909;
    width: 45%;
}

.contact-form-container h2, .search-form-container h2 {
    text-align: center;
    color: #2887E0;
}

.contact-links {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.contact-link img {
    max-width: 70px;
    height: auto;
}

#buscar-form label, #buscar-form input {
    color: #ccc;
}

/* Estilos del Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #2887E0;
    font-size: 0.8em;
}