/* --- VARIABLES & RESET --- */
:root {
    /* Colors */
    --color-bg: #130B15;
    --color-bg-darker: #050505;
    --color-primary: #FF6600;
    /* Orange */
    --color-purple: #8C52FF;
    --color-purple-dark: #1F132E;
    --color-white: #ffffff;
    --color-gray: #9ca3af;
    --color-gray-dark: #1f2937;

    /* Fonts */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-graffiti: 'Sedgwick Ave Display', cursive;
    --font-mono: monospace;

    /* Spacing */
    --container-width: 1280px;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

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

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

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.text-purple {
    color: var(--color-purple);
}

.text-orange {
    color: var(--color-primary);
}

.text-white {
    color: var(--color-white);
}

.bg-purple {
    background-color: var(--color-purple);
}

.font-display {
    font-family: var(--font-display);
}

.font-graffiti {
    font-family: var(--font-graffiti);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md-hidden {
        display: none;
    }

    .md-block {
        display: block;
    }
}

/* --- NAVBAR --- */
.navbar-new {
    position: relative;
    width: 100%;
    height: 60px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('image/Rectangle 8.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-stroke-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
}

.nav-stroke {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 200px at var(--mouse-x, 50%) center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.6) 40%,
            rgba(255, 255, 255, 0.2) 70%,
            transparent 100%),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.15) 100%);
    background-size: 100% 100%, 200% 100%;
    animation: moveGradient 20s linear infinite;
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 24px;
    width: auto;
}

.nav-badge-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

@media(min-width: 768px) {
    .nav-badge-center {
        display: block;
    }
}

.logo-curso{
    width: 200px;
}

.badge-live {
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background-color: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(239, 68, 68, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-core {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulseCore 1.5s infinite ease-in-out;
}

.pulse-ring {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulseRing 1.5s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes pulseCore {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(2);
        opacity: 0;
    }
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.nav-links-new {
    display: flex;
    gap: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-mono);
    color: #A78BFA;
}

.nav-links-new a:hover {
    color: white;
}

/* --- HERO SECTION --- */
.hero-section-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 2rem;
    background-color: #130B15;
    overflow-x: hidden;
}

@media(min-width: 768px) {
    .hero-section-new {
        padding-bottom: 440px;
    }
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* Mobile: Flex layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    gap: 2rem;
}

.hero-bg-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

@media(min-width: 768px) {
    .hero-bg-text {
        width: 90%;
        top: 50%;
    }
}

.hero-bg-text img {
    width: 100%;
    height: auto;
}

.hero-character {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    height: 60%;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    opacity: 0.3;
}

@media(min-width: 1024px) {
    .hero-container {
        display: block;
        height: 65vh;
        padding-top: 0;
    }

    .hero-character {
        height: 95%;
        opacity: 1;
        z-index: 2;
    }
}

.character-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 80px rgba(0, 0, 0, 0.8));
    animation: slideUpFade 0.8s ease-out forwards;
}

@keyframes slideUpFade {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.character-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #130B15, rgba(19, 11, 21, 0.7), transparent);
}

.hero-left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    gap: 1.5rem;
    animation: slideRightFade 0.8s ease-out forwards;
}

@media(min-width: 1024px) {
    .hero-left {
        position: absolute;
        width: auto;
        top: 20%;
        left: 10%;
        align-items: flex-start;
        text-align: left;
    }
}

@keyframes slideRightFade {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-brand-logo {
    height: 4rem;
    transform: rotate(-2deg);
    filter: drop-shadow(0 0 15px rgba(140, 82, 255, 0.5));
}

@media(min-width: 768px) {
    .hero-brand-logo {
        height: 6rem;
    }
}

.hero-desc {
    color: #cbd5e1;
    font-size: 1rem;
    font-family: var(--font-mono);
    margin: 0;
    max-width: 300px;
}

@media(min-width: 768px) {
    .hero-desc {
        font-size: 1.25rem;
    }
}

.hero-stats-new {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

@media(min-width: 1024px) {
    .hero-stats-new {
        justify-content: flex-start;
    }
}

.stat-item .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

@media(min-width: 768px) {
    .stat-item .stat-num {
        font-size: 2rem;
    }
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
}

.hero-socials-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media(min-width: 1024px) {
    .hero-socials-new {
        justify-content: flex-start;
    }
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.social-icon:hover {
    color: white;
    background: rgba(140, 82, 255, 0.1);
    border-color: rgba(140, 82, 255, 0.5);
    transform: translateY(-2px);
}

.hero-right {
    position: relative;
    z-index: 3;
    display: block;
    margin-bottom: 2rem;
}

@media(min-width: 1024px) {
    .hero-right {
        position: absolute;
        right: 10%;
        top: 20%;
        margin-bottom: 0;
    }
}

.video-widget-new {
    width: 320px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideLeftFade 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes slideLeftFade {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.vw-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vw-header h3 {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.vw-list {
    max-height: 280px;
    overflow-y: auto;
}

/* Custom scrollbar */
.vw-list::-webkit-scrollbar {
    width: 4px;
}

.vw-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.vw-list::-webkit-scrollbar-thumb {
    background: rgba(140, 82, 255, 0.5);
    border-radius: 4px;
}

.vw-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.625rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.vw-item:last-child {
    border-bottom: none;
}

.vw-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.vw-thumb {
    position: relative;
    width: 96px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
}

.vw-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.vw-item:hover .vw-thumb img {
    transform: scale(1.1);
}

.vw-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vw-play svg {
    background: rgba(255, 102, 0, 0.8);
    border-radius: 50%;
    padding: 6px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.vw-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vw-info h4 {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.vw-item:hover .vw-info h4 {
    color: var(--color-purple);
}

.vw-info span {
    color: var(--color-gray);
    font-size: 0.625rem;
}

.vw-footer {
    padding: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.vw-footer a {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.vw-footer a:hover {
    color: white;
}

/* --- PARTNER CARDS --- */
.hero-partners-new {
    position: relative;
    width: 100%;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1150px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .hero-partners-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media(min-width: 1024px) {
    .hero-partners-new {
        position: absolute;
        bottom: -350px;
        left: 0;
        right: 0;
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-card-new {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 420px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.partner-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--color-purple);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
}

.pc-header {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.pc-header img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.partner-card-new:hover .pc-header img {
    transform: scale(1.05);
}

.pc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.pc-text-box {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    text-align: center;
    color: white;
    font-family: var(--font-sora);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.partner-card-new:hover .pc-text-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pc-code {
    margin-top: auto;
    width: 100%;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pc-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pc-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-purple);
    font-family: var(--font-sora);
    letter-spacing: 0.05em;
}

.pc-full-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* --- LIFESTYLE SECTION --- */
.lifestyle-section {
    padding: 4rem 0;
    background-color: var(--color-bg);
    min-height: auto;
    /* Remove excessive height constraint if needed, or keep 90vh but align top */
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.lifestyle-title {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-family: var(--font-mono);
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transform: none;
}

@media (min-width: 768px) {
    .lifestyle-title {
        font-size: 1.5rem;
    }
}

.embla {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.embla__viewport {
    width: 100%;
    overflow: hidden;
}

.embla__container {
    display: flex;
    /* gap: 1.5rem; */
}

.embla__slide {
  padding-left: 1.5rem;
}

.embla__container {
  margin-left: -1.5rem;
}

.embla__slide {
    flex: 0 0 85%;
    min-width: 0;
    position: relative;
}

@media (min-width: 768px) {
    .embla__slide {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .embla__slide {
        flex: 0 0 300px;
    }
}

.lifestyle-card {
    display: block;
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    background-color: #1F132E;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-purple);
    box-shadow: 0 20px 40px rgba(140, 82, 255, 0.2);
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(20%);
}

.lifestyle-card:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.ls-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.ls-content p {
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    line-height: 1.2;
}

/* --- COURSE SECTION --- */
.new-course-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #130B15;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.nc-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.2;
}

.nc-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #130B15, rgba(19, 11, 21, 0.8), transparent);
}

.nc-stroke-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    overflow: hidden;
    z-index: 30;
}

.nc-stroke {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 200px at var(--mouse-x, 50%) center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.6) 40%,
            rgba(255, 255, 255, 0.2) 70%,
            transparent 100%),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.15) 100%);
    background-size: 100% 100%, 200% 100%;
    animation: moveGradient 20s linear infinite;
    transition: background 0.1s;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 0%, 0% 0%;
    }

    100% {
        background-position: 0% 0%, 100% 0%;
    }
}

.nc-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
    padding: 0 2rem;
}

.nc-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .nc-flex-container {
        flex-direction: row;
        padding: 0 4rem;
        gap: 6rem;
    }
}

.nc-left-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nc-left-col {
        width: 55%;
    }
}

.nc-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    text-align: left;
    line-height: 1.2;
    font-size: 2.25rem;
    min-height: 160px;
}

@media (min-width: 768px) {
    .nc-title {
        font-size: 3rem;
        min-height: 200px;
    }
}

@media (min-width: 1024px) {
    .nc-title {
        font-size: 3.75rem;
        min-height: 240px;
    }
}

.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.nc-cta-button {
    background-color: var(--color-purple);
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: inline-block;
    margin-top: 0.5rem;
}

.nc-cta-button:hover {
    background-color: var(--color-primary);
    transform: scale(1.02);
}

.nc-cta-button:active {
    transform: scale(0.98);
}

.nc-right-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .nc-right-col {
        width: auto;
        flex-direction: column;
    }
}

.nc-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    min-width: 180px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.nc-stat-label {
    display: block;
    color: var(--color-gray);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.nc-stat-value {
    display: block;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--color-bg);
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand h2 {
    font-size: 2.25rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-gray);
    max-width: 20rem;
    line-height: 1.6;
}

.footer-nav h3 {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: var(--color-gray);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--color-purple);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

.social-icon-box:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon-box:hover.twitch {
    color: #9146FF;
}

.social-icon-box:hover.instagram {
    color: #E1306C;
}

.social-icon-box:hover.twitter {
    color: #1DA1F2;
}

.social-icon-box:hover.youtube {
    color: #FF0000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(140, 82, 255, 0.1);
    color: var(--color-purple);
    border-radius: 0.5rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.scroll-top:hover {
    background: rgba(140, 82, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom a {
    display: inline-block; /* necessário pro transform funcionar direito */
    transition: transform 0.3s ease; /* suavidade */
}

.footer-bottom a:hover{
    transform: scale(1.1);
}
