* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.crypto-layout {
    height: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    max-width: 1500px;
    width: 100%;
    position: relative;
    z-index: 3;
    transition: max-width 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.crypto-layout.expanded {
    max-width: 100%;
    width: 100%;
    height: 1200px;
}

.crypto-hero {
    position: relative;
    background-image:
        linear-gradient(#262626 1px, transparent 1px),
        linear-gradient(90deg, #262626 1px, transparent 1px);
    background-size: 80px 80px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
    width: 50%;
    transition: width 0.5s ease;
}

.crypto-layout.expanded .crypto-hero {
    width: 0%;
}

.crypto-layout.expanded .crypto-hero-content,
.crypto-layout.expanded .crypto-hero-image,
.crypto-layout.expanded .crypto-hero-button {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.crypto-hero-content,
.crypto-hero-image,
.crypto-hero-button {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.crypto-hero-content {
    max-width: 420px;
    z-index: 2;
}

.crypto-hero-content h1 {
    font-size: 4.5rem;
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 40px;
}

.crypto-hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
    animation: crypto-btn-pulse 2.5s ease-in-out infinite;
}

.crypto-hero-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.25) 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: crypto-btn-shine 2s ease-in-out infinite;
    border-radius: 999px;
    z-index: 0;
    pointer-events: none;
}

.crypto-hero-button .arrow {
    font-size: 1.2rem;
    z-index: 1;
    animation: crypto-btn-arrow 1.5s ease-in-out infinite;
}

.crypto-hero-button span:not(.arrow) {
    z-index: 1;
}

@keyframes crypto-btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.2);
    }
}

@keyframes crypto-btn-shine {
    0% {
        background-position: 150% 0;
    }
    100% {
        background-position: -50% 0;
    }
}

@keyframes crypto-btn-arrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

.crypto-hero-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.crypto-hero-button:hover::before {
    animation: none;
    opacity: 0;
}

.crypto-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.crypto-hero-image>img {
    width: 36%;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.crypto-hero-image img:nth-child(1) {
    z-index: 0;
    transform: translateX(100px);
}

.crypto-hero-image img:nth-child(3) {
    z-index: 0;
    transform: translateX(-100px);
}

.crypto-forno {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: width 0.5s ease;
    overflow-y: hidden;
}

.crypto-layout.expanded .crypto-forno {
    width: 100%;
}

.crypto-forno .ScrollForno {
    height: 100%;
    background-color: #00000000;
    display: flex;
    flex-direction: column wrap;
    gap: 40px;
    width: 100%;
    padding: 40px;
    overflow-y: hidden;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

.crypto-forno .ScrollForno::-webkit-scrollbar {
    width: 10px;
}

.crypto-forno .ScrollForno::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 10px 0;
}

.crypto-forno .ScrollForno::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.crypto-forno .ScrollForno::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.categoria-forno {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.categoria-titulo {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.categoria-burguers {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    gap: 24px;
    width: 100%;
}

.categoria-burguers .BlocoBurguer {
    flex-shrink: 0;
    min-width: 290px;
}

.crypto-forno-collapse-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.crypto-layout.expanded .crypto-forno-collapse-button {
    display: inline-flex;
}

.crypto-forno-collapse-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}


/* Variações de cor dos fundos circulares */
.fundo--yellow {
    background-color: #f5d100;
}

.fundo--pink {
    background-color: #ff2ad6;
}

.fundo--blue {
    background-color: #00c3ff;
}
