/* 3191 Bet Plataforma - Theme CSS */
/* Esquema de cores: Azul Royal (#0066cc) e Dourado (#ffd700) */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f0f4f8;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.05);
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ffd700;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.button {
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.button-gold {
    background-color: #ffd700;
    color: #0066cc;
}

.button-gold:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.button-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.button-outline:hover {
    background-color: #ffffff;
    color: #0066cc;
}

/* Hero Banner */
.hero-section {
    background: linear-gradient(135deg, #004c99 0%, #0066cc 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Section Styles */
.content-section {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.content-section h2 {
    color: #0066cc;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid #ffd700;
    padding-left: 1rem;
}

.content-section h3 {
    color: #004c99;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.card-content p {
    color: #555;
    line-height: 1.7;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.benefit-item h4 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: #001a33;
    color: #ffffff;
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.site-footer p {
    margin-bottom: 0.8rem;
}

.site-footer a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffed4e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
}

