
.menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu__item {
    position: relative;
    margin: 0 15px;
}

.menu__link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #004d40;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.4s ease;
}

.menu__link:hover {
    background-color: #0a1f44;
    color: white;
    border-radius: 5px;
}

/* Submenú */
.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 0;
    list-style: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.menu__item:hover .submenu {
    display: block;
}

.submenu li {
    padding: 10px 20px;
}

.submenu a {
    color: #0a1f44;
    text-decoration: none;
    font-weight: bold;
}

.submenu a:hover {
    background-color: #0a1f44;
    color: white;
}

.intro {
    text-align: center;
    margin-bottom: 30px;
}

.intro h2 {
    color: #000881;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2em;
    line-height: 1.6;
}
.job-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.job-card .card-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.job-card .card-text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-enviar {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #004d40;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-enviar:hover {
    background-color: #00332e;
}



/* Estilo del botón de WhatsApp */
/* Transiciones suaves para el acordeón */
.collapse {
    transition: height 0.5s ease;
}

/* Efecto de expansión en los campos del formulario */
.form-control:focus {
    border-color: #004d40;
    box-shadow: 0 0 10px rgba(0, 77, 64, 0.5);
    transform: scale(1.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Botón de WhatsApp con animación de rebote */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px #999;
    animation: bounce 2s infinite;
    z-index: 1000;
}

.whatsapp-float i {
    margin-top: 16px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Efecto Hover para el Botón de Aplicar */
.btn-enviar {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-enviar:hover {
    background-color: #00332e;
    transform: scale(1.05);
}

.custom-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 38px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-img:hover {
    opacity: 0.7; /* Reduce la opacidad al 70% al hacer hover */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
