/* assets/style.css - VERSÃO MELHORADA COM MELHOR LEGIBILIDADE */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    --text-primary: #ffffff;
    --text-secondary: #d0d0e0;
    --accent-primary: #ff4757;
    --accent-secondary: #ff6b81;
    --accent-success: #2ed573;
    --accent-info: #5f27cd;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 71, 87, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://1.bp.blogspot.com/-SAFQi-EHKYQ/YOBwnv1udjI/AAAAAAAAJI0/m87IlayBiwccVF-VMsB5hUeQjLepelD-ACPcBGAsYHg/w919/ragnarok-x-next-generation-4k-uhdpaper.com-30.0_b-thumbnail.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0.3);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(95, 39, 205, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(46, 213, 115, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    padding: 80px 20px 80px; /* Padding ajustado */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Espaçamento entre os elementos do header */
}

.header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.3) 0%, rgba(95, 39, 205, 0.2) 50%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    animation: headerGlow 6s ease-in-out infinite;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 71, 87, 0.08) 0%, transparent 50%),
        linear-gradient(-135deg, rgba(95, 39, 205, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes headerGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
    }
}

/* NOVOS ESTILOS PARA O HEADER (baseado no index.php) */
.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-icon img {
    width: 60px;
    height: 60px;
    display: block;
    
    /* Regras adicionadas para forçar a ocultação do texto alternativo */
    font-size: 0;
    color: transparent;
}

.header h1 {
    font-size: clamp(3rem, 10vw, 5.5rem); /* Fonte levemente ajustada */
    font-weight: 900;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 30%, #ffa502 60%, #ff6348 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0; /* Margin reset */
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease-out, textShine 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 80px rgba(255, 71, 87, 0.5);
    filter: drop-shadow(0 4px 20px rgba(255, 71, 87, 0.4));
}

.header-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #e0e0e0;
    font-weight: 400;
    max-width: 600px;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    backdrop-filter: blur(10px);
}

.verified-badge span:first-child {
    font-size: 1.5rem;
}

.verified-badge div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.badge-title {
    color: var(--accent-success);
    font-weight: 600;
    font-size: 1rem;
}

.badge-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.header-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.header-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
/* FIM DOS NOVOS ESTILOS PARA O HEADER */


@keyframes textShine {
    0%, 100% {
        filter: drop-shadow(0 4px 20px rgba(255, 71, 87, 0.4)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(255, 71, 87, 0.8)) brightness(1.2);
    }
}

.header p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 1);
}

.header-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCoin 8s ease-in-out infinite;
    opacity: 0.4;
}

.floating-coin:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.floating-coin:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.floating-coin:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.floating-coin:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 10s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.server-section {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.server-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.server-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* CARDS COM MELHOR LEGIBILIDADE */
.offer-card {
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    cursor: pointer;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-success));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 71, 87, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    background: rgba(26, 26, 38, 0.98);
}

.card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    filter: brightness(1.1) saturate(1.2);
    position: relative;
    z-index: 1;
}

.offer-card:hover .card-image img {
    transform: scale(1.1);
    filter: brightness(1.3) saturate(1.4);
}

.card-content {
    padding: 32px 28px;
    position: relative;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-success);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 15px rgba(46, 213, 115, 0.6), 0 0 20px rgba(46, 213, 115, 0.3);
}

.card-price::before {
    content: '💰';
    font-size: 1.5rem;
}

.card-action-hint {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.offer-card:hover .card-action-hint {
    color: var(--accent-primary);
    background: rgba(255, 71, 87, 0.15);
}

.no-offers {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    padding: 60px 20px;
    background: rgba(18, 18, 26, 0.9);
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* === MODAL STYLES COM MELHOR LEGIBILIDADE === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 71, 87, 0.3);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 71, 87, 0.3);
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.modal-header {
    position: relative;
    text-align: center;
    padding: 40px 30px 30px;
}

.modal-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 0 30px 40px;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.modal-info-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.modal-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.modal-value.accent-green {
    color: var(--accent-success);
    font-size: 1.4rem;
    text-shadow: 0 2px 15px rgba(46, 213, 115, 0.6);
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.modal-whatsapp-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    position: relative;
    overflow: hidden;
}

.modal-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.modal-whatsapp-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modal-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.modal-whatsapp-btn svg {
    position: relative;
    z-index: 1;
}

/* ESTILOS ADMIN COM MELHOR LEGIBILIDADE */
.admin-container {
    max-width: 900px;
    background: rgba(18, 18, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 50px;
    border-radius: 24px;
    margin: 50px auto;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.admin-container h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-container h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, select, textarea {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.15);
}

select option {
    background: #1a1a2e;
    color: #ffffff;
}

button {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.offer-manage-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.offer-manage-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-manage-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.delete-btn {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(255, 71, 87, 0.2);
    transform: scale(1.05);
}

/* MODAL DE AJUDA COM MELHOR LEGIBILIDADE */
.help-modal {
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.help-modal-content {
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.help-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.help-modal-close:hover {
    background: rgba(255, 71, 87, 0.3);
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.help-section {
    max-width: 900px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease-out;
}

.help-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.help-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.help-card p, .help-card li {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.steps-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-success);
    position: relative;
    padding-left: 60px;
}

.step-number {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

.warning-box {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.warning-box h4 {
    color: #FFD700;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.warning-box p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.info-box {
    background: rgba(95, 39, 205, 0.15);
    border: 2px solid rgba(95, 39, 205, 0.5);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.info-box h4 {
    color: var(--accent-info);
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(95, 39, 205, 0.5);
}

.info-box ul {
    margin: 10px 0;
    padding-left: 20px;
}

.info-box li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-success);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(46, 213, 115, 0.5);
}

.faq-answer {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-btn {
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-primary {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.9) 0%, rgba(255, 107, 129, 0.9) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.cta-btn-secondary {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.9) 0%, rgba(39, 174, 96, 0.9) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

.cta-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 213, 115, 0.6);
}

/* Responsividade Geral */
@media (max-width: 768px) {
    .offer-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .header {
        padding: 60px 20px 40px;
    }
    
    .admin-container {
        padding: 30px 20px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content {
        margin: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

.premium-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
}

/* Background animado com gradientes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 71, 87, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(142, 68, 173, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(46, 213, 115, 0.1) 0%, transparent 60%);
    animation: bgPulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Partículas flutuantes */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 11s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 16s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 12s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; animation-duration: 15s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Conteúdo principal */
.header-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

/* Logo e título com efeito 3D */
.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.logo-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 30%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 71, 87, 0.3);
    animation: floatLogo 4s ease-in-out infinite;
    font-size: 0;
    color: transparent;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.main-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 25%, #ffa502 50%, #ff6348 75%, #ff4757 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -4px;
    line-height: 1;
    text-shadow: 0 0 80px rgba(255, 71, 87, 0.5);
    animation: gradientFlow 5s ease infinite;
    position: relative;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtítulo com efeito */
.subtitle-premium {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features com ícones */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Servidores com badges premium */
.servers-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.server-badge {
    position: relative;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(95, 39, 205, 0.2) 0%, rgba(142, 68, 173, 0.2) 100%);
    border: 2px solid rgba(95, 39, 205, 0.4);
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.server-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.server-badge:hover::before {
    left: 100%;
}

.server-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(95, 39, 205, 0.4);
    border-color: rgba(95, 39, 205, 0.8);
}

/* Badge verificado premium */
.verified-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.15) 0%, rgba(39, 174, 96, 0.15) 100%);
    border: 2px solid rgba(46, 213, 115, 0.4);
    padding: 20px 40px;
    border-radius: 60px;
    backdrop-filter: blur(15px);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
    transition: all 0.4s ease;
}

.verified-badge-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(46, 213, 115, 0.4);
}

.verified-icon-premium {
    font-size: 2.5rem;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verified-text-premium {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.verified-title-premium {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-success);
    text-shadow: 0 2px 10px rgba(46, 213, 115, 0.5);
}

.verified-subtitle-premium {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Botões de ação premium */
.header-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.cta-button {
    position: relative;
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-primary {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 71, 87, 0.4);
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 71, 87, 0.6);
}

.cta-secondary {
    background: linear-gradient(135deg, #2ed573 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(46, 213, 115, 0.4);
}

.cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(46, 213, 115, 0.6);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceScroll 2s infinite;
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes bounceScroll {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scrollDot {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Responsividade Premium Header */
@media (max-width: 768px) {
    .premium-header {
        padding: 60px 20px 40px;
    }

    .brand-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .logo-glow {
        width: 120px;
        height: 120px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
    
    .main-title {
        letter-spacing: -2px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px 20px;
    }
    
    .servers-container {
        gap: 12px;
    }
    
    .server-badge {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .header-buttons-premium {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .verified-badge-premium {
        flex-direction: column;
        text-align: center;
    }

    .verified-text-premium {
        text-align: center;
    }
}

/* UPDATED CLEAN HEADER STYLES */
.clean-header {
    position: relative;
    min-height: 70vh; /* REDUZIDO de 100vh para 70vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px; /* REDUZIDO de 60px para 40px */
    overflow: hidden;
}

/* Fundo sutil - apenas um brilho discreto */
.header-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: gentlePulse 6s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Conteúdo centralizado */
.header-content-clean {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo + Título lado a lado */
.brand-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px; /* REDUZIDO de 20px para 15px */
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-clean {
    width: 70px;
    height: 70px;
    border-radius: 20%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.logo-clean:hover {
    transform: scale(1.05);
}

.title-clean {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 50%, #ffa502 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
}

/* Subtítulo simples */
.subtitle-clean {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 25px; /* REDUZIDO de 35px para 25px */
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Servidores - tags simples */
.servers-clean {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px; /* REDUZIDO de 40px para 30px */
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.server-tag {
    padding: 8px 20px;
    background: rgba(95, 39, 205, 0.15);
    border: 1px solid rgba(95, 39, 205, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.server-tag:hover {
    background: rgba(95, 39, 205, 0.25);
    border-color: rgba(95, 39, 205, 0.5);
    transform: translateY(-2px);
}

/* Botões principais - clean */
.cta-clean {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px; /* REDUZIDO de 30px para 25px */
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.btn-clean {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 71, 87, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Info discreta no rodapé */
.info-clean {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.info-clean span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* REDUZIR ESPAÇO ENTRE HEADER E OFERTAS */
main {
    margin-top: -20px; /* Puxa o conteúdo para cima */
}

.server-section:first-child {
    margin-top: 0; /* Remove margem do primeiro servidor */
}

/* Responsividade Clean Header */
@media (max-width: 768px) {
    .clean-header {
        padding: 30px 20px; /* REDUZIDO de 40px para 30px */
        min-height: 80vh; /* Ajustado para mobile */
    }
    
    .brand-clean {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .logo-clean {
        width: 60px;
        height: 60px;
    }
    
    .title-clean {
        letter-spacing: -1px;
    }
    
    .subtitle-clean {
        margin-bottom: 20px;
    }
    
    .servers-clean {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .server-tag {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .cta-clean {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .btn-clean {
        width: 100%;
        text-align: center;
    }
    
    .info-clean {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .info-clean span {
        justify-content: center;
    }
    
    main {
        margin-top: -10px;
    }
}