body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
}

.layout-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Coluna esquerda com imagem */
.left-banner-bg {
    flex-shrink: 0;
    width: auto;
    height: 100%;
    background-image: url('../img/fundo.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    aspect-ratio: 2/3;
    position: relative;
}

.left-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Conteúdo da direita */
.right-content {
    flex: 1;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.right-content header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #ffffffcc;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.right-content main {
    padding: 80px 40px 40px;
}

.home-buttons {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-buttons button {
    padding: 10px 15px;
    border: none;
    background-color: #1976d2;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.home-buttons button:hover {
    background-color: #155a9c;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background-color: #f3f6ff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 380px;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card img.info-icon {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info-card h3 {
    font-size: 1.2rem;
    margin: 16px 16px 8px 16px;
}

.info-card p {
    font-size: 1rem;
    margin: 0 16px 16px 16px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .layout-container {
        flex-direction: column;
    }

    .left-banner-bg {
        width: 100%;
        height: auto;
        aspect-ratio: unset;
        background-position: top center;
        background-size: contain;
    }

    .right-content header {
        position: fixed;
        top: 0;
        width: 100%;
        height: auto;
        padding: 10px;
        flex-direction: column;
    }

    .right-content main {
        padding-top: 100px;
    }

    .home-buttons {
        flex-direction: row;
        top: auto;
        bottom: 10px;
        left: 0;
        right: 0;
        justify-content: center;
    }

    .home-buttons button {
        padding: 8px 12px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }

    .user-actions {
        align-self: flex-end;
    }
}

/* HEADER ESTILIZADO */
header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    background-color: #121212;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    color: white;
    background-color: #7b5e26;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-right: 80px; /* <-- aqui move o botão 60px à esquerda */
}


.user-actions a:hover {
    background-color: #c5900a;
}

.logo-fixo {
    position: fixed;
    top: -20px;
    left: 0;
    z-index: 1000;
}

.logo-fixo img {
    width: 250px;
    height: auto;
    display: block;
}

.playtrade-logo {
    font-size: 26px;
    font-weight: 800;
    color: #193c78;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-right: auto;
    padding-left: 200px;
}

.playtrade-logo span {
    color: #998254;
}


/* SITE*/.site-intro {
             background-color: #f9f9f9;
             border-radius: 12px;
             padding: 30px;
             margin-bottom: 40px;
             box-shadow: 0 0 10px rgba(0,0,0,0.05);
         }

.site-intro h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.site-intro span {
    color: #f7b500;
    font-weight: bold;
}

.intro-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.intro-box {
    flex: 1 1 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.intro-box h3 {
    margin-bottom: 10px;
}

.intro-box ul {
    padding-left: 20px;
}

footer {
    background-color: #fff;
    padding: 40px 20px 20px;
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    border-top: 1px solid #ddd;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centraliza horizontalmente */
    gap: 60px; /* Espaçamento entre colunas */
    margin-bottom: 20px;
}

.footer-section h3 {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #1976d2;
}

footer .copyright {
    font-size: 0.85rem;
    color: #777;
}


