/* VIEW TRANSITION */
@view-transition {
    navigation: auto;
}

::view-transition-group(*) {
    animation-duration: 0.5s;
}

#footer-svg-schedule,
#footer-svg-contact {
    margin-left: -2.5px;
}

/* START maquina de escribir versiculo */
@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.typewriter-cursor {
    display: inline-block;
    background-color: #374151;
    width: 2px;
    height: 1.2em;
    animation: blink 1s infinite;
}

/* END maquina de escribir versiculo */

/* START TABS VISITANOS */
.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    color: #374151;
    font-weight: 500;
    transition: all 0.2s;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .tab-btn {
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

.tab-btn:hover {
    background-color: #f3f4f6;
}

.tab-btn.active {
    background-color: #dbeafe;
    color: #1d4ed8;
    border-color: #3b82f6;
}

.tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.tabs-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tabs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    max-width: 100%;
    margin: auto;
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
}

.tabs-list {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem 0;
    min-width: max-content;
    /* responsive critical */
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
    .tabs-list {
        justify-content: flex-start;
    }

    .tabs-scroll-container {
        max-width: 80%;
    }
}
/* END TABS VISITANOS */