.top-bar {
            background: #1E74F7;
            color: white;
            padding: 20px 0;
        }
.top-bar .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            text-align: center;
        }
.navbar-container {
            width: 60%;
            max-width: 100%;
            margin: auto;
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }
.background-video {
            position: relative;
            height: 65vh;
            overflow: hidden;
        }
.background-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.background-img {
            position: relative;
            height: 35vh;
            overflow: hidden;
        }
.background-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
.overlay-text {
            position: absolute;
            top: 40%;
            left: 35%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            text-align: left;
            z-index: 5;
        }
footer {
            background: #333333;
            color: white;
            padding: 20px 0;
        }
.footer-column {
            padding: 10px;
        }
.floating-whatsapp, .floating-top {
            position: fixed;
            bottom: 20px;
            padding: 10px 15px;
            border-radius: 50%;
            text-align: center;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }
.floating-whatsapp {
            left: 20px;
            background: #25d366;
        }
.floating-top {
            right: 20px;
            background: #007bff;
            display: none;
        }
.parrafo{
            text-align: justify;
        }
.gallery img {
            width: 75%;
            height: auto;
            border-radius: 8px;
            transition: transform 0.3s;
        }
.gallery img:hover {
            transform: scale(1.05);
        }
@media (max-width: 768px){
    .navbar-container{
                    width: 100%;
                    top: 0px;
                }
    .overlay-text{
        top: 50%;
        left: 40%;
        font-size: 1.2rem;
    }
    .social{
        text-align: center;
    }
}