/* br-007bet.com - Vertical Accordion Layout + Spy Theme */
:root {
    --spy-black: #000000;
    --spy-gold: #D4AF37;
    --spy-silver: #C0C0C0;
    --spy-red: #8B0000;
    --spy-green: #009B3A;
}

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

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--spy-black) 0%, #1a1a1a 100%);
    color: var(--spy-silver);
    line-height: 1.6;
}

/* Header com tema 007 */
header {
    background: linear-gradient(90deg, var(--spy-black) 0%, var(--spy-red) 100%);
    padding: 20px 0;
    border-bottom: 3px solid var(--spy-gold);
    position: relative;
    overflow: hidden;
}

header::before {
    content: "007";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.05);
    z-index: 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--spy-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.site-title {
    font-size: 2.5em;
    color: var(--spy-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
}

/* Navegação em acordeão vertical */
nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    border-bottom: 2px solid var(--spy-gold);
}

nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

nav a {
    display: block;
    padding: 12px 20px;
    color: var(--spy-silver);
    text-decoration: none;
    background: linear-gradient(135deg, var(--spy-black), var(--spy-red));
    border: 1px solid var(--spy-gold);
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

nav a:hover {
    background: linear-gradient(135deg, var(--spy-gold), var(--spy-red));
    color: var(--spy-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

/* Container principal */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Seções em acordeão vertical */
section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(139, 0, 0, 0.3));
    margin-bottom: 30px;
    padding: 30px;
    border-left: 5px solid var(--spy-gold);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1));
}

h1, h2, h3 {
    color: var(--spy-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5em;
    border-bottom: 2px solid var(--spy-gold);
    padding-bottom: 10px;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

/* Grade de imagens em estilo dossier */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--spy-gold);
    border-radius: 5px;
    background: var(--spy-black);
    transition: all 0.3s;
}

.image-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--spy-red);
}

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

.image-card::after {
    content: "CLASSIFIED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--spy-red);
    color: white;
    padding: 5px 10px;
    font-size: 0.7em;
    font-weight: bold;
    transform: rotate(15deg);
}

/* FAQ em estilo de relatório secreto */
.faq {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border: 1px dashed var(--spy-gold);
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--spy-gold);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--spy-gold);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-question::before {
    content: "Q: ";
    color: var(--spy-red);
}

.faq-answer::before {
    content: "A: ";
    color: var(--spy-green);
    font-weight: bold;
}

/* Avaliações em estilo de relatório de agente */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.review {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 2px solid var(--spy-gold);
    border-radius: 5px;
    position: relative;
}

.review::before {
    content: "★★★★★";
    color: var(--spy-gold);
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.review-author {
    color: var(--spy-gold);
    font-weight: bold;
    margin-top: 10px;
}

.review-author::before {
    content: "— Agent ";
}

/* Botões em estilo de missão */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--spy-red), var(--spy-black));
    color: var(--spy-gold);
    text-decoration: none;
    border: 2px solid var(--spy-gold);
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--spy-gold), var(--spy-red));
    color: var(--spy-black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Rodapé rico */
footer {
    background: linear-gradient(135deg, var(--spy-black), var(--spy-red));
    color: var(--spy-silver);
    padding: 40px 0 20px;
    border-top: 3px solid var(--spy-gold);
    margin-top: 60px;
}

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

.footer-section h3 {
    color: var(--spy-gold);
    margin-bottom: 15px;
    font-size: 1.2em;
}

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

.footer-section a {
    color: var(--spy-silver);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--spy-gold);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--spy-gold);
    font-size: 0.9em;
}

.license {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border: 1px solid var(--spy-gold);
    border-radius: 5px;
    margin-top: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.5em;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
}
