.footer-main {
    position: relative;
    padding-top: 30px;
}

footer::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--yellow)  0%,   var(--yellow)  25%,
        var(--magenta) 25%,  var(--magenta) 50%,
        var(--cyan)    50%,  var(--cyan)    75%,
        #e2e8f0        75%,  #e2e8f0        100%
    );
}

.section-title,
.services-header h1,
.window-tint-text h2,
.wraps-text-box h2,
.signs-text-box h2,
.logos-content-text h2,
.about-diagonal-content h2,
.contact-container h2 {
    transition: text-shadow 0.3s ease;
}

.section-title:hover,
.services-header h1:hover,
.window-tint-text h2:hover,
.wraps-text-box h2:hover,
.signs-text-box h2:hover,
.logos-content-text h2:hover,
.about-diagonal-content h2:hover,
.contact-container h2:hover {
    text-shadow:
        -3px 0 var(--cyan),
         3px 0 var(--magenta);
}

.section-title::after,
.services-header h1::after,
.contact-container h2::after {
    content: '';
    display: block;
    width: 90px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        var(--cyan) 0%, var(--cyan) 33.3%,
        var(--magenta) 33.3%, var(--magenta) 66.6%,
        var(--yellow) 66.6%, var(--yellow) 100%
    );
}

.halftone,
.contacto-rapido {
    position: relative;
    overflow: hidden;
}

.halftone::before,
.contacto-rapido::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(24, 156, 216, 0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
}

.contacto-rapido > * {
    position: relative;
    z-index: 1;
}

.crop-marks {
    position: relative;
}

.crop-marks::before,
.crop-marks::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.crop-marks::before {
    top: -12px;
    left: -12px;
    border-top: 2px solid var(--yellow);
    border-left: 2px solid var(--yellow);
}

.crop-marks::after {
    bottom: -12px;
    right: -12px;
    border-bottom: 2px solid var(--cyan);
    border-right: 2px solid var(--cyan);
}

::selection {
    background-color: var(--magenta);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--card);
    border-radius: 6px;
    border: 2px solid var(--background);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .section-title:hover,
    .services-header h1:hover {
        text-shadow: none;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 4px;
}
