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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
}

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

header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(201, 169, 97, 0.5));
}

/* Logo sem fundo já processada */
.logo-img {
    /* Fundo transparente - logo pronta! */
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #c9a961;
}

main {
    margin-top: 80px;
}

.hero-section {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/backgrounds/image.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    text-align: center;
    padding: 40px 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.8), 0 0 40px rgba(201, 169, 97, 0.4);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.8;
}

.hero-subtitle {
    font-size: 20px !important;
    color: #c9a961 !important;
    font-weight: bold;
    margin-bottom: 30px !important;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

/* Botão Abrir Plataforma no Hero */
.btn-plataforma-hero {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    color: #000;
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(193, 169, 97, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.btn-plataforma-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(193, 169, 97, 0.7);
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-primary i,
.btn-plataforma-hero i {
    margin-right: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6);
}

.sinais-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/backgrounds/image.png') center/cover no-repeat;
    padding: 40px 0 80px;
}

.sinais-section .hero-content {
    margin-bottom: 40px;
}

/* Botão Cadastro Topo */
.btn-cadastro-topo {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 30px 0;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    border: 3px solid #fff;
    animation: pulseButton 2s infinite;
}

.btn-cadastro-topo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

.btn-cadastro-topo i {
    margin-right: 10px;
    animation: rocket 1.5s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 0, 0.8);
    }
}

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

/* Botão Como Acessar */
.btn-como-acessar {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-como-acessar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.btn-como-acessar i {
    margin-right: 10px;
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

/* Modal Content */
.modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.2);
    color: #fff;
    border: 2px solid #ff0000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff0000;
    transform: rotate(90deg) scale(1.1);
}

/* Modal Title */
.modal-content h2 {
    color: #ff8c00;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Modal Steps */
.modal-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s;
}

.step:hover {
    transform: translateX(5px);
    border-color: #ff8c00;
    background: rgba(0, 0, 0, 0.8);
}

.step-number {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

.step-content strong {
    color: #ff8c00;
}

/* Modal Footer */
.modal-footer {
    margin-top: 30px;
    text-align: center;
}

.btn-modal-action {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
    border: 3px solid #fff;
}

.btn-modal-action:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.7);
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

.btn-modal-action i {
    margin-right: 10px;
}

/* ============================================
   ZEUS PRIME THEME STYLES
   ============================================ */

/* Logo Text */
.logo-text {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

/* Header Buttons */
.btn-header {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-entrar, .btn-criar {
    background: transparent;
    color: #ff8c00;
    border: 1px solid #ff8c00;
}

.btn-entrar:hover, .btn-criar:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

.btn-assinar, .btn-usuario {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
}

.btn-assinar:hover, .btn-usuario:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Hero Section Zeus */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    color: #ff8c00;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 0, 0.8));
    }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-hero-primary, .btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 107, 0, 0.1);
    color: #ff8c00;
    border: 2px solid #ff8c00;
}

.btn-hero-secondary:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-4px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.3);
}

.stat-title {
    color: #ff8c00;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.stat-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.stat-status {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

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

.status-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.status-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.status-value.online {
    color: #10b981;
    font-weight: 700;
}

.status-value.active {
    color: #ff8c00;
    font-weight: 700;
}

/* Footer Zeus */
footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-dev {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}

.footer-dev a {
    color: #ff8c00;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-dev a:hover {
    color: #ffa500;
    text-decoration: underline;
}

/* Seletor de Risco */
.risk-selector {
    margin: 30px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.risk-selector h3 {
    color: #ff8c00;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.risk-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.btn-risk {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-risk i {
    font-size: 32px;
    margin-bottom: 5px;
}

.btn-risk span {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-risk small {
    font-size: 12px;
    color: #888;
}

.btn-risk:hover {
    transform: translateY(-3px);
    border-color: #ff8c00;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.btn-risk.active {
    border-color: #ff8c00;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

.btn-risk.active small {
    color: #fff;
}

/* Campo Container */
.campo-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out;
}

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

/* Campo de Jogo */
.campo-jogo {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
    width: 100%;
    align-items: stretch;
    justify-content: center;
}

.campo-coluna {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 1;
    max-width: 80px;
    animation: fadeInScale 0.5s ease-out backwards;
}

.campo-coluna.shake-coluna {
    animation: shakeColuna 0.6s ease-in-out;
}

@keyframes shakeColuna {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.campo-coluna:nth-child(1) { animation-delay: 0.1s; }
.campo-coluna:nth-child(2) { animation-delay: 0.15s; }
.campo-coluna:nth-child(3) { animation-delay: 0.2s; }
.campo-coluna:nth-child(4) { animation-delay: 0.25s; }
.campo-coluna:nth-child(5) { animation-delay: 0.3s; }
.campo-coluna:nth-child(6) { animation-delay: 0.35s; }
.campo-coluna:nth-child(7) { animation-delay: 0.4s; }
.campo-coluna:nth-child(8) { animation-delay: 0.45s; }
.campo-coluna:nth-child(9) { animation-delay: 0.5s; }
.campo-coluna:nth-child(10) { animation-delay: 0.55s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.campo-posicao {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(200, 220, 180, 0.9) 0%, rgba(180, 200, 160, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.4s;
    cursor: pointer;
    min-height: 50px;
    width: 100%;
    flex: 1;
}

.campo-posicao:hover {
    border-color: #c9a961;
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
}

.campo-posicao.revelado {
    animation: revelar 0.5s ease-out;
}

.campo-posicao.correto {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    font-weight: bold;
}

.campo-posicao.errado {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.6) 0%, rgba(60, 60, 60, 0.6) 100%);
    border-color: rgba(0, 0, 0, 0.3);
    color: #ff0000;
    animation: fadeInErrado 0.3s ease-out;
}

.campo-posicao.errado i {
    font-size: 28px;
    color: #ff0000;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

@keyframes fadeInErrado {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes revelar {
    0% {
        transform: scale(0.8) rotateY(180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
    }
}

.campo-posicao.pulse {
    animation: pulse 0.6s ease-in-out;
}

/* Bola */
.bola {
    position: fixed;
    width: 50px;
    height: 50px;
    display: none;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bola i {
    font-size: 50px;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: bolaRotate 1s linear infinite;
}

@keyframes bolaRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.2);
    }
}

/* Painel de Multiplicadores */
.multipliers-panel {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #c9a961;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.multipliers-panel h4 {
    color: #c9a961;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

#multipliersContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.multiplier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
    border: 1px solid #c9a961;
    transition: all 0.3s ease;
    animation: slideInLeft 0.4s ease-out backwards;
}

.multiplier-item:nth-child(1) { animation-delay: 0.7s; }
.multiplier-item:nth-child(2) { animation-delay: 0.75s; }
.multiplier-item:nth-child(3) { animation-delay: 0.8s; }
.multiplier-item:nth-child(4) { animation-delay: 0.85s; }
.multiplier-item:nth-child(5) { animation-delay: 0.9s; }
.multiplier-item:nth-child(6) { animation-delay: 0.95s; }
.multiplier-item:nth-child(7) { animation-delay: 1s; }
.multiplier-item:nth-child(8) { animation-delay: 1.05s; }
.multiplier-item:nth-child(9) { animation-delay: 1.1s; }
.multiplier-item:nth-child(10) { animation-delay: 1.15s; }

.multiplier-item:hover {
    transform: translateY(-3px);
    background: rgba(201, 169, 97, 0.2);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

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

.mult-linha {
    font-size: 12px;
    color: #888;
}

.mult-valor {
    font-size: 16px;
    font-weight: bold;
    color: #c9a961;
}

/* Caminho Info */
.caminho-info {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out 0.3s backwards;
}

.caminho-info h3 {
    color: #ff8c00;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.caminho-revelado {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.passo-revelado {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid #444;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.passo-numero {
    font-size: 14px;
    font-weight: bold;
    color: #c9a961;
    text-align: center;
}

.passo-direcao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
}

.passo-direcao i {
    font-size: 24px;
}

.passo-mult {
    font-size: 18px;
    font-weight: bold;
    color: #00ff00;
    text-align: center;
}

.multiplier-final {
    text-align: center;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 15px;
    border: 2px solid #00ff00;
}

.multiplier-final .label {
    display: block;
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.multiplier-final .value {
    font-size: 48px;
    font-weight: bold;
    color: #00ff00;
    transition: transform 0.3s ease-out;
}

.sinais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card-sinal {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #333;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.card-sinal:hover {
    transform: translateY(-8px);
    border-color: #c9a961;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.card-sinal h3 {
    color: #c9a961;
    margin-bottom: 15px;
    font-size: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(201, 169, 97, 0.5);
    font-weight: bold;
}

.sinal-image {
    width: 100%;
    height: 200px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.sinal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sinal-info {
    text-align: left;
}

.chute {
    font-size: 14px;
    margin-bottom: 8px;
}

.chute-destaque {
    color: #4169e1;
    font-weight: bold;
}

.estrategia {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.confianca {
    font-size: 14px;
}

.confianca-alta {
    color: #00ff00;
    font-weight: bold;
}

.validade-section {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 16px;
    padding: 35px;
    max-width: 650px;
    margin: 0 auto 40px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.validade-section h3 {
    color: #ff8c00;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-shadow: none;
    font-weight: 600;
    text-transform: uppercase;
}

.validade-ate {
    font-size: 24px;
    margin-bottom: 10px;
}

.validade-ate span {
    color: #ff8c00;
    font-weight: 700;
}

.expira-info {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.restante {
    font-size: 18px;
    margin-bottom: 20px;
}

.restante span {
    color: #ff8c00;
    font-weight: 700;
    font-size: 22px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #00ff00, #ffff00, #ff9500, #ff0000);
    transition: width 1s linear;
}

/* Botão para abrir plataforma */
.plataforma-cta {
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(193, 169, 97, 0.2) 0%, rgba(65, 105, 225, 0.2) 100%);
    border: 3px solid #c9a961;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(193, 169, 97, 0.4);
    animation: pulse 2s infinite;
}

.plataforma-cta h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plataforma-cta > p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

.btn-plataforma {
    display: inline-block;
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    color: #000;
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 25px 60px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(193, 169, 97, 0.5);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plataforma:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(193, 169, 97, 0.7);
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.plataforma-cta .disclaimer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #4caf50;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(193, 169, 97, 0.4);
    }
    50% {
        box-shadow: 0 15px 50px rgba(193, 169, 97, 0.7);
    }
}

footer {
    background-color: #0a0a0a;
    padding: 40px 0 20px;
    border-top: 2px solid #c9a961;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(201, 169, 97, 0.5));
}

.footer-logo p {
    color: #888;
}

.footer-links h3,
.footer-site h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icon i {
    font-size: 20px;
    color: #000;
}

.social-icon:hover {
    transform: scale(1.1);
    background-color: #d4af37;
}

.site-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.site-links a:hover {
    color: #c9a961;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.footer-bottom a {
    color: #c9a961;
    text-decoration: none;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    /* Header Mobile */
    header {
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    nav {
        display: flex;
        gap: 8px;
    }
    
    .btn-header {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .logo img {
        height: 45px;
    }
    
    /* Hero Zeus Mobile */
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-title {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-unit {
        font-size: 36px;
    }
    
    .stat-description {
        font-size: 13px;
    }
    
    .status-item {
        padding: 10px 0;
    }
    
    .status-label,
    .status-value {
        font-size: 13px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .btn-plataforma-hero {
        font-size: 1.1em;
        padding: 15px 35px;
        margin-bottom: 15px;
    }
    
    .btn-cadastro-topo {
        font-size: 1em;
        padding: 15px 30px;
        margin: 20px 0;
    }
    
    /* Risk Selector Mobile */
    .risk-selector {
        padding: 20px;
        margin: 20px auto;
    }
    
    .risk-selector h3 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .risk-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .btn-risk {
        padding: 16px;
    }
    
    .btn-risk i {
        font-size: 28px;
    }
    
    .btn-risk span {
        font-size: 16px;
    }
    
    .btn-risk small {
        font-size: 12px;
    }
    
    /* Button Primary Mobile */
    .btn-primary {
        width: 100%;
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .campo-container {
        padding: 15px 10px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .campo-jogo {
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .campo-coluna {
        gap: 5px;
        max-width: 100%;
    }
    
    .campo-posicao {
        font-size: 12px;
        min-height: 30px;
        border-radius: 5px;
        border-width: 1px;
    }
    
    .campo-posicao.errado i {
        font-size: 20px;
    }
    
    .multipliers-panel {
        padding: 15px 10px;
    }
    
    .multipliers-panel h4 {
        font-size: 16px;
    }
    
    .multiplier-item {
        padding: 8px 10px;
    }
    
    .mult-linha {
        font-size: 10px;
    }
    
    .mult-valor {
        font-size: 14px;
    }
    
    .caminho-info {
        padding: 20px 10px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    
    .bola {
        width: 35px;
        height: 35px;
    }
    
    .bola i {
        font-size: 35px;
    }
    
    .caminho-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .passo-revelado {
        grid-template-columns: 70px 1fr 70px;
        padding: 10px 8px;
        gap: 8px;
    }
    
    .passo-numero {
        font-size: 11px;
    }
    
    .passo-direcao {
        padding: 8px 10px;
        gap: 5px;
        font-size: 12px;
    }
    
    .passo-direcao i {
        font-size: 16px;
    }
    
    .passo-mult {
        font-size: 14px;
    }
    
    .multiplier-final {
        padding: 15px;
    }
    
    .multiplier-final .value {
        font-size: 32px;
    }
    
    .sinais-grid {
        grid-template-columns: 1fr;
    }
    
    .plataforma-cta {
        padding: 40px 20px;
        margin: 40px 20px 0;
    }
    
    .plataforma-cta h3 {
        font-size: 1.8em;
    }
    
    .plataforma-cta > p {
        font-size: 1em;
    }
    
    .btn-plataforma {
        font-size: 1.2em;
        padding: 20px 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Modal Responsivo */
    .btn-como-acessar {
        font-size: 0.9em;
        padding: 12px 25px;
        margin: 8px;
    }
    
    .modal-content {
        padding: 25px 20px;
        max-height: 85vh;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        right: 10px;
    }
    
    .modal-steps {
        gap: 15px;
    }
    
    .step {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .modal-footer {
        margin-top: 20px;
    }
    
    .btn-modal-action {
        font-size: 1em;
        padding: 14px 30px;
        width: 100%;
    }
    
    /* Footer Mobile */
    footer {
        padding: 30px 0;
    }
    
    .footer-text {
        font-size: 13px;
        padding: 0 20px;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 16px;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .hero-title {
        font-size: 84px;
    }
    
    .stat-number {
        font-size: 72px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 13px;
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-unit {
        font-size: 28px;
    }
    
    .btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .campo-posicao {
        min-height: 25px;
        font-size: 11px;
    }
}
