body {
    padding-top: 80px; /* Ajusta según la altura del header */
}
.barra_de_nav{
    width: calc(100% - 2rem);
    background-color: #4D4D4D;
}
.contact_form {
    backdrop-filter: blur(10px);
    background-color: #4D4D4D;
    border-radius: 1rem;
    padding: 2rem;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.form-control.valid {
    border: 2px solid #28a745;
    background-image: url('/Assets/Main/Icons/Bootstrap/check-circle.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    color: #28a745;
    transition: color 0.3s ease-in-out;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
    100% { transform: translateX(0); }
}
.form-control.invalid {
    border: 2px solid #dc3545;
    background-image: url('/Assets/Main/Icons/Bootstrap/exclamation-circle.svg');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    color: #dc3545;
    transition: color 0.3s ease-in-out;
    animation: shake 0.1s ease;
    animation-iteration-count: 8;
    animation-fill-mode: forwards;
    animation-delay: 3s;
    animation-timing-function: ease-in-out;
}
.contact_form label {
    font-weight: bold;
    color: #54A1F5;
}
.contact_form input,
.contact_form select {
    background-color: #6e6e6e;
    color: #FFFFFF;
    padding: 0.75rem;
    border: none;
}

.contact_form input::placeholder {
    color: #A9ABAE;
}

.contact_form input:focus,
.contact_form select:focus {
    background-color: #393939;
    color: #FFFFFF;
    box-shadow: none;
    outline: none;
    border: 1px solid #A9ABAE;
    border-radius: 0.5rem;
    transition: border 1s ease-in-out, background 1s ease-in-out;
}

.btn-send {
    background-color: #54A1F5;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 0.5rem;
}

.btn-send:hover {
    background-color: #ffffff;
    color: #4D4D4D;
}

.Services-Start article{
    background-color: #4D4D4D;
    border-radius: 1rem;
    padding: 2rem;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.Services-Start-2{
    background-color: #4D4D4D;
    border-radius: 1rem;
    padding: 2rem;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.card{
    background-color: #54A1F5;
    border-radius: 1rem;
    padding: 2rem;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.btn-move {
    background-color: #54A1F5;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 0.5rem;
}
.btn-move:hover {
    background-color: #ffffff;
    color: #4D4D4D;
}
.btn-move2 {
    background-color: #54A1F5;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 0.5rem;
}
.btn-move2:hover {
    background-color: #FFFFFF;
    color: #4D4D4D;
}
#carousel3 {
    position: relative;
    z-index: 1;
}

a{
    text-decoration: none;
    color: white;
}
footer{
    background-color: #4D4D4D;
}
.card-servicio {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background-color: #4D4D4D;
    color: #fff;
}
.card-servicio:hover, .card-servicio:focus {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(84,161,245,0.25);
    background-color: #54A1F5;
    color: #fff;
}


