/* Brazil-23bet.com - CARD FLIP LAYOUT (Layout #17) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* Header com efeito de vidro */
header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-size: 2.5em;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Navegação horizontal com efeito hover flip */
nav {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li a {
    display: block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

nav ul li a:hover {
    transform: rotateY(180deg) scale(1.1);
    background: linear-gradient(135deg, #FFA500, #FFD700);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Main content com card flip grid */
main {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Seções com efeito de card flip */
.flip-section {
    margin-bottom: 60px;
    perspective: 1000px;
}

.flip-section h2 {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Hero section com imagem grande */
.hero-section {
    position: relative;
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    color: #fff;
}

/* Grid de cards com flip effect */
.card-flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.flip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.flip-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.flip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.flip-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.flip-card p {
    color: #ddd;
    font-size: 1em;
}

/* CTA Button com animação */
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FFD700, #FF6B00);
    color: #000;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    margin: 30px auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    text-align: center;
    display: block;
    max-width: 400px;
}

.cta-button:hover {
    transform: scale(1.1) rotateZ(2deg);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.faq-item h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

/* Reviews Section */
.review {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.review:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-author {
    color: #FFD700;
    font-weight: bold;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2em;
}

/* Footer rico */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 20px 20px;
    margin-top: 80px;
    border-top: 3px solid #FFD700;
}

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

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.3em;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.license-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    .flip-section h2 {
        font-size: 1.8em;
    }
    
    .card-flip-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-direction: column;
    }
}
