:root {
    /* Base */
    --white-main: #f5f5f5;
    --white-alt: #ececec;
    --divider: #d0d0d0;

    /* Texto */
    --black-main: #1c1c1c;
    --text-secondary: #6b6b6b;

    /* Marca */
    --red-primary: #e10600;
    --red-hover: #b80500;

    /* Estados */
    --blue-info: #2f6fed;

    /* Secundario minimo */
    --orange-secondary: #ff7a00;

    --radius: 18px;
    --shadow: 0 20px 55px rgba(28, 28, 28, 0.14);
    --font-body: 'Space Grotesk', sans-serif;
    --font-display: 'Fraunces', serif;

    /* Alias para estilos existentes */
    --ink: var(--black-main);
    --ink-soft: var(--text-secondary);
    --surface: var(--white-main);
    --surface-2: var(--white-alt);
    --accent: var(--red-primary);
    --accent-dark: var(--red-hover);
    --accent-glow: rgba(225, 6, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background-color: var(--white-main);
    background:
        radial-gradient(circle at 14% 10%, rgba(225, 6, 0, 0.08), transparent 46%),
        radial-gradient(circle at 86% 0%, rgba(47, 111, 237, 0.08), transparent 40%),
        linear-gradient(180deg, #fafafa 0%, var(--surface) 55%, #f0f0f0 100%);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 90vw);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    position: relative;
}

section.section:nth-of-type(even) {
    background: var(--white-alt);
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    margin: 0;
}

.section-header p {
    margin: 0;
    max-width: 720px;
    color: var(--text-secondary);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    font-size: 12px;
    color: var(--red-primary);
    margin-bottom: 8px;
}

.lead {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
}

.grid {
    display: grid;
    gap: 24px;
}

.cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, 0.2);
    box-shadow: 0 24px 55px rgba(28, 28, 28, 0.18);
}

.card h3 {
    margin: 0;
    font-size: 20px;
}

.card p {
    margin: 0;
    color: var(--text-secondary);
}

.card a {
    margin-top: auto;
    font-weight: 600;
    color: var(--red-primary);
}

.card a:hover {
    color: var(--red-hover);
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--divider);
    background: #ffffff;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-pill span {
    font-size: 0.82em;
    opacity: 0.6;
}

.category-pill:hover,
.category-pill:focus-visible,
.category-pill.is-active {
    color: var(--red-primary);
    border-color: rgba(225, 6, 0, 0.4);
    background: rgba(225, 6, 0, 0.06);
}

.category-extra {
    display: none;
    gap: 10px;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin-top: 8px;
}

.category-extra.is-open {
    display: flex;
}

.category-toggle {
    background: rgba(28, 28, 28, 0.05);
}

.card-media {
    position: relative;
    width: 100%;
    padding-top: 62%;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    background: #f4f1ea;
    border: 1px solid var(--divider);
}

.card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.price-tag {
    font-weight: 700;
    color: var(--black-main);
}

.stock-tag {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(46, 204, 113, 0.15);
    color: #219653;
}

.stock-tag.out {
    background: rgba(225, 6, 0, 0.12);
    color: var(--red-primary);
}

.product-detail {
    display: grid;
    gap: 32px;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-gallery {
    display: grid;
    gap: 12px;
}

.product-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: #f4f1ea;
    border: 1px solid var(--divider);
    min-height: 320px;
}

.product-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbs button {
    border: 1px solid var(--divider);
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.product-thumbs button img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.product-thumbs button.is-active {
    border-color: rgba(225, 6, 0, 0.5);
    box-shadow: 0 8px 18px rgba(225, 6, 0, 0.15);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.product-stock {
    margin-bottom: 12px;
}

.product-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.content-block {
    margin-top: 18px;
    color: var(--text-secondary);
}

.content-block img {
    max-width: 100%;
    border-radius: var(--radius);
    height: auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(28, 28, 28, 0.12);
}

.button:focus-visible {
    outline: 3px solid rgba(225, 6, 0, 0.25);
    outline-offset: 3px;
}

.button-accent {
    background: var(--red-primary);
    color: white;
}

.button-accent:hover {
    background: var(--red-hover);
}

.button-ghost {
    border-color: var(--black-main);
    color: var(--black-main);
    background: transparent;
}

.button-ghost:hover {
    background: rgba(28, 28, 28, 0.05);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(245, 245, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--divider);
    box-shadow: 0 6px 18px rgba(28, 28, 28, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    position: relative;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}

.brand-logo {
    width: min(280px, 52vw);
    max-height: 64px;
    height: auto;
    display: block;
    overflow: visible;
}

.logo-animated .brand-logo {
    animation: logo-float 4.8s ease-in-out infinite;
}

.logo-animated .brand-logo path {
    fill-opacity: 1;
    stroke-dashoffset: 0;
    animation: none;
    filter: none;
}

.logo-mark .brand-logo path {
    fill-opacity: 1;
    stroke-dashoffset: 0;
    filter: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    padding-bottom: 6px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-secondary);
}

.nav-links .button-accent {
    color: #fff;
}

.nav-links .button-ghost {
    color: var(--black-main);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--red-primary);
}

.nav-links .button-accent:hover,
.nav-links .button-accent:focus-visible {
    color: #fff;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--divider);
    box-shadow: 0 18px 40px rgba(28, 28, 28, 0.12);
    list-style: none;
    padding: 10px;
    margin: 0;
    display: none;
    z-index: 20;
}

.submenu .nav-item + .nav-item {
    margin-top: 4px;
}

.submenu a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--text-secondary);
}

.submenu a:hover,
.submenu a:focus-visible {
    background: rgba(225, 6, 0, 0.08);
}

.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--black-main);
    display: block;
}

@keyframes logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-logo,
    .logo-animated .brand-logo path {
        animation: none !important;
    }

    .logo-animated .brand-logo path {
        fill-opacity: 1;
        stroke-dashoffset: 0;
    }
}

.hero {
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at 18% 20%, rgba(225, 6, 0, 0.16), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(47, 111, 237, 0.08), transparent 50%);
    border-bottom: 1px solid var(--divider);
}

.hero-grid {
    display: grid;
    gap: 36px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    margin: 0 0 16px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-quick {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    font-size: 14px;
    color: var(--ink-soft);
}

.hero-quick a {
    text-decoration: none;
}

.hero-quick a:hover {
    color: var(--red-primary);
}

.hero-media {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: min(420px, 80vw);
    aspect-ratio: 4 / 5;
    border-radius: 32px;
    background: linear-gradient(145deg, #0f0f0f 0%, #1c1c1c 38%, #3a1b1b 62%, #e10600 100%);
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 30% 20%, rgba(225, 6, 0, 0.5), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(47, 111, 237, 0.25), transparent 50%);
    opacity: 0.6;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 26px;
}

.hero-image--photo {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-z: -1.5deg;
    --hero-fit: cover;
    --hero-position: center;
    --photo-inset: 10px;
    --photo-bottom: 60px;
    background: #f2f2f2;
    border: 10px solid #ffffff;
    border-bottom-width: 34px;
    border-radius: 30px;
    box-shadow: 0 28px 60px rgba(14, 12, 10, 0.28);
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(var(--tilt-z));
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.hero-image--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-image-url);
    background-size: var(--hero-fit);
    background-position: var(--hero-position);
    background-repeat: no-repeat;
    clip-path: inset(var(--photo-inset) var(--photo-inset) var(--photo-bottom) var(--photo-inset) round 22px);
    z-index: 0;
}

.hero-image--photo::after {
    content: '';
    position: absolute;
    inset: var(--photo-inset) var(--photo-inset) var(--photo-bottom) var(--photo-inset);
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.08);
    z-index: 1;
}

.hero-image--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: var(--hero-fit);
    object-position: var(--hero-position);
    clip-path: inset(var(--photo-inset) var(--photo-inset) var(--photo-bottom) var(--photo-inset) round 22px);
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.05);
    transition: transform 0.2s ease;
    will-change: transform;
    z-index: 2;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 3;
    clip-path: inset(var(--photo-inset) var(--photo-inset) var(--photo-bottom) var(--photo-inset) round 22px);
    pointer-events: none;
}

.hero-image-caption {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(245, 245, 245, 0.94);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    border: 1px solid rgba(28, 28, 28, 0.08);
    z-index: 1;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.hero-image--photo .hero-image-caption {
    bottom: 10px;
    left: 14px;
    right: 14px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    color: #0f0f0f;
    backdrop-filter: none;
    z-index: 4;
}

.hero-image--photo .hero-image-caption::before {
    content: '';
    display: block;
    width: 38px;
    height: 2px;
    background: var(--red-primary);
    margin: 0 auto 8px;
    border-radius: 999px;
}

.map-grid {
    display: grid;
    gap: 24px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.map-embed iframe {
    width: 100%;
    min-height: 320px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cta,
#cta-final {
    background: linear-gradient(135deg, #101010 0%, #1c1c1c 60%, #2b1111 100%);
    color: white;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-panel h2 {
    font-family: var(--font-display);
    margin: 0 0 8px;
}

.cta-panel p,
#cta-final p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    background: #111111;
    color: #f5f5f5;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer-grid a {
    display: block;
    color: #f5f5f5;
    margin-top: 8px;
}

.footer-grid a:hover {
    color: var(--red-primary);
}

.footer-social {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5f5f5;
}

.footer-social-link .social-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link .social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 0;
}

.footer-logo .brand-logo {
    width: min(240px, 80vw);
    max-height: 60px;
}

.site-footer .brand-logo {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 24px;
    padding-top: 16px;
    font-size: 14px;
}

.muted {
    color: rgba(28, 28, 28, 0.6);
}

.site-footer .muted {
    color: rgba(245, 245, 245, 0.7);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #1ca84f 0%, #26d367 100%);
    color: white;
    padding: 0;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
    z-index: 30;
    transition: transform 0.2s ease, box-shadow 0.2s ease, max-width 0.25s ease, padding 0.25s ease;
    width: 56px;
    max-width: 56px;
    height: 56px;
    overflow: hidden;
    white-space: nowrap;
    animation: whatsapp-float 3.6s ease-in-out infinite;
    justify-content: center;
    box-sizing: border-box;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 32px rgba(0, 0, 0, 0.28);
    max-width: 240px;
    padding: 12px 18px;
    animation: none;
    justify-content: flex-start;
    width: auto;
    gap: 10px;
}

.whatsapp-float:focus-visible {
    max-width: 240px;
    padding: 12px 18px;
    animation: none;
    justify-content: flex-start;
    width: auto;
    gap: 10px;
}

.whatsapp-float::after {
    content: none;
}

.whatsapp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.whatsapp-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.whatsapp-float:hover .whatsapp-icon,
.whatsapp-float:focus-visible .whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover .whatsapp-icon svg,
.whatsapp-float:focus-visible .whatsapp-icon svg {
    width: 36px;
    height: 36px;
}

.whatsapp-text {
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-6px);
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, max-width 0.25s ease;
}

.whatsapp-float:hover .whatsapp-text,
.whatsapp-float:focus-visible .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
    max-width: 220px;
}

@keyframes whatsapp-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.35;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::after {
        animation: none;
    }
}

.table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--divider);
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.table th,
.table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--divider);
    text-align: left;
}

.table th {
    background: var(--white-alt);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(47, 111, 237, 0.12);
    color: var(--blue-info);
    border: 1px solid rgba(47, 111, 237, 0.2);
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

input,
textarea,
select {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--divider);
    font-family: inherit;
    background: #ffffff;
    color: var(--black-main);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.12);
}

textarea {
    min-height: 140px;
}

.field-error {
    border-color: var(--red-primary);
    box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.12);
}

.notice {
    padding: 12px 16px;
    border-radius: 12px;
    margin: 16px 0;
    background: #fff6e4;
    border: 1px solid #f4dca6;
}

.notice.success {
    background: #e8f8ed;
    border-color: #bfe8c8;
}

.video-embed iframe {
    width: 100%;
    min-height: 300px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gallery-item {
    background: linear-gradient(145deg, #ffffff, #eaeaea);
    border-radius: 16px;
    padding: 24px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    border: 1px solid var(--divider);
    box-shadow: 0 16px 32px rgba(28, 28, 28, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 0, 0.3);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--black-main);
    color: white;
    font-size: 12px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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