body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 76px;
    background: rgba(0, 0, 0, 0.782);
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 0px;
}

:root {
    --slider-gap: clamp(10px, 2.5vw, 25px);
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 40vh;
    max-height: 350px;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    gap: var(--slider-gap);
    transition: transform 0.5s ease;
    will-change: transform;
    height: 100%;
}

.slide {
    flex-shrink: 0;
    position: relative;
    width: 40vh;
    max-width: 350px;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.slide.active img {
    transform: scale(1);
    filter: brightness(1.1);
}

.slide:not(.active) img {
    transform: scale(0.85);
    filter: brightness(0.6);
}

@media (min-width: 768px) {
    .slider-container {
        height: 60vh;
        max-height: 550px;
    }

    .slide {
        width: 60vh;
        max-width: 550px;
    }
}

#slider-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #34b1ff;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    animation: spinRS 1s linear infinite;
}

@keyframes spinRS {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-text {
    color: white;
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
}

.navbar {
    background: linear-gradient(to left, #013bfa, #34b1ff) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.nav-link.has-text-white {
    color: white !important;
}

.navbar-toggler {
    margin-left: auto;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, #34b1ff, #013bfa);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.3s ease;
    padding: 0;
}

#scrollTopBtn:hover {
    transform: scale(1.1);
}

@media (max-width: 576px) {
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 20px;
        right: 12px;
    }
}

.text-center {
    margin-top: 50px;
    margin-bottom: 50px;
}
    
.destacable {
    color: #36b4fd;
}

.dynamic-text {
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    animation: blink-caret 0.7s step-end infinite;
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.email-link {
    color: white !important;
    background-color: rgba(0,0,0,0.5);
    padding: 3px 8px;
    border-radius: 5px;
    text-decoration: none;
}

.email-link:hover {
    background-color: rgba(0,0,0,0.7);
}

footer {
    background: linear-gradient(to left, #013bfa, #34b1ff); 
    margin-top: auto;
    padding: 40px 20px;
    color: white;
}

footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

footer .footer-section {
    flex: 1;
    min-width: 250px;
}

footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #ffffff;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .contact-form {
    max-width: 350px;            
    margin: 20px auto;           
    padding: 15px;               
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

footer .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

footer .contact-form input,
    footer .contact-form textarea {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 14px;
        outline: none;
        transition: border-color 0.3s ease;
    }

footer .contact-form input:focus,
    footer .contact-form textarea:focus {
        border-color: #2caeff;
    }

footer .contact-form input::placeholder,
    footer .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

footer .contact-form button {
    width: 100%;
    background-color: #2caeff;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer .contact-form button:hover {
    background-color: #011efa;
}

footer .social-icons {
    display: flex;
    gap: 15px;
}

footer .social-icons a img {
    width: 40px;
    height: 40px;
}
