/* bet10 - CSS Único - Prefixo: -b10 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --b10-primary: #ff8c00;
    --b10-secondary: #0a0e27;
    --b10-accent: #ffd700;
    --b10-text: #ffffff;
    --b10-bg: #0f1419;
    --b10-card-bg: #1a1f2e;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--b10-bg);
    color: var(--b10-text);
    line-height: 1.6;
}

/* Header */
.b10-header {
    background: linear-gradient(135deg, var(--b10-secondary) 0%, #1a1f3a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.b10-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b10-logo img {
    height: 60px;
    width: auto;
}

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

.b10-nav a {
    color: var(--b10-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.b10-nav a:hover {
    color: var(--b10-primary);
}

.b10-cta-btn {
    background: var(--b10-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.b10-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.5);
}

/* Menu Mobile */
.b10-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.b10-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--b10-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.b10-hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b10-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Sections */
.b10-section {
    padding: 4rem 0;
}

.b10-section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--b10-primary);
    text-align: center;
}

.b10-section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
}

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

.b10-card {
    background: var(--b10-card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.b10-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    border-color: var(--b10-primary);
}

.b10-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.b10-card-content {
    padding: 1.5rem;
}

.b10-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--b10-primary);
}

.b10-card-text {
    color: #ddd;
    line-height: 1.6;
}

/* Features Section */
.b10-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.b10-feature {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.b10-feature img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.b10-feature h3 {
    color: var(--b10-primary);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.b10-faq {
    max-width: 800px;
    margin: 0 auto;
}

.b10-faq-item {
    background: var(--b10-card-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--b10-primary);
}

.b10-faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--b10-primary);
    margin-bottom: 0.5rem;
}

.b10-faq-answer {
    color: #ddd;
    line-height: 1.6;
}

/* Reviews Section */
.b10-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.b10-review {
    background: var(--b10-card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--b10-accent);
}

.b10-review-author {
    font-weight: bold;
    color: var(--b10-primary);
    margin-bottom: 0.5rem;
}

.b10-review-rating {
    color: var(--b10-accent);
    margin-bottom: 1rem;
}

.b10-review-text {
    color: #ddd;
    font-style: italic;
}

/* Footer */
.b10-footer {
    background: var(--b10-secondary);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.b10-footer-section h3 {
    color: var(--b10-primary);
    margin-bottom: 1rem;
}

.b10-footer-section ul {
    list-style: none;
}

.b10-footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.b10-footer-section a:hover {
    color: var(--b10-primary);
}

.b10-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .b10-menu-toggle {
        display: flex;
    }
    
    .b10-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--b10-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .b10-nav.active {
        display: flex;
    }
    
    .b10-section-title {
        font-size: 2rem;
    }
    
    .b10-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.b10-text-center {
    text-align: center;
}

.b10-mt-2 {
    margin-top: 2rem;
}

.b10-mb-2 {
    margin-bottom: 2rem;
}

.b10-btn {
    display: inline-block;
    background: var(--b10-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.b10-btn:hover {
    background: var(--b10-accent);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.b10-mascot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 999;
    animation: b10-float 3s ease-in-out infinite;
}

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

