/* brasil-999bet.com - Zig-Zag Layout + Brazilian Pride Theme */
:root {
    --brasil-green: #009C3B;
    --brasil-yellow: #FFDF00;
    --brasil-blue: #002776;
    --brasil-white: #FFFFFF;
    --tropical-orange: #FF6B35;
    --samba-pink: #FF006E;
    --dark-bg: #0F1419;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1A2332 100%);
    color: var(--brasil-white);
    line-height: 1.8;
}

/* Diagonal Header - UNIQUE DESIGN */
.diagonal-header {
    background: linear-gradient(135deg, var(--brasil-green), var(--brasil-yellow));
    padding: 40px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    z-index: 100;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-brasil {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}

.site-slogan {
    font-size: 2.2em;
    color: var(--brasil-blue);
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}

.cta-brasil {
    padding: 16px 35px;
    background: var(--brasil-blue);
    color: var(--brasil-yellow);
    text-decoration: none;
    font-size: 1.15em;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(0, 39, 118, 0.5);
    transition: all 0.3s;
    border: 3px solid var(--brasil-white);
}

.cta-brasil:hover {
    transform: scale(1.08);
    background: var(--brasil-yellow);
    color: var(--brasil-blue);
}

/* Zig-Zag Navigation */
.zigzag-nav {
    background: var(--brasil-blue);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.nav-zigzag-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.nav-zigzag-container a {
    padding: 16px 22px;
    color: var(--brasil-yellow);
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s;
    position: relative;
}

.nav-zigzag-container a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--brasil-green);
    transition: width 0.3s;
}

.nav-zigzag-container a:hover {
    background: var(--brasil-green);
    color: var(--brasil-white);
}

.nav-zigzag-container a:hover::after {
    width: 100%;
}

/* Zig-Zag Content Sections - COMPLETELY DIFFERENT */
.zigzag-container {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
}

.zigzag-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.1), rgba(255, 223, 0, 0.1));
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
}

.zigzag-section:nth-child(even) {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, rgba(0, 39, 118, 0.1), rgba(255, 107, 53, 0.1));
}

.zigzag-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 156, 59, 0.3);
}

.zigzag-text {
    flex: 1;
}

.zigzag-text h2 {
    font-size: 2em;
    color: var(--brasil-yellow);
    margin-bottom: 20px;
    border-bottom: 4px solid var(--brasil-green);
    padding-bottom: 12px;
}

.zigzag-text p {
    font-size: 1.08em;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.zigzag-image {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.zigzag-img-item {
    width: calc(50% - 10px);
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid var(--brasil-green);
    transition: all 0.3s;
}

.zigzag-img-item:hover {
    transform: scale(1.05);
    border-color: var(--brasil-yellow);
    box-shadow: 0 0 25px var(--brasil-yellow);
}

.zigzag-img-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Brazilian Pride Features */
.pride-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pride-card {
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.2), rgba(255, 223, 0, 0.1));
    border: 3px solid var(--brasil-green);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s;
}

.pride-card:hover {
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.3), rgba(255, 223, 0, 0.2));
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 156, 59, 0.4);
}

.pride-icon {
    font-size: 3.5em;
    margin-bottom: 18px;
}

.pride-card h3 {
    color: var(--brasil-yellow);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.pride-card p {
    font-size: 1.05em;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(0, 39, 118, 0.15), rgba(0, 0, 0, 0.3));
    padding: 45px;
    border-radius: 25px;
    margin: 50px 0;
    border: 3px solid var(--brasil-blue);
}

.faq-section h2 {
    font-size: 2.2em;
    color: var(--brasil-yellow);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 4px solid var(--brasil-green);
    padding-bottom: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-left: 6px solid var(--brasil-green);
    border-radius: 12px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--brasil-yellow);
}

.faq-question {
    font-size: 1.25em;
    color: var(--brasil-yellow);
    font-weight: bold;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 1.05em;
    line-height: 1.8;
    color: #DDD;
}

/* Reviews Section */
.reviews-section {
    margin: 50px 0;
}

.reviews-section h2 {
    font-size: 2.2em;
    color: var(--brasil-yellow);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 4px solid var(--brasil-green);
    padding-bottom: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(135deg, rgba(0, 156, 59, 0.1), rgba(0, 39, 118, 0.1));
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--brasil-green);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 156, 59, 0.3);
}

.review-stars {
    color: var(--brasil-yellow);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}

.review-author {
    font-weight: bold;
    color: var(--brasil-yellow);
    font-size: 1.1em;
}

.review-location {
    color: #AAA;
    font-size: 0.95em;
}

/* Brazilian Footer - EXTENSIVE */
.brasil-footer {
    background: linear-gradient(180deg, #000, var(--dark-bg));
    border-top: 6px solid var(--brasil-green);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-wave {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 45px;
    margin-bottom: 45px;
}

.footer-block h3 {
    color: var(--brasil-yellow);
    font-size: 1.5em;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--brasil-green);
    padding-bottom: 12px;
}

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

.footer-block ul li {
    margin-bottom: 14px;
}

.footer-block a {
    color: var(--brasil-white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05em;
}

.footer-block a:hover {
    color: var(--brasil-yellow);
}

.footer-block p {
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 1.05em;
}

.social-brasil {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

.social-circle {
    width: 48px;
    height: 48px;
    background: var(--brasil-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brasil-white);
    font-size: 1.4em;
    transition: all 0.3s;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--brasil-yellow);
    color: var(--brasil-blue);
    transform: scale(1.15) rotate(-10deg);
}

.payment-brasil {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.payment-badge {
    padding: 10px 18px;
    background: rgba(0, 156, 59, 0.2);
    border: 2px solid var(--brasil-green);
    border-radius: 10px;
    font-size: 0.95em;
    color: var(--brasil-yellow);
    font-weight: bold;
}

.footer-end {
    border-top: 2px solid var(--brasil-green);
    padding-top: 30px;
    text-align: center;
}

.footer-end p {
    margin-bottom: 12px;
    font-size: 1em;
    color: #CCC;
}

.footer-seals {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.seal-badge {
    padding: 12px 24px;
    background: var(--brasil-blue);
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
    color: var(--brasil-yellow);
    border: 2px solid var(--brasil-green);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .site-slogan {
        font-size: 1.6em;
    }
    
    .zigzag-section {
        flex-direction: column !important;
        padding: 25px;
    }
    
    .zigzag-img-item {
        width: 100%;
    }
    
    .footer-wave {
        grid-template-columns: 1fr;
    }
}
