/* Página de Promoções - PINBET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1a0a2e;
    color: #ffffff;
    line-height: 1.6;
}

.main-content {
    min-height: 100vh;
    background: #1a0a2e;
    padding-bottom: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2a004a 0%, #4a148c 100%);
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

/* Promocoes Section */
.promocoes-section {
    padding: 0 0 60px;
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-card {
    background: linear-gradient(135deg, #2a004a 0%, #4a148c 100%);
    border: 1px solid #6a1b9a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.4);
    border-color: #99ff00;
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6b00;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promo-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a0a2e;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.05);
}

.promo-content {
    padding: 20px;
}

.promo-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.promo-subtitle {
    color: #99ff00;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.promo-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #99ff00;
    color: #000000;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.promo-btn:hover {
    background: #7acc00;
    transform: translateX(5px);
}

.promo-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.promo-btn:hover i {
    transform: translateX(3px);
}

/* Featured Promo (Primeira) */
.promo-card.featured {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
    border: 2px solid #99ff00;
}

.promo-card.featured .promo-image {
    height: 200px;
}

.promo-card.featured .promo-title {
    font-size: 18px;
}

.promo-card.featured .promo-subtitle {
    font-size: 14px;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #6a1b9a 0%, #8b5cf6 100%);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.footer-logo h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.footer-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
}

.footer-info p {
    margin: 0 0 15px 0;
}

.footer-seal {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.seal-image {
    max-width: 150px;
    height: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.links-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-column ul li {
    margin-bottom: 12px;
}

.links-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.links-column ul li a:hover {
    color: #99ff00;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 32px;
}

.payment-methods i {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #99ff00;
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #99ff00;
    color: #000000;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .promocoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
    
    .promocoes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-card.featured .promo-image {
        height: 220px;
    }
    
    .promo-image {
        height: 200px;
    }
    
    .promo-content {
        padding: 20px;
    }
    
    .promo-title {
        font-size: 18px;
    }
    
    .promo-card.featured .promo-title {
        font-size: 20px;
    }
    
    .promo-subtitle {
        font-size: 14px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
    }
    
    .promo-card.featured .promo-image {
        height: 200px;
    }
    
    .promo-image {
        height: 180px;
    }
    
    .promocoes-grid {
        gap: 20px;
    }
    
    .promo-btn {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        font-size: 24px;
    }
}
