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

body {
    font-family: --font-primary;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: white;
    height: 100vh;
    position: relative;
    color: #222;
    background: url('/assets/images/backgrounds/minimalist\ full-page.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

header {
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
    padding: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    font-size: 1.2rem;
    color: #333;
    position: static;
    transform: none;
    margin-left: 40px;
}

.logo:hover {
    background-color: transparent;
    color: #319795;
}

.menu_navegacao {
    list-style: none;
    display: flex;
    position: absolute;
    right: 60px;
    top: 0;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 5px;
}

.menu_navegacao li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-underline-offset: 4px;
}

.menu_navegacao li a:hover {
    text-decoration: underline;
    background-color: transparent;
    color: #319795;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    padding: 20px 0;
}

.medias {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1vw;
    padding-top: 80px;
}

.media img {
    width: 11vw;
    height: 11vw;
    object-fit: contain;
    border-radius: 4%;
    display: block;
    pointer-events: none;
    will-change: transform;
}

.testimonials {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.testimonials h2 {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 30px;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #111;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ffff;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
}

.testimonial-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.testimonial img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card {
    border: 2px solid #4CAF50;
    /* verde */
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
}

.quote {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
}

.name {
    font-weight: bold;
    color: #222;
    margin-top: 20px;
}

.role {
    font-size: 0.9rem;
    color: #222;
}

.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: block;
}

.menu-wrapper {
    position: relative;
    margin-right: 20px;
}

body.dark-mode .menu-toggle {
    color: #eee;
}

.side-panel {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 20px;
    white-space: nowrap;
    min-width: 160px;
    text-align: left;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.side-panel button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
    text-align: left;
}

body.dark-mode .side-panel {
    background-color: #1e1e1e;
    color: #eee;
}

body.dark-mode #toggle-theme {
    color: #eee;
}

body.dark-mode {
    background: #121212;
    color: #eee;
}

body.dark-mode a {
    color: #eee;
}

body.dark-mode .logo {
    color: #eee;
}

body.dark-mode .logo:hover {
    color: #319795;
}

body.dark-mode footer {
    color: #eee;
}

body.dark-mode .testimonials h2 {
    color: #eee;
}

body.dark-mode .testimonial {
    background-color: #111;
}

body.dark-mode .testimonials .quote {
    color: #eee;
}

body.dark-mode .testimonials .name {
    color: #eee;
}

body.dark-mode .testimonials .role {
    color: #eee;
}

body.dark-mode #zen-mode {
    color: #eee;
}

body.dark-mode #game-mode {
    color: #eee;
}