
.header-text  {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9); /* sombra */
}

.hero-wrapper h1 {
    font-family: 'Raleway';
    font-weight: 900;
}
.hero-wrapper p, .font-lato{
    font-family: 'Lato';
    font-weight: 900;
    font-size: 2rem;
    -webkit-text-stroke: 0.05rem rgba(0, 0, 0, 0.66);
}

a, p, li, span, div{
    font-family: 'Lato';
}

.paragraph-18 {
    font-size: 18px;
}



/* Scroll to Top Button */
.to-top-container {
    position: fixed;
    bottom: 0;
    right: 75px;
    z-index: 100000;
}

#toTop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border-radius: 6px 6px 0 0;
    height: 40px;
    width: 48px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, background-color 0.3s ease;
}

#toTop.show {
    opacity: 0.9;
    transform: translateY(0);
}

#toTop:hover {
    opacity: 1;
    background-color: #444;
}

#toTop svg {
    color: #fff;
    transition: transform 0.3s ease;
}

#toTop:hover svg {
    transform: translateY(-2px);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.map-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .to-top-container {
        right: 20px;
    }
    
    #toTop {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        bottom: 20px;
    }
}