@font-face {
    font-family: 'Qualy';
    src: url('/Assets/Main/Fonts/qualy/Qualy Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Kai';
    src: url('/Assets/Main/Fonts/bebas_kai/BebasKai.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('/Assets/Main/Fonts/Be_Vietnam_Pro/BeVietnamPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('/Assets/Main/Fonts/Be_Vietnam_Pro/BeVietnamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Be Vietnam Pro';
    src: url('/Assets/Main/Fonts/Be_Vietnam_Pro/BeVietnamPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
body {
    padding-top: 80px; /* Ajusta según la altura del header */
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
}
.card{
    background-color: #4D4D4D;
    color: #FFFFFF;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 300;
}
.barra_de_nav{
    background-color: #4D4D4D;
}
.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{
    background-color: #4D4D4D;
    color: #FFFFFF;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 300;
}
.contact_form label {
    font-weight: bold;
    color: #FAB109;
}
.contact_form input,
.contact_form select,
.contact_form textarea {
    background-color: #808183;
    color: #FFFFFF;
    padding: 0.75rem;
    border: none;
    pointer-events: auto;
    cursor:default;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #bec0c3;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    background-color: #808183;
    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: #FFFFFF;
    color: #FAB109;
    font-weight: bold;
    border-radius: 0.5rem;
}

.btn-send:hover {
    background-color: #FAB109;
    color: #FFFFFF;
}
footer{
    background-color: #4D4D4D;
}
h1, h2{
    font-family: 'Qualy', sans-serif;
    color: #FAB109;
}
p {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 300; /* Usa el peso correcto que declaraste */
}
a {
    font-family: 'Qualy', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#welcomeModal{
    backdrop-filter: blur(10px);
}
.modal-content{
    background-color: #4D4D4D;
    color: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 300;
}
@media (max-width: 600px) {
    h1, h2 {
    font-size: 1.5rem;
    }


    .navbar-nav .nav-item {
    text-align: left;
    margin-bottom: 10px;
    }

    .btn {
    font-size: 1rem;
    }
    .Logo_Solvexa {
        content: url('/Assets/Main/Icons/Solvexa/isotipo.png');
        height: 40px; /* Más pequeño si quieres */
    }
}