:root {
    color-scheme: light;
    color: #111111;
    font-family: 'Inter', sans-serif;
    --primary: #0011FF;
    --secondary: #FF0000;
    --text: #111111;
    --muted: #666666;
    --surface: #ffffff;
    --surface-strong: #f8fafc;
    --heading-font: 'Space Grotesk', sans-serif;
}

* {
    box-sizing: border-box;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--heading-font);
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 30px !important;
}

h2 {
    font-family: var(--heading-font);
    font-weight: 700 !important;
    font-size: 60px !important;
}

@media (max-width: 768px) {
    h2 {
        font-size: 40px !important;
    }
}

h3 {
    font-family: var(--heading-font);
    font-weight: 700 !important;
    font-size: 20px !important;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--surface);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.resaltado {
    display: inline-block;
    background: #0011ff;
    color: #ffffff;
    padding: 4px 16px;
    margin: 0 10px;
    line-height: 1;
}

.resaltado2 {
    display: inline-block;
    background: #FF6600;
    color: #ffffff;
    padding: 4px 16px;
    margin: 0 10px;
    line-height: 1;
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.magnetic {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.magnetic:hover {
    transform: translateY(-2px) scale(1.01);
}

.primarybutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #ff6600;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.25);
}

.primarybutton:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.clientes-slider {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 80px,
            black calc(100% - 80px),
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 80px,
            black calc(100% - 80px),
            transparent 100%);
}

.clientes-slider-track {
    display: flex;
    width: fit-content;
    animation: clientes-scroll 30s linear infinite;
    will-change: transform;
}

.clientes-slider:hover .clientes-slider-track {
    animation-play-state: paused;
}

.clientes-slider-group {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.clientes-logo {
    height: 2rem;
    width: auto;
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.clientes-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes clientes-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .clientes-logo {
        height: 2.5rem;
    }

    .clientes-slider-group {
        gap: 6rem;
    }
}

details summary {
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary {
    cursor: pointer;
}

details[open] summary {
    color: var(--primary);
}