.navbar-custom {
    background-color: #2f36e9;
    padding: 10px 0;
    width: 100%;
    z-index: 10;
    transition: top 0.3s;
    display: block;
    position: relative;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 2px -2px gray;
    width: 100%;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav h4 {
    margin: 0 10px;
    font-size: 18px
}

.navbar-nav a {
    font-weight: 500;
    text-decoration: none;
    color: black;
}

.navbar-nav a:hover {
    color: white;
}

.galeria_title {
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
    color: #333;
}

.contenedor-galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
    width: 85%;
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.galeria {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 30px;
}

.contenedor-imagen {
    width: 300px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contenedor-imagen img {
    .contenedor-imagen img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: cover;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partners_container {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    margin: 40px auto;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partners_title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners_items_container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.partners_item {
    width: 160px;
    height: 160px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.partners_item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partners_item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    z-index: 1000; 
}

.whatsapp-button {
    background-color: #25D366; 
    border-radius: 50%; 
    padding: 10px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-logo {
    width: 50px; 
    height: 50px; 
}


.contact-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}


.contact-form-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}


.contact-form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.contact-form-input, .contact-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.contact-form-textarea {
    height: 150px;
    resize: none;
}

.contact-form-input:focus, .contact-form-textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.contact-form-button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.contact-form-button:hover {
    background-color: #0056b3;
}

.contact-form-input:invalid, .contact-form-textarea:invalid {
    border-color: #e74c3c;
}

.contact-form-input:valid, .contact-form-textarea:valid {
    border-color: #2ecc71;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }
}
