@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    color: #222;
    background-color: #ffffff;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

.contacto {
    background-color: #2563EB;
}

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

.contacto a:hover {
    color: #F97316;
}

.contacto-seccion {
    background-color: #f3f4f6;
}

.navbar {
    padding: 1rem 0;
}

.nav-link {
    font-weight: 600;
    margin-left: 1rem;
}

.nav-link:hover {
    color: #F97316 !important;
}

.logo {
    width: 70px;
    margin-right: 10px;
}

.hero-banner {
    position: relative;
    background-image: url("../img/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 85vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
}

.hero-contenido {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.hero-contenido h1 {
    font-size: 4rem;
}

.hero-contenido h2 {
    margin-top: 1rem;
    font-size: 2rem;
}

.hero-contenido p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #F97316 !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #ea580c !important;
}

.servicios {
    background-color: #f8fafc;
}

.icono-servicio {
    font-size: 4rem;
    color: #2563EB;
}

.card {
    border: none !important;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.mapa iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.info-contacto p {
    margin-bottom: 1rem;
}

.info-contacto i {
    color: #2563EB;
    margin-right: 10px;
}

.redes a {
    color: #2563EB;
    font-size: 2rem;
    margin-right: 15px;
}

.redes a:hover {
    color: #F97316;
}

.footer {
    background-color: #111827;
    color: white;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-contenido h1 {
        font-size: 2.8rem;
    }

    .hero-contenido h2 {
        font-size: 1.5rem;
    }

    .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }

}
