/* Forge - Martial Arts Events Platform */


/* theme.css - Estilo principal */

:root {
    --primary-red: #dc3545;
    --dark-red: #8b1538;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --shadow-color: rgba(220, 53, 69, 0.3);
    --glow-color: rgba(220, 53, 69, 0.6);
    --font-main: 'Rajdhani', sans-serif;
    --font-title: 'Orbitron', monospace;
}

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

body {
    font-family: var(--font-main);
    background: var(--black);
    color: #ffffff;
    overflow-x: hidden;
}


/* Loading Screen */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
}

.loading-content i {
    font-size: 5rem;
    color: var(--primary-red);
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
    font-family: var(--font-title);
    letter-spacing: 2px;
}


/* Hero Section */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--shadow-color);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--glow-color);
    bottom: 20%;
    right: -15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--shadow-color);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge-container {
    display: inline-block;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-color);
    animation: glow 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-inline {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-title);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow-color);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-custom:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}


/* Hero Visual - CORREGIDO */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fist-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fist-container i {
    font-size: 8rem;
    color: var(--primary-red);
    text-shadow: 0 0 30px var(--glow-color);
    z-index: 2;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}


/* Orbits - CORREGIDO */

.orbit {
    position: absolute;
    border: 2px solid rgba(220, 53, 69, 0.2);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.orbit-1 {
    width: 250px;
    height: 250px;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation-duration: 15s;
}

.orbit-3 {
    width: 390px;
    height: 390px;
    animation-duration: 20s;
}

.orbit-4 {
    width: 280px;
    height: 280px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.orbit-5 {
    width: 350px;
    height: 350px;
    animation-duration: 18s;
    animation-direction: reverse;
}

.orbit-6 {
    width: 310px;
    height: 310px;
    animation-duration: 14s;
}

.orbit-icon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-gray);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-icon i {
    font-size: 0.85rem;
    color: var(--primary-red);
}

/* Christmas Ornament Emoji */
.christmas-ornament-emoji {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.6));
    animation: pulse-emoji 2s ease-in-out infinite;
}

@keyframes pulse-emoji {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
}


/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}


/* Section Styling */

.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}


/* Service Cards */

.service-card {
    position: relative;
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(220, 53, 69, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--shadow-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px var(--shadow-color);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-red);
    margin-right: 0.8rem;
}

.service-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #ff6b6b;
}


/* Stats Section */

.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--black) 100%);
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 45deg, transparent, transparent 10px, rgba(220, 53, 69, 0.03) 10px, rgba(220, 53, 69, 0.03) 20px);
}

.stat-card {
    background: var(--dark-gray);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--primary-red);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px var(--shadow-color);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.stat-progress {
    height: 4px;
    background: rgba(220, 53, 69, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff6b6b 100%);
    transition: width 2s ease;
}


/* Scroll to Top */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-color);
}


/* Animations */

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 4px 15px var(--shadow-color);
    }
    50% {
        box-shadow: 0 4px 30px var(--glow-color);
    }
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    .fist-container {
        width: 300px;
        height: 300px;
    }
    .fist-container i {
        font-size: 6rem;
    }
    .orbit-1 {
        width: 200px;
        height: 200px;
    }
    .orbit-2 {
        width: 260px;
        height: 260px;
    }
    .orbit-3 {
        width: 320px;
        height: 320px;
    }
    .orbit-4 {
        width: 220px;
        height: 220px;
    }
    .orbit-5 {
        width: 290px;
        height: 290px;
    }
    .orbit-6 {
        width: 250px;
        height: 250px;
    }
    .christmas-ornament-emoji {
        font-size: 1.8rem;
    }
}