@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

section[id],
footer[id] {
    scroll-margin-top: var(--navbar-offset, 120px);
}

.carousel-track {
    gap: 1rem;
}

@media (min-width: 768px) {
    .carousel-track {
        gap: 2rem;
    }
}

.carousel-card {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .carousel-card {
        flex: 0 0 calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
}

.carousel-plate {
    height: 260px;
}

@media (min-width: 768px) {
    .carousel-plate {
        height: 450px;
    }
}

.carousel-service {
    height: 420px;
}

@media (min-width: 768px) {
    .carousel-service {
        height: 650px;
    }
}

/* Animación CTA Profesional */
@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); /* Color mint con opacidad */
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(20, 184, 166, 0); /* El resplandor se expande y desvanece */
        transform: scale(1.02); /* Leve aumento de tamaño */
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
        transform: scale(1);
    }
}

.animate-cta-pulse {
    animation: cta-pulse 2s infinite ease-in-out;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 10px 12px;
    text-decoration: none;
    border-radius: 10px;
    z-index: 1000;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 6px;
}

:focus-visible {
    outline: 2px solid #14b8a6;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
