/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video de Fundo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    opacity: 0.25;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(20, 0, 40, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

/* Efeito de Fumaça Dramática */
.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Fumaça 1 - Canto superior esquerdo */
        radial-gradient(ellipse 200px 100px at 15% 25%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%),
        
        /* Fumaça 2 - Centro superior */
        radial-gradient(ellipse 150px 80px at 50% 20%, rgba(40, 40, 40, 0.5) 0%, rgba(40, 40, 40, 0.1) 50%, transparent 80%),
        
        /* Fumaça 3 - Canto superior direito */
        radial-gradient(ellipse 180px 90px at 85% 30%, rgba(60, 60, 60, 0.4) 0%, rgba(60, 60, 60, 0.1) 45%, transparent 75%),
        
        /* Fumaça 4 - Centro esquerdo */
        radial-gradient(ellipse 120px 150px at 25% 50%, rgba(80, 80, 80, 0.3) 0%, rgba(80, 80, 80, 0.05) 60%, transparent 85%),
        
        /* Fumaça 5 - Centro direito */
        radial-gradient(ellipse 140px 120px at 75% 60%, rgba(100, 100, 100, 0.3) 0%, rgba(100, 100, 100, 0.05) 55%, transparent 80%),
        
        /* Fumaça 6 - Canto inferior esquerdo */
        radial-gradient(ellipse 160px 100px at 20% 80%, rgba(120, 120, 120, 0.2) 0%, rgba(120, 120, 120, 0.05) 50%, transparent 75%),
        
        /* Fumaça 7 - Centro inferior */
        radial-gradient(ellipse 130px 90px at 50% 85%, rgba(140, 140, 140, 0.15) 0%, rgba(140, 140, 140, 0.03) 60%, transparent 85%),
        
        /* Fumaça 8 - Canto inferior direito */
        radial-gradient(ellipse 180px 110px at 80% 75%, rgba(160, 160, 160, 0.1) 0%, rgba(160, 160, 160, 0.02) 65%, transparent 90%);
    
    z-index: 0;
    animation: dramaticSmoke 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes dramaticSmoke {
    0% {
        opacity: 0.6;
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        opacity: 0.8;
        transform: translateX(-15px) translateY(-10px) scale(1.05);
    }
    50% {
        opacity: 0.5;
        transform: translateX(10px) translateY(-15px) scale(0.95);
    }
    75% {
        opacity: 0.7;
        transform: translateX(-5px) translateY(10px) scale(1.02);
    }
    100% {
        opacity: 0.6;
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff6b35;
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 0 0 10px #ff6b35;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff6b35;
    }
    to {
        text-shadow: 0 0 20px #ff6b35, 0 0 30px #ff6b35;
    }
}

.logo i {
    font-size: 2rem;
    animation: dragonBreath 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a, .nav-link {
    color: #fff;
    background: none !important;
    text-shadow: none !important;
    font-weight: 500;
    font-size: 1.25rem;
    padding: 8px 32px;
    border-radius: 8px;
    transition: color 0.2s, text-shadow 0.2s;
    text-decoration: none;
    box-shadow: none !important;
}

.nav-link.active {
    color: #ff6b35 !important;
    text-shadow: 0 0 12px #ff6b35, 0 0 24px #ffb347;
    font-weight: bold;
}

.nav-menu a:hover:not(.active), .nav-link:hover:not(.active) {
    color: #ffb347;
    text-shadow: none;
}

/* Botão hambúrguer para mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1002;
}
.nav-toggle .bar {
    width: 28px;
    height: 4px;
    background: #ff6b35;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
}

.title-glow {
    background: linear-gradient(45deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ff8c42;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Barras de Status RPG */
.rpg-status {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    font-weight: 600;
}

.status-label i {
    color: #ff6b35;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bar-container {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-out;
    position: relative;
    overflow: hidden;
}

.hp-bar {
    background: linear-gradient(90deg, #8b0000, #b22222);
    box-shadow: 0 0 10px #8b0000;
}

.mana-bar {
    background: linear-gradient(90deg, #00008b, #191970);
    box-shadow: 0 0 10px #00008b;
}

.bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.status-value {
    font-weight: 700;
    color: #ff6b35;
    min-width: 50px;
    text-align: right;
}

/* Botões CTA */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rpg-character {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

.character-avatar {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    animation: rotate 10s linear infinite;
}

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

.character-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    display: block;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

/* Seções Gerais */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    animation: spin 4s linear infinite;
}

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

/* Features Section */
.features {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1200px;
}
.feature-card {
    width: 100%;
    min-width: 220px;
    max-width: 320px;
    min-height: 260px;
    height: 260px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    word-break: break-word;
}
.features-grid > * {
    width: 100%;
    height: 100%;
}
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .feature-card {
        min-width: 0;
        width: 100%;
        min-height: 180px;
        height: auto;
        max-height: none;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 8px 12px 8px;
        overflow: visible;
        word-break: break-word;
    }
    .feature-card h3, .feature-card p {
        text-align: center;
        margin: 0 auto 4px auto;
        width: 100%;
        font-size: 1.05em;
    }
    .feature-icon {
        margin-bottom: 8px;
        font-size: 2.1rem;
    }
}
.feature-card {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff8c42;
}

.feature-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.feature-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.feature-bar .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.1));
}

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

.download-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #ff6b35;
    border-radius: 10px;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

.btn-download {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

/* Contact Section */
.contact {
    background: rgba(0, 0, 0, 0.9);
}

.contact-content {
    text-align: center;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    gap: 18px !important;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #ff6b35;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #ff6b35;
    padding: 2rem 0;
    text-align: center;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 64px;
        right: 0;
        left: 0;
        background: #181818ee;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 24px 0 12px 0;
        border-bottom: 2px solid #ff6b35;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
        display: none;
        z-index: 1001;
        transition: all 0.3s;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    .nav-menu a, .nav-link {
        display: block;
        width: 100vw;
        padding: 18px 0;
        font-size: 1.3rem;
        border-radius: 0;
        border-bottom: 1px solid #222;
    }
}

/* Animações de Scroll */
.feature-card, .stat-card, .contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animate, .stat-card.animate, .contact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Efeitos de Partículas - Estrelas */
@keyframes sparkle {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1) rotate(180deg); 
    }
}

.sparkle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 
        0 0 2px #ffffff,
        0 0 4px #ffffff,
        0 0 6px #ffffff;
    animation: sparkle 3s ease-in-out infinite;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card:nth-child(1) { animation-delay: 0.1s; }
    .feature-card:nth-child(2) { animation-delay: 0.2s; }
    .feature-card:nth-child(3) { animation-delay: 0.3s; }
    .feature-card:nth-child(4) { animation-delay: 0.4s; }
}

/* Fundo animado para a área de planos */
.plans-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 60%, #ff6b35 100%);
    border-radius: 32px;
    padding: 48px 0 36px 0;
    margin-top: 32px;
    box-shadow: 0 8px 48px 0 rgba(255,107,53,0.25), 0 2px 24px 0 rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    animation: plansBgMove 8s ease-in-out infinite alternate;
}

.plans-section .plan-cards-row {
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
}
@media (max-width: 700px) {
    .plans-section .plan-cards-row {
        flex-direction: row !important;
        gap: 28px !important;
        align-items: flex-start;
    }
    .plan-card {
        min-width: 120px;
        max-width: 44vw;
        padding: 8px 2px;
        font-size: 0.92rem;
    }
    .plan-card .price {
        font-size: 1.1rem;
        margin-top: 6px;
    }
    .plan-card h3 {
        font-size: 0.98rem;
        margin-bottom: 2px;
    }
}

@keyframes plansBgMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Promoção com efeito glow/pulsante */
.promotion-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #ffb347 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 32px 0 #ff6b35, 0 4px 24px 0 rgba(255,107,53,0.25);
    padding: 14px 18px;
    margin: 18px auto 18px auto;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 420px;
    letter-spacing: 1.2px;
    border: 2.5px solid #fff3e0;
    text-shadow: 0 0 12px #ffb347, 0 0 24px #ff6b35;
    animation: pulseGlow 1.5s infinite alternate;
    transition: box-shadow 0.3s, transform 0.3s;
}

.promotion-banner:hover {
    transform: scale(1.12) translateY(-10px);
    box-shadow: 0 0 64px 24px #ffb347, 0 8px 32px 0 rgba(255,107,53,0.45);
}

/* Cards dos planos com efeito de zoom e brilho ao hover */
.plan-card {
    background: transparent;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px 0 rgba(255,107,53,0.18), 0 0 0 0 #ff6b35;
    padding: 28px 36px;
    margin: 22px 0;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    border: 2.5px solid #ff6b35;
    transition: transform 0.35s cubic-bezier(.22,1.61,.36,1), box-shadow 0.25s, border-color 0.25s;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.plan-card:hover {
    transform: scale(1.14) translateY(-12px);
    box-shadow: 0 0 48px 16px #ffb347, 0 8px 32px 0 rgba(255,107,53,0.35);
    border-color: #ffb347;
    cursor: pointer;
}

.plan-card.featured {
    background: transparent;
    color: #ffb347;
    border: 2.5px solid #fff3e0;
    font-weight: bold;
    transform: scale(1.08);
    box-shadow: 0 4px 32px 0 #ffb347, 0 8px 32px 0 rgba(255,107,53,0.18);
}

.plan-card.featured:hover {
    border-color: #ff6b35;
    box-shadow: 0 0 64px 24px #ffb347, 0 8px 32px 0 rgba(255,107,53,0.45);
    color: #fff3e0;
    transform: scale(1.18) translateY(-14px);
}

.price {
    font-size: 2.2rem;
    color: #ffb347;
    margin-top: 16px;
    font-weight: bold;
    text-shadow: 0 0 8px #ff6b35;
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffb347;
    text-shadow: 0 0 6px #ff6b35;
}

@media (max-width: 700px) {
    .plans-section {
        padding: 16px 0 12px 0;
    }
    .plan-card {
        padding: 16px 8px;
        min-width: 180px;
        max-width: 98vw;
    }
    .promotion-banner {
        padding: 8px 6px;
        font-size: 0.95rem;
        max-width: 98vw;
        margin: 10px auto 10px auto;
    }
}

@keyframes emoji-bounce {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.15); }
    100% { transform: translateY(0) scale(1); }
}

.animate-emoji > span {
    animation: emoji-bounce 1.2s infinite alternate;
    display: block;
    font-size: 2.2rem;
    margin-bottom: 4px;
    color: #ff6b35;
    filter: drop-shadow(0 0 6px #ff6b35);
}

.btn-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a1a1a;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1.2rem;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(255,107,53,0.10);
    margin: 0 auto 6px auto;
}
.btn-discord:hover {
    background: #ff6b35;
    color: #fff3e0;
    box-shadow: 0 0 24px 4px #ff6b35;
    transform: scale(1.05);
}
.btn-discord i {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-right: 8px;
}
.discord-username {
    display: block;
    text-align: center;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 1px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1a1a1a;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(37,211,102,0.10);
    margin: 0 auto 6px auto;
}
.btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 0 24px 4px #25d366;
    transform: scale(1.05);
}
.btn-whatsapp i {
    color: #25d366;
    font-size: 1.5rem;
    margin-right: 8px;
}

.open-beta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 2.6rem;
    font-family: 'Orbitron', 'Medieval Sharp', Arial, sans-serif;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.open-beta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 8px;
}
.open-beta-interlude {
    display: block;
    color: #ff6b35;
    font-size: 1.2em;
    font-weight: bold;
}
.open-beta-text {
    text-align: center;
}
@media (max-width: 700px) {
    .open-beta-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .open-beta-icon {
        font-size: 3.2rem;
    }
}

.plan-card, .plan-card.featured {
    min-width: 80px;
    max-width: 120px;
    padding: 2px 2px;
    font-size: 0.65rem;
    text-align: center;
    font-weight: 500;
}
.plan-card .price, .plan-card.featured .price {
    font-size: 0.7rem;
    margin-top: 2px;
    font-weight: 700;
}
.plan-card h3, .plan-card.featured h3 {
    font-size: 0.7rem;
    margin-bottom: 1px;
    font-weight: 700;
}
.plan-card p, .plan-card.featured p {
    font-size: 0.65rem;
    margin: 0;
    font-weight: 500;
}
.plan-card-whatsapp {
    min-width: unset;
    max-width: unset;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(255,107,53,0.10);
    padding: 32px 24px 24px 24px;
    text-align: center;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.plan-card-whatsapp h3, .plan-card-whatsapp p {
    text-decoration: none !important;
    color: #ff6b35;
}
.plan-card-whatsapp:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 0 24px 4px #25d366;
    border-color: #25d366 !important;
}
.plan-card-whatsapp .feature-icon {
    color: #ffb347;
}

.contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 16px;
    font-size: 2.2rem;
    font-family: 'Orbitron', 'Medieval Sharp', Arial, sans-serif;
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #ff6b35;
    margin-bottom: 0;
}
.contact-text {
    display: block;
    text-align: left;
}
@media (max-width: 700px) {
    .contact-title {
        flex-direction: column;
        gap: 0;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .contact-icon {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    .contact-text {
        text-align: center;
    }
}
