:root {
    --primary-color: #FFD700;
    --accent-color: #E31837;
    --background-color: #f7f7f7;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-standard: 0px 4px 10px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition-standard: all 0.3s ease-in-out;
}

body {
    background: url('../img/pães.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    background-color: var(--primary-color);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-standard);
    height: 80px;
}

.logo {
    height: 45px;
    object-fit: contain;
}

.nav-section {
    display: flex;
    align-items: center;
    margin-left: 60px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
    transition: color 0.2s;
}

.nav-link.active {
    color: #333 !important; /* Sempre preto, mesmo ativo */
}

.nav-link:hover,
.nav-link.active:hover {
    color: var(--accent-color); /* Vermelho ao passar o mouse */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.join-button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    font-size: 16px;
    transition: background 0.2s;
}

.join-button:hover {
    background: #b3132a;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.container2 {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-standard);
    background-color: var(--text-light);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    animation: slideIn 0.5s;
}

.container2 h2 {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 18px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content {
    background-color: var(--background-color);
    flex-grow: 1;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.lojas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.lojas-list li {
    margin-bottom: 18px;
    transition: var(--transition-standard);
    border-radius: 10px;
    overflow: hidden;
}

.lojas-list li a {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.lojas-list li a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    transform: translateY(-2px) scale(1.03);
}

.loja-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.footer {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 20px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .container2 {
        max-width: 98vw;
        margin: 0 1vw;
    }
    .content {
        padding: 18px 4px;
    }
    .main-content {
        padding-top: 90px;
    }
    .header {
        padding: 10px 10px;
        height: 60px;
    }
    .logo {
        height: 32px;
    }
}