@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary-pink: #E91E8C;
    --primary-blue: #0282b1;
    --color-azure-35: rgba(2, 133, 177, 1);
    --color-magenta-40: rgba(122, 71, 133, 1);
    --purple: #7B3FF2;
    --light-purple: #E8D5F2;
    --dark-purple: #4A235A;
    --light-bg: #E8F4F8;
    --header-bg: #E8F7FC;
    --section-alt-bg: #E0F3F9;
    --footer-dark: #5D1B7A;
    --font-heading: 'Comfortaa', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-body: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="title"],
[class*="subtitle"],
[class*="heading"] {
    font-family: var(--font-heading);
}

/* NAVBAR */
@keyframes navbarAurora {
    0% {
        background-position: 0% 50%, 12% 42%, 88% 36%, 50% 100%;
        transform: scale(1.04) rotate(0deg);
    }

    50% {
        background-position: 100% 50%, 30% 58%, 70% 44%, 50% 0%;
        transform: scale(1.08) rotate(-1deg);
    }

    100% {
        background-position: 0% 50%, 12% 42%, 88% 36%, 50% 100%;
        transform: scale(1.05) rotate(0.8deg);
    }
}

@keyframes navbarSheen {
    0% {
        transform: translateX(-130%);
        opacity: 0;
    }

    20% {
        opacity: 0.28;
    }

    50% {
        opacity: 0.42;
    }

    80% {
        opacity: 0.28;
    }

    100% {
        transform: translateX(130%);
        opacity: 0;
    }
}

.navbar {
    background: linear-gradient(135deg, rgba(232, 247, 252, 0.92) 0%, rgba(247, 252, 255, 0.95) 48%, rgba(232, 247, 252, 0.92) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(0, 163, 224, 0.08);
    box-shadow: 0 8px 24px rgba(0, 163, 224, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: -30% -10%;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0.42) 34%, rgba(233, 30, 140, 0.12) 52%, rgba(0, 163, 224, 0.12) 70%, rgba(255, 255, 255, 0) 86%),
        radial-gradient(circle at 18% 44%, rgba(233, 30, 140, 0.22) 0%, transparent 32%),
        radial-gradient(circle at 82% 36%, rgba(0, 163, 224, 0.24) 0%, transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(123, 63, 242, 0.16) 0%, transparent 38%);
    background-size: 220% 220%, 160% 160%, 160% 160%, 180% 180%;
    background-position: 0% 50%, 12% 42%, 88% 36%, 50% 100%;
    opacity: 0.95;
    pointer-events: none;
    transform-origin: center;
    animation: navbarAurora 24s ease-in-out infinite;
}

.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 76%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: navbarSheen 12s linear infinite;
}

.container-header {
    width: min(1216px, calc(100% - 48px));
    min-height: 126px;
    margin: 0 auto;
    padding: 16px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.logo::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 24px;
    bottom: -8px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-pink) 0%, rgba(0, 163, 224, 0.9) 100%);
    transform: scaleX(0.72);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo img {
    width: 236px;
    height: auto;
    opacity: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.logo:hover,
.logo:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.logo:hover img,
.logo:focus-visible img {
    transform: translateY(-2px) scale(1.01);
    filter: drop-shadow(0 10px 18px rgba(0, 163, 224, 0.16));
}

.logo[aria-current="page"]::after {
    transform: scaleX(0.88);
    opacity: 0.72;
}

.logo[aria-current="page"] img {
    transform: translateY(-1px) scale(1.01);
    filter: drop-shadow(0 8px 14px rgba(233, 30, 140, 0.12));
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    opacity: 1;
    position: static;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 85%);
    transform: translateX(-180%);
    transition: transform 0.65s ease;
}

.nav-links a > * {
    position: relative;
    z-index: 1;
}

.nav-links a[href="/jogos"],
.nav-artigos,
.nav-projeto,
.nav-equipe,
.nav-parceiros,
.nav-contato {
    width: auto;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
}

.nav-text-jogos,
.nav-text-artigos,
.nav-text-projeto,
.nav-text-equipe,
.nav-text-parceiros,
.nav-text-contato {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: inherit;
    font-size: inherit;
    line-height: 1.2;
    color: currentColor;
}

.nav-icon-jogos,
.nav-icon-artigos,
.nav-icon-projeto,
.nav-icon-equipe,
.nav-icon-parceiros,
.nav-icon-contato {
    width: 18px;
    height: 18px;
    opacity: 1;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.nav-text-projeto-container {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(0, 163, 224, 0.14);
    box-shadow: 0 12px 24px rgba(0, 163, 224, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
    transform: translateX(180%);
}

.nav-links a:hover img,
.nav-links a:focus-visible img {
    transform: scale(1.08) rotate(-6deg);
}

.nav-links a[aria-current="page"] {
    color: var(--primary-pink);
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.16) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(233, 30, 140, 0.22);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.14);
    transform: translateY(-1px);
}

.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-pink) 0%, #ff74b8 100%);
}

.nav-links a[aria-current="page"] img {
    transform: scale(1.04);
    filter: drop-shadow(0 8px 12px rgba(233, 30, 140, 0.15));
}

.nav-links a[aria-current="page"]:hover,
.nav-links a[aria-current="page"]:focus-visible {
    color: var(--primary-pink);
    box-shadow: 0 14px 28px rgba(233, 30, 140, 0.18);
}

/* HERO SECTION */
.hero {
    background: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink) 50%, #E91E8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
    font-weight: 500;
}

.btn-primary {
    background: var(--color-magenta-40, rgba(122, 71, 133, 1));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(122, 71, 133, 0.28);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(122, 71, 133, 0.36);
    background: rgba(104, 56, 114, 1);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(122, 71, 133, 0.24);
}

.icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.controller-icon {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.controller-icon--button {
    width: 18px;
    height: 18px;
}

.controller-icon--button-large {
    width: 22px;
    height: 22px;
}

.controller-icon--placeholder {
    width: clamp(52px, 10vw, 64px);
    height: clamp(52px, 10vw, 64px);
}

.controller-icon--placeholder-large {
    width: clamp(72px, 14vw, 96px);
    height: clamp(72px, 14vw, 96px);
}

/* HERO IMAGE */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: min(100%, 560px);
    aspect-ratio: 16 / 11;
    display: block;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 28px;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 26px 54px rgba(2, 130, 177, 0.14), 0 14px 28px rgba(122, 71, 133, 0.18);
}

.illustration-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.illustration-placeholder svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(123, 63, 242, 0.2));
}

/* JOGOS EM DESTAQUE */
.featured-games {
    background: var(--section-alt-bg);
    padding: 80px 0;
}

.featured-games-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.section-header--featured {
    text-align: left;
    margin-bottom: 0;
}

.section-header--featured p {
    max-width: 440px;
    margin: 0;
}

.featured-games-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 14px 22px;
    border: 2px solid var(--primary-blue);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.featured-games-link:hover {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    background: white;
    transform: translateX(4px);
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.featured-games-slot {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.featured-games-slot-line {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: rgba(2, 130, 177, 0.12);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--primary-blue);
    max-width: 400px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(2, 130, 177, 0.08);
    box-shadow: 0 8px 20px rgba(2, 130, 177, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    max-height: 520px;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 130, 177, 0.1);
}

.game-cover {
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #eee6ef 0%, #ede2ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-games .game-cover {
    height: 250px;
}

.game-cover-link {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    text-decoration: none;
}

.game-cover-link:focus-visible {
    outline: 3px solid rgba(2, 130, 177, 0.55);
    outline-offset: -3px;
}

.game-cover-link .game-cover-image {
    transition: transform 0.35s ease;
}

.game-cover-link:hover .game-cover-image,
.game-cover-link:focus-visible .game-cover-image {
    transform: scale(1.05);
}

.game-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 100%;
    height: 100%;
}

.featured-game-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 16px 14px;
    min-height: 0;
    flex: 1;
    overflow: hidden;
}

.game-card h3 {
    font-size: 17px;
    color: var(--color-magenta-40, rgba(122, 71, 133, 1));
    margin: 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card p {
    font-size: 13px;
    color: #7b7290;
    margin: 0;
    flex: 1;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.featured-game-description {
    font-size: 13px;
    color: #7b7290;
    margin: 0;
    flex: 1;
    line-height: 1.55;
    display: block;
    overflow: visible;
}

.featured-game-description-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}

.featured-game-description-more:hover,
.featured-game-description-more:focus-visible {
    text-decoration: underline;
}

.game-card p[style*="overflow"],
.game-card p:has(+ .game-tags) {
    --has-content: 1;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    max-height: 32px;
    overflow: hidden;
}

.tag {
    background: rgba(255, 151, 212, 0.22);
    color: #e46ab3;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-secondary {
    background: var(--purple);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary--featured {
    background: var(--color-magenta-40, rgba(122, 71, 133, 1));
    padding: 11px 16px;
    border-radius: 14px;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(122, 71, 133, 0.22);
}

.btn-secondary-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary-trailing-icon {
    flex-shrink: 0;
    opacity: 0.96;
}

.btn-secondary:hover {
    background: #6B2FD1;
    transform: translateY(-2px);
}

.btn-secondary--featured:hover {
    background: rgba(104, 56, 114, 1);
    transform: translateY(-1px);
}

.controller-icon--button-featured {
    width: 14px;
    height: 14px;
}

.section-footer {
    text-align: right;
}

.link-arrow {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
    display: inline-block;
}

/* FEATURES SECTION */
.features {
    background: white;
    padding: 50px 0;
    text-align: center;
}

.features h2 {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.features > .container > p {
    font-size: 16px;
    color: var(--primary-blue);
    max-width: 600px;
    margin: 0 auto 8px;
}

.features > .container > p:last-of-type {
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.feature-item {
    padding: 32px 28px;
    background: white;
    border: 2px solid rgba(233, 30, 140, 0.18);
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.feature-item:hover {
    border-color: rgba(233, 30, 140, 0.28);
    background: rgba(233, 30, 140, 0.04);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 18px;
    flex-shrink: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.feature-item h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.feature-item p {
    font-size: 14px;
    color: #7b7290;
    margin: 0;
    line-height: 1.6;
}

/* INSTITUIÇÃO RESPONSÁVEL */
.institution {
    background: var(--section-alt-bg);
    padding: 60px 0;
    text-align: center;
}

.institution h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 700;
}

.institution-content {
    background: white;
    border-radius: 8px;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.institution-logo {
    width: 100%;
    max-width: 800px;
    height: auto;
}

@keyframes footerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 243, 178, 0.45);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(69, 243, 178, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(69, 243, 178, 0);
    }
}

/* FOOTER */
.footer {
    background: rgba(105, 15, 123, 1);
    color: white;
    padding: 30px 0px 0px 0px;
    width: 100%;
    max-width: none;
    position: static;
    margin: 0;
    height: auto;
    opacity: 1;
}

.footer .container {
    padding: 0;
    max-width: 100%;
}

.footer-content {
    width: 1216px;
    height: auto;
    max-width: 1280px;
    opacity: 1;
    display: grid;
    grid-template-columns: 340px 1fr 1fr 1fr;
    gap: 50px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
    text-transform: none;
    letter-spacing: 0;
}

.footer-heading-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-heading-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.footer-section-logo {
    display: flex;
    justify-content: center;
}

.footer-logo {
    width: 100%;
    height: auto;
    gap: 10px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.footer-logo img {
    width: 260px;
    height: auto;
    max-width: 100%;
    opacity: 1;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-inline-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.95;
    display: block;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-section a[aria-current="page"] {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section-dynamic {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 16px;
    align-self: flex-start;
}

.footer-live-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-live-line strong {
    color: white;
    font-weight: 700;
}

.footer-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #45f3b2;
    flex-shrink: 0;
    animation: footerPulse 1.8s infinite;
}

.footer-live-time {
    font-weight: 700;
    color: white;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.footer-tip {
    margin-top: 6px;
}

.footer-tip-label {
    font-weight: 700;
    color: white;
    margin-right: 4px;
}

.footer-tip-text {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.footer-tip-text.is-changing {
    opacity: 0;
    transform: translateY(6px);
}

.social-links {
    display: flex;
    gap: 24px;
    margin-top: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: transparent;
    transform: none;
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    width: 1216px;
    height: auto;
    opacity: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 40px;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.footer-back-to-top {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.footer-back-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.footer-back-to-top:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-games-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .featured-games-link {
        min-width: 0;
    }

    .featured-games-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .featured-games .game-cover {
        height: 190px;
    }

    .game-cover {
        height: 132px;
    }

    .hero-image img {
        width: min(100%, 520px);
        border-radius: 24px;
        border-width: 5px;
        object-position: center 26%;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .container-header {
        width: min(100%, calc(100% - 32px));
        min-height: 108px;
        padding: 12px 0;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        width: 210px;
    }

    .nav-links {
        width: 100%;
        gap: 8px;
        justify-content: flex-start;
    }

    .nav-links a {
        font-size: 14px;
        padding: 9px 12px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 40px 0;
        min-height: unset;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-games {
        padding: 60px 0;
    }

    .features {
        padding: 60px 0;
    }

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

    .footer-section-logo {
        grid-column: span 2;
    }

    .footer-logo img {
        width: 230px;
    }

    .footer-section-dynamic {
        grid-column: span 2;
    }

    .footer-bottom {
        justify-content: center;
    }

    .footer-back-to-top {
        margin: 0 auto;
    }

    .institution h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image img {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
        border-width: 4px;
        object-position: center 24%;
        box-shadow: 0 18px 34px rgba(2, 130, 177, 0.12), 0 10px 22px rgba(122, 71, 133, 0.14);
    }

    .featured-games .game-cover {
        height: 170px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 16px;
    }

    .container-header {
        width: min(100%, calc(100% - 20px));
        min-height: 0;
        padding: 10px 0;
    }

    .logo img {
        width: 180px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-links a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo img {
        width: 210px;
    }

    .footer-section-dynamic {
        grid-column: auto;
    }

    .institution-content {
        padding: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 14px 20px;
    }

    .footer-bottom p {
        min-width: 100%;
        text-align: center;
    }
}

/* PAGE TITLE */
.page-title {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.page-title .page-header-content {
    margin-bottom: 14px;
}

.page-title .page-header-content h2 {
    font-size: 18px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.page-title h1 {
    font-size: clamp(44px, 6vw, 60px);
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    line-height: 1.12;
}

/* ABOUT SECTION */
.about-section {
    background: var(--section-alt-bg);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 52px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(42px, 4.4vw, 56px);
    color: var(--primary-pink);
    margin-bottom: 24px;
    line-height: 1.12;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.about-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.project-logo {
    width: 100%;
    max-width: 430px;
    height: auto;
    filter: none;
}

/* OBJECTIVES SECTION */
.objectives-section {
    background: var(--section-alt-bg);
    padding: 80px 0;
}

.objectives-section h2 {
    font-size: clamp(44px, 6vw, 60px);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 42px;
    font-weight: 700;
    line-height: 1.12;
}

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

.objective-card {
    background: linear-gradient(135deg, #F0E8F8 0%, #E8F4F8 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.objective-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.objective-card h3 {
    font-size: 24px;
    color: var(--purple);
    margin-bottom: 15px;
}

.objective-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* METHODOLOGY SECTION */
.methodology-section {
    background: var(--section-alt-bg);
    padding: 80px 0;
}

.methodology-section h2 {
    font-size: 42px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
}

.methodology-content > p {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.step {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-pink) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.step-content h3 {
    font-size: 22px;
    color: var(--purple);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* MISSION, VISION AND VALUES */
.mission-vision-values {
    background: white;
    padding: 80px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mvv-card {
    border: 2px solid #E91E8C;
    border-radius: 20px;
    padding: 30px 28px 26px;
    text-align: center;
    background: #f6f6f7;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 270px;
    box-shadow: 0 8px 18px rgba(80, 56, 102, 0.06);
}

.mvv-card:hover {
    box-shadow: 0 4px 10px rgba(233, 30, 140, 0.1);
    transform: translateY(-2px);
}

.mvv-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mvv-icon--mission {
    background: rgba(233, 30, 140, 0.12);
}

.mvv-icon--vision {
    background: rgba(2, 130, 177, 0.14);
}

.mvv-icon--values {
    background: rgba(214, 151, 0, 0.16);
}

.mvv-card h3 {
    font-size: 34px;
    color: var(--color-magenta-15, rgba(58, 8, 68, 1));
    margin-bottom: 16px;
    font-weight: 500;
    line-height: 1.15;
}

.mvv-card p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-magenta-40, rgba(122, 71, 133, 1));
    max-width: 310px;
}

/* OBJECTIVES SECTION - LIST STYLE */
.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin: 0 auto;
}

.objective-item {
    background: #f2f4f6;
    border: none;
    padding: 18px 20px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 16px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.objective-item:hover {
    box-shadow: 0 8px 22px rgba(2, 130, 177, 0.12);
    transform: translateY(-1px);
}

.objective-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background: rgba(233, 30, 140, 0.12);
    border-radius: 32px;
    justify-self: center;
    align-self: center;
    transform: translateY(8px);
}

.objective-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    transform: translateY(2px);
}

.objective-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.objective-content h3 {
    font-size: 19px;
    color: var(--primary-blue);
    margin: 0 0 6px;
    font-weight: 600;
    line-height: 1.2;
}

.objective-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--primary-blue);
    margin: 0;
}

/* RESPONSIVE - MISSION, VISION, VALUES */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .mvv-card h3 {
        font-size: 28px;
    }

    .mvv-card p {
        font-size: 16px;
    }

    .objective-item {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: center;
    }

    .objective-item {
        padding: 18px;
    }

    .objective-icon {
        width: 76px;
        height: 76px;
        border-radius: 30px;
        transform: translateY(6px);
    }

    .objective-content {
        width: 100%;
    }

    .objective-icon-img {
        width: 46px;
        height: 46px;
        transform: translateY(1px);
    }

    .objective-content h3 {
        font-size: 18px;
    }

    .objective-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-title h1 {
        font-size: 40px;
    }

    .page-title .page-header-content h2 {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 38px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image {
        justify-content: center;
    }

    .project-logo {
        max-width: 320px;
    }

    .objectives-section h2,
    .methodology-section h2 {
        font-size: 40px;
    }

    .objectives-grid,
    .methodology-steps {
        grid-template-columns: 1fr;
    }
}

/* GAMES PAGE */
.games-page-title {
    background: white;
    padding: 60px 0 50px;
    text-align: center;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    background: #d6eaf4;
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.games-page-title h2 {
    font-size: 18px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.1px;
    line-height: 1.2;
}

.games-page-title h1 {
    font-size: 48px;
    color: var(--primary-blue);
    margin: 12px 0 18px;
    font-weight: 700;
}

.games-page-title p {
    font-size: 15px;
    color: var(--primary-blue);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* GAMES FILTER SECTION */
.games-filter-section {
    background: white;
    padding: 35px 0;
    border-bottom: none;
}

.search-container {
    margin-bottom: 25px;
}

.search-box {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid var(--primary-pink);
    border-radius: 30px;
    background: white;
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.1);
    transition: all 0.3s ease;
}

.search-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 16px;
    outline: none;
    font-family: inherit;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: var(--primary-pink);
}

.search-box:focus-within {
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.2);
}

.filters-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--primary-pink);
    flex-shrink: 0;
    font-size: 13px;
}

.filter-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid var(--primary-pink);
    background: white;
    color: var(--primary-pink);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(233, 30, 140, 0.1);
}

.filter-btn:hover {
    background: rgba(233, 30, 140, 0.08);
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.2);
}

.filter-btn.active {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* GAMES GRID SECTION */
.games-grid-section {
    background: var(--section-alt-bg);
    padding: 50px 0;
}

.tags-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #4f5b66;
    font-size: 12px;
    font-weight: 600;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot--pink {
    background: var(--primary-pink);
}

.legend-dot--blue {
    background: var(--primary-blue);
}

.legend-dot--green {
    background: #2f7d32;
}

.legend-dot--orange {
    background: #c56a00;
}

.games-counter {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    font-weight: 500;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

.game-card-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(123, 63, 242, 0.12);
}

.game-image {
    height: 180px;
    background: linear-gradient(135deg, #E8F4F8 0%, #E8D5F2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image-link {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    text-decoration: none;
}

.game-image-link:focus-visible {
    outline: 3px solid rgba(2, 130, 177, 0.55);
    outline-offset: -3px;
}

.game-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-image-link:hover .game-image-img,
.game-image-link:focus-visible .game-image-img {
    transform: scale(1.04);
}

.game-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.game-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.game-info h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 0 0 10px;
    font-weight: 700;
}

.game-description {
    font-size: 14px;
    color: var(--color-azure-35, rgba(2, 133, 177, 1));
    line-height: 1.5;
    margin: 0 0 12px;
    flex-grow: 1;
    overflow: visible;
    max-height: none;
    display: block;
}

.game-description-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}

.game-description-more:hover,
.game-description-more:focus-visible {
    text-decoration: underline;
}

.game-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    overflow: visible;
    max-height: none;
}

.tag {
    background: rgba(233, 30, 140, 0.15);
    color: var(--primary-pink);
    padding: 5px 11px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
}

.tag--pink {
    background: rgba(233, 30, 140, 0.15);
    color: var(--primary-pink);
}

.tag--blue {
    background: rgba(2, 130, 177, 0.16);
    color: var(--primary-blue);
}

.tag--green {
    background: rgba(34, 139, 34, 0.16);
    color: #2f7d32;
}

.tag--orange {
    background: rgba(245, 158, 11, 0.18);
    color: #c56a00;
}

.btn-play {
    background: rgba(2, 133, 177, 1);
    color: white;
    border: none;
    padding: 11px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-width: 0;
    text-decoration: none;
    overflow: hidden;
}

.btn-play-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.btn-play-trailing-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    margin-left: auto;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 133, 177, 0.35);
}

/* RESPONSIVE - GAMES PAGE */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-label {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .games-page-title {
        padding: 40px 0 35px;
    }

    .games-page-title h1 {
        font-size: 32px;
        margin: 10px 0 12px;
    }

    .games-page-title p {
        font-size: 13px;
    }

    .games-filter-section {
        padding: 25px 0;
    }

    .page-header-content {
        padding: 9px 16px;
    }

    .games-page-title h2 {
        font-size: 16px;
    }

    .search-container {
        margin-bottom: 20px;
    }

    .search-input {
        font-size: 15px;
    }

    .search-box {
        max-width: 100%;
        padding: 11px 16px;
        gap: 8px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
    }

    .filters-container {
        gap: 8px;
    }

    .filter-label {
        font-size: 12px;
    }

    .filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .tags-legend {
        gap: 8px;
        margin-bottom: 12px;
    }

    .legend-item {
        font-size: 11px;
        padding: 6px 10px;
    }

    .filter-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .games-page-title h1 {
        font-size: 24px;
    }

    .games-page-title p {
        font-size: 12px;
    }

    .page-icon {
        width: 15px;
        height: 15px;
    }

    .games-page-title h2 {
        font-size: 13px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-box {
        padding: 10px 14px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
        flex: 1 1 45%;
    }

    .search-container {
        margin-bottom: 18px;
    }

    .games-filter-section {
        padding: 20px 0;
    }
}

/* ARTIGOS ACADEMICOS PAGE */
.artigos-academicos-hero {
    background: linear-gradient(180deg, #ffffff 0%, rgba(232, 247, 252, 0.72) 100%);
    padding: 60px 0 42px;
    overflow: hidden;
}

.artigos-hero-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.artigos-hero-copy {
    max-width: 780px;
}

.artigos-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 130, 177, 0.12);
    color: var(--primary-blue);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.artigos-badge-icon {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.artigos-hero-copy h1 {
    color: var(--primary-blue);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin: 0 0 18px;
    font-weight: 700;
}

.artigos-hero-copy p {
    color: var(--color-azure-35);
    font-size: 17px;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
}

.artigos-hero-panel {
    background: white;
    border: 1px solid rgba(2, 130, 177, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(2, 130, 177, 0.12);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.artigos-stat {
    border-radius: 14px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(232, 247, 252, 0.85), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(233, 30, 140, 0.08);
}

.artigos-stat strong {
    display: block;
    color: var(--primary-pink);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.artigos-stat span {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
}

.artigos-academicos {
    background: var(--section-alt-bg);
    padding: 26px 0 64px;
}

.artigos-search-shell {
    background: white;
    border: 1px solid rgba(2, 130, 177, 0.1);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(2, 130, 177, 0.08);
    margin-bottom: 24px;
}

.artigos-search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(233, 30, 140, 0.48);
    border-radius: 999px;
    padding: 12px 14px 12px 18px;
    background: white;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.artigos-search-box:focus-within {
    border-color: var(--primary-pink);
    box-shadow: 0 8px 20px rgba(233, 30, 140, 0.12);
}

.artigos-search-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.artigos-search-input {
    width: 100%;
    border: none;
    outline: none;
    color: #333;
    background: transparent;
    font: inherit;
    font-size: 16px;
}

.artigos-search-input::placeholder {
    color: rgba(233, 30, 140, 0.68);
}

.artigos-clear-btn {
    border: none;
    background: rgba(2, 130, 177, 0.12);
    color: var(--primary-blue);
    border-radius: 999px;
    padding: 9px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.artigos-clear-btn:hover,
.artigos-clear-btn:focus-visible {
    background: var(--primary-blue);
    color: white;
    outline: none;
}

.artigos-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.artigos-counter {
    color: #71808e;
    font-size: 14px;
    margin: 0;
    font-weight: 700;
}

.artigos-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 800;
}

.artigos-sort select {
    border: 1px solid rgba(2, 130, 177, 0.2);
    border-radius: 999px;
    background: white;
    color: var(--primary-blue);
    padding: 9px 34px 9px 14px;
    font: inherit;
    cursor: pointer;
}

.artigos-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.artigos-sidebar {
    position: sticky;
    top: 154px;
    display: grid;
    gap: 14px;
}

.artigos-filter-group {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(2, 130, 177, 0.1);
    border-radius: 16px;
    padding: 16px;
}

.artigos-filter-group h2 {
    color: var(--primary-pink);
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 700;
}

.artigos-filter {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #4f6070;
    padding: 9px 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.artigos-filter:hover,
.artigos-filter:focus-visible {
    background: rgba(2, 130, 177, 0.1);
    color: var(--primary-blue);
    outline: none;
}

.artigos-filter.active {
    background: rgba(233, 30, 140, 0.12);
    color: var(--primary-pink);
    transform: translateX(3px);
}

.artigos-checks label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4f6070;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 0;
    cursor: pointer;
}

.artigos-checks input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary-pink);
}

.artigos-results {
    display: grid;
    gap: 18px;
}

.artigo-result {
    background: white;
    border: 1px solid rgba(2, 130, 177, 0.1);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 22px;
    box-shadow: 0 10px 24px rgba(2, 130, 177, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.artigo-result:hover {
    transform: translateY(-3px);
    border-color: rgba(233, 30, 140, 0.22);
    box-shadow: 0 16px 32px rgba(90, 46, 112, 0.12);
}

.artigo-kicker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.artigo-kicker span {
    border-radius: 999px;
    background: rgba(2, 130, 177, 0.12);
    color: var(--primary-blue);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
}

.artigo-kicker span:first-child {
    background: rgba(233, 30, 140, 0.12);
    color: var(--primary-pink);
}

.artigo-result h2 {
    color: #0000aa;
    font-family: var(--font-body);
    font-size: clamp(20px, 2.1vw, 25px);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 8px;
}

.artigo-meta {
    color: #00802a;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
}

.artigo-resumo {
    color: #343a40;
    font-size: 15px;
    line-height: 1.62;
    margin: 0 0 14px;
    max-width: 820px;
}

.artigo-jogos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.artigo-jogo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(232, 247, 252, 0.95);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.artigo-jogo-chip img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.artigo-jogo-chip:hover,
.artigo-jogo-chip:focus-visible {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
    outline: none;
}

.artigo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.artigo-action {
    border: none;
    border-radius: 999px;
    background: rgba(2, 130, 177, 0.12);
    color: var(--primary-blue);
    padding: 10px 15px;
    text-decoration: none;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.artigo-action:hover,
.artigo-action:focus-visible {
    background: rgba(2, 130, 177, 0.2);
    transform: translateY(-1px);
    outline: none;
}

.artigo-action--primary {
    background: var(--primary-blue);
    color: white;
}

.artigo-action--primary:hover,
.artigo-action--primary:focus-visible {
    background: var(--color-magenta-40);
}

.artigo-action--ghost {
    background: rgba(233, 30, 140, 0.1);
    color: var(--primary-pink);
}

.artigo-file-card {
    min-height: 150px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 247, 252, 0.9) 100%);
    border: 1px solid rgba(2, 130, 177, 0.16);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.48);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.artigo-file-card::after {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    width: 72px;
    height: 72px;
    background: rgba(233, 30, 140, 0.14);
    transform: rotate(45deg);
}

.artigo-file-type {
    width: fit-content;
    border-radius: 8px;
    background: var(--primary-pink);
    color: white;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.artigo-file-lines,
.artigo-file-lines::before,
.artigo-file-lines::after {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: rgba(2, 130, 177, 0.16);
}

.artigo-file-lines {
    width: 100%;
    position: relative;
    margin-top: 18px;
}

.artigo-file-lines::before,
.artigo-file-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.artigo-file-lines::before {
    top: 18px;
    width: 82%;
}

.artigo-file-lines::after {
    top: 36px;
    width: 64%;
}

.artigo-file-lines--short {
    width: 52%;
    margin-top: 48px;
    background: rgba(233, 30, 140, 0.16);
}

.artigos-empty {
    background: white;
    border-radius: 18px;
    padding: 44px 28px;
    text-align: center;
    color: var(--primary-blue);
    border: 1px solid rgba(2, 130, 177, 0.1);
}

.artigos-empty h2 {
    color: var(--primary-blue);
    margin: 0 0 8px;
}

.artigos-empty p {
    margin: 0;
    color: #71808e;
}

.artigos-cadernos {
    margin-top: 34px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(2, 130, 177, 0.1);
    padding: 24px;
}

.artigos-cadernos-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.artigos-cadernos-head h2 {
    color: var(--primary-blue);
    font-size: 28px;
    margin: 0;
}

.artigos-cadernos-head p {
    color: #71808e;
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

.artigos-cadernos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.artigos-caderno {
    text-align: left;
    border: 1px solid rgba(233, 30, 140, 0.14);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08), rgba(2, 130, 177, 0.08));
    padding: 18px;
    cursor: pointer;
    min-height: 126px;
    font: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.artigos-caderno span {
    display: block;
    color: var(--color-magenta-40);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.artigos-caderno small {
    color: var(--primary-blue);
    font-size: 13px;
    line-height: 1.5;
}

.artigos-caderno:hover,
.artigos-caderno:focus-visible {
    border-color: rgba(2, 130, 177, 0.28);
    box-shadow: 0 10px 22px rgba(2, 130, 177, 0.1);
    transform: translateY(-2px);
    outline: none;
}

@media (max-width: 1024px) {
    .artigos-hero-grid,
    .artigos-layout {
        grid-template-columns: 1fr;
    }

    .artigos-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .artigos-checks {
        grid-column: 1 / -1;
    }

    .artigos-cadernos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .artigos-academicos-hero {
        padding: 44px 0 30px;
    }

    .artigos-hero-panel {
        grid-template-columns: 1fr;
    }

    .artigos-search-shell,
    .artigos-cadernos {
        border-radius: 14px;
    }

    .artigos-search-box {
        align-items: stretch;
        border-radius: 18px;
        flex-wrap: wrap;
    }

    .artigos-search-input {
        flex: 1 1 calc(100% - 36px);
        font-size: 15px;
    }

    .artigos-clear-btn {
        width: 100%;
    }

    .artigos-sidebar {
        grid-template-columns: 1fr;
    }

    .artigo-result {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .artigo-file-card {
        min-height: 112px;
    }

    .artigos-cadernos-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .artigos-badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .artigos-hero-copy p,
    .artigo-resumo {
        font-size: 14px;
    }

    .artigos-toolbar,
    .artigos-sort {
        align-items: stretch;
        width: 100%;
    }

    .artigos-sort {
        flex-direction: column;
        gap: 6px;
    }

    .artigos-sort select {
        width: 100%;
    }

    .artigo-actions {
        flex-direction: column;
    }

    .artigo-action {
        width: 100%;
        text-align: center;
    }
}

/* JOGO DETALHES PAGE */
.jogo-detalhes {
    background: white;
    padding: 60px 0 0;
}

.jogo-header {
    text-align: center;
    margin-bottom: 40px;
}

.jogo-header h1 {
    font-size: clamp(42px, 5vw, 56px);
    color: var(--color-magenta-27, rgba(105, 15, 123, 1));
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.15;
}

.jogo-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.jogo-tags .tag {
    background: rgba(233, 30, 140, 0.15);
    color: var(--primary-pink);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

/* Jogo Player Area */
.jogo-player-band {
    background: rgba(220, 243, 249, 1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 0;
}

.jogo-player-band > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.jogo-player-area {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px 2px 20px;
    border: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.jogo-player-container {
    margin-bottom: 20px;
}

.jogo-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 250px;
    background: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 28px rgba(2, 130, 177, 0.18);
}

.jogo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.jogo-play-hint {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.jogo-iframe-container {
    width: 100%;
    aspect-ratio: 16 / 8.2;
    max-height: 520px;
    margin: 0 auto;
    border-radius: 14px;
    border: none;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.jogo-iframe-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.jogo-iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #ffffff;
}

/* Clean embed mode used to hide common Unity chrome around the canvas. */
.jogo-iframe-container.is-unity-embed .jogo-iframe {
    width: calc(100% + 180px);
    height: calc(100% + 96px);
    margin-left: -90px;
    margin-top: -28px;
}

.jogo-iframe-container.is-unity-embed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;
    background: #ffffff;
    pointer-events: none;
    z-index: 2;
}

.jogo-iframe-container.is-unity-embed::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 22px;
    background: #ffffff;
    pointer-events: none;
    z-index: 2;
}

.btn-action--fullscreen {
    min-width: 300px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(2, 133, 177, 1);
    border-radius: 24px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 20px;
}

.btn-action--fullscreen .btn-play-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.btn-action--fullscreen .btn-play-trailing-icon {
    margin-left: auto;
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.btn-action--fullscreen #fullscreen-game-btn-label {
    white-space: nowrap;
}

.btn-action--fullscreen:hover {
    box-shadow: 0 6px 16px rgba(2, 133, 177, 0.35);
}

.btn-action--fullscreen:hover .btn-play-trailing-icon,
.btn-action--fullscreen:focus-visible .btn-play-trailing-icon {
    transform: translateX(2px) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .btn-action--fullscreen .btn-play-trailing-icon {
        transition: none;
    }

    .btn-action--fullscreen:hover .btn-play-trailing-icon,
    .btn-action--fullscreen:focus-visible .btn-play-trailing-icon {
        transform: none;
    }
}

/* Jogo Info Section */
.jogo-info-section {
    background: #ffffff;
    border-radius: 0;
    padding: 32px 0;
    margin-bottom: 16px;
    box-shadow: none;
}

.jogo-description {
    max-width: 1140px;
    margin: 0 auto 28px;
}

.jogo-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-azure-35, rgba(2, 133, 177, 1));
    margin: 0;
    text-align: center;
}

.jogo-actions {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.conteudos-relacionados-section[hidden] {
    display: none;
}

.conteudos-relacionados-section {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(90, 46, 112, 0.12);
}

.conteudos-relacionados-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 22px;
}

.conteudos-admin-link {
    margin-top: 2px;
}

.btn-action {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0088B4 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 163, 224, 0.25);
}

.btn-action--info {
    background: rgba(2, 133, 177, 0.14);
    color: var(--color-azure-35, rgba(2, 133, 177, 1));
    border: none;
    box-shadow: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.15;
    min-width: 0;
    padding: 11px 18px;
}

.btn-action--info:hover,
.btn-action--info:focus-visible {
    background: rgba(2, 133, 177, 0.2);
    box-shadow: none;
    transform: none;
}

/* Relacionados Section */
.artigos-header {
    background: white;
    color: var(--dark-purple);
    padding: 72px 0 26px;
    text-align: center;
}

.artigos-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artigos-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--purple);
    line-height: 1.08;
}

.artigos-back-btn {
    min-width: 220px;
    padding: 13px 24px;
    border-radius: 999px;
    background: rgba(123, 63, 242, 0.12);
    color: var(--purple);
    box-shadow: none;
}

.artigos-back-btn:hover,
.artigos-back-btn:focus-visible {
    background: rgba(123, 63, 242, 0.18);
    color: var(--dark-purple);
    box-shadow: none;
    transform: translateY(-1px);
}

.conteudos-relacionados-section[hidden] {
    display: none;
}

.conteudos-relacionados-section {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(90, 46, 112, 0.12);
}

.conteudos-relacionados-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 22px;
}

.conteudos-relacionados-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 0 0 8px;
    font-weight: 700;
}

.conteudos-relacionados-header p {
    margin: 0;
    color: var(--primary-blue);
    font-size: 15px;
    line-height: 1.5;
}

.conteudos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.conteudo-card {
    background: white;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 8px 18px rgba(90, 46, 112, 0.08);
    border: 1px solid rgba(123, 63, 242, 0.08);
}

.conteudo-card h3 {
    color: var(--dark-purple);
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.conteudo-descricao {
    color: #5f5f6a;
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: 14px;
}

.conteudo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.artigos-relacionados {
    background: rgba(220, 243, 249, 1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 18px 16px 48px;
}

.artigos-relacionados .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.article-card {
    background: white;
    border-radius: 20px;
    padding: 26px 24px;
    box-shadow: 0 10px 24px rgba(90, 46, 112, 0.08);
    border: 1px solid rgba(123, 63, 242, 0.08);
}

.article-card h2 {
    color: var(--dark-purple);
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.article-excerpt {
    color: #5f5f6a;
    line-height: 1.65;
    margin-bottom: 18px;
}

.article-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.article-empty-state {
    color: #7a7a86;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0 2px;
}

.artigos-relacionados > .container > p {
    text-align: center;
    color: #5f5f6a;
    font-size: 18px;
    margin-top: 22px;
}

.relacionados-section > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.relacionados-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: var(--section-alt-bg);
    border-top: 1px solid rgba(2, 130, 177, 0.12);
    border-bottom: 1px solid rgba(2, 130, 177, 0.12);
    padding: 36px 16px 42px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.relacionados-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.relacionados-header h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
}

.link-all-games {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 14px 22px;
    border: 2px solid var(--primary-blue);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.link-all-games:hover {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    background: white;
    transform: translateX(4px);
}

.relacionados-section .game-card-full {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 130, 177, 0.12);
    box-shadow: 0 10px 24px rgba(2, 130, 177, 0.12);
}

.relacionados-section .game-info h3 {
    color: var(--dark-purple);
}

.relacionados-section .game-description {
    color: #4f6070;
}

/* Responsive - Jogo Detalhes */
@media (max-width: 768px) {
    .jogo-detalhes {
        padding: 40px 0 0;
    }

    .jogo-header h1 {
        font-size: 34px;
    }

    .jogo-player-band {
        padding: 10px 24px;
    }

    .jogo-player-area {
        width: 100%;
        padding: 10px 2px 16px;
    }

    .jogo-icon-container {
        height: 200px;
    }

    .jogo-iframe-container {
        width: 100%;
        aspect-ratio: 16 / 9;
        max-height: 400px;
    }

    .jogo-icon {
        font-size: 60px;
    }

    .jogo-info-section {
        padding: 24px 0;
    }

    .jogo-description p {
        font-size: 14px;
    }

    .btn-action {
        flex: 1 1 auto;
        min-width: 140px;
    }

    .btn-action--fullscreen {
        width: 100%;
        min-width: 0;
    }

    .relacionados-section {
        padding: 26px 24px;
    }

    .relacionados-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .relacionados-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .jogo-header h1 {
        font-size: 28px;
    }

    .jogo-tags .tag {
        font-size: 13px;
        padding: 8px 14px;
    }

    .jogo-player-band {
        padding: 8px 16px;
    }

    .jogo-player-area {
        width: 100%;
        padding: 8px 1px 12px;
    }

    .jogo-icon-container {
        height: 150px;
    }

    .jogo-icon {
        font-size: 48px;
    }

    .jogo-iframe-container {
        aspect-ratio: 16 / 10;
    }

    .jogo-info-section {
        padding: 20px 0;
    }

    .jogo-description p {
        font-size: 13px;
    }

    .btn-action {
        padding: 10px 16px;
        font-size: 12px;
    }

    .relacionados-header h2 {
        font-size: 20px;
    }

    .relacionados-section {
        padding: 20px 16px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* EQUIPE PAGE */
.equipe-header {
    background: #ffffff;
    color: var(--dark-purple);
    padding: 72px 0 64px;
    text-align: center;
}

.equipe-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 130, 177, 0.12);
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
    color: var(--primary-blue);
}

.equipe-badge-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.equipe-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-blue);
}

.equipe-header p {
    font-size: 16px;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.55;
    color: var(--primary-blue);
}

.equipe-content {
    background: var(--section-alt-bg);
    padding: 64px 0;
}

.equipe-group {
    margin-bottom: 46px;
}

.equipe-group:last-child {
    margin-bottom: 0;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.group-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.group-icon-wrap--azul {
    background: rgba(2, 130, 177, 0.16);
}

.group-icon-wrap--rosa {
    background: rgba(233, 30, 140, 0.16);
}

.group-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.group-title h2 {
    font-size: 38px;
    color: #5a2e70;
    margin: 0;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}

.team-card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(90, 46, 112, 0.08);
    padding: 18px 16px 16px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(90, 46, 112, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 46, 112, 0.12);
}

.team-avatar,
.team-avatar-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 14px;
    flex-shrink: 0;
}

.team-avatar-image {
    display: block;
    object-fit: cover;
    border: 1px solid rgba(90, 46, 112, 0.08);
}

.team-avatar--azul {
    background: #d7e9f3;
}

.team-avatar--rosa {
    background: #efdced;
}

.team-card h3 {
    font-size: 22px;
    color: #5a2e70;
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.2;
}

.team-card .cargo {
    font-size: 14px;
    color: #7a5c8f;
    font-weight: 700;
    margin: 0 0 5px;
}

.team-card .instituicao {
    font-size: 13px;
    color: #8c7fa0;
    margin: 0;
    line-height: 1.4;
}

/* RESPONSIVE - EQUIPE PAGE */
@media (max-width: 768px) {
    .equipe-header {
        padding: 54px 0 46px;
    }

    .equipe-badge {
        font-size: 12px;
        padding: 9px 18px;
        gap: 9px;
    }

    .equipe-badge-icon {
        width: 16px;
        height: 16px;
    }

    .equipe-header h1 {
        font-size: 38px;
    }

    .equipe-header p {
        font-size: 15px;
        max-width: 620px;
    }

    .equipe-content {
        padding: 40px 0;
    }

    .equipe-group {
        margin-bottom: 36px;
    }

    .group-title h2 {
        font-size: 30px;
    }

    .group-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .group-icon-img {
        width: 22px;
        height: 22px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card {
        padding: 16px 14px;
    }

    .team-avatar,
    .team-avatar-image {
        width: 56px;
        height: 56px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card .cargo {
        font-size: 12px;
    }

    .team-card .instituicao {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .equipe-header {
        padding: 44px 0 36px;
    }

    .equipe-header h1 {
        font-size: 30px;
    }

    .equipe-header p {
        font-size: 14px;
        max-width: 100%;
    }

    .equipe-badge {
        gap: 8px;
    }

    .equipe-badge-icon {
        width: 14px;
        height: 14px;
    }

    .equipe-content {
        padding: 30px 0;
    }

    .equipe-group {
        margin-bottom: 30px;
    }

    .group-title h2 {
        font-size: 24px;
    }

    .group-icon-wrap {
        width: 36px;
        height: 36px;
    }

    .group-icon-img {
        width: 20px;
        height: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .team-card {
        padding: 16px 12px;
    }

    .team-avatar,
    .team-avatar-image {
        width: 50px;
        height: 50px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-card .cargo {
        font-size: 11px;
    }

    .team-card .instituicao {
        font-size: 10px;
    }
}

/* PARCEIROS PAGE */
.parceiros-header {
    background: rgba(255, 255, 255, 1);
    color: var(--dark-purple);
    padding: 60px 0;
    text-align: center;
}

.parceiros-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 130, 177, 0.12);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    color: var(--primary-blue);
}

.parceiros-badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.parceiros-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.parceiros-descricao {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.parceiros-descricao p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.parceiros-descricao p:last-child {
    margin-bottom: 0;
}

.parceiros-descricao .parceiros-destaque {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Instituição Sede Section */
.instituicao-sede-section {
    background: var(--section-alt-bg);
    padding: 60px 0;
}

.sede-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.section-title-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(2, 130, 177, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: translateY(-1px);
}

.section-title-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.sede-title h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
}

.sede-card {
    background: rgba(255, 255, 255, 1);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.sede-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0 0 15px;
    font-weight: 700;
}

.sede-card p {
    font-size: 14px;
    color: var(--primary-blue);
    line-height: 1.6;
    margin: 0;
}

/* Instituições Parceiras Section */
.instituicoes-parceiras-section {
    background: rgba(255, 255, 255, 1);
    padding: 60px 0;
}

.parceiros-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.parceiros-title h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.parceiro-card {
    background: rgba(255, 255, 255, 1);
    border: 2px solid var(--primary-pink);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.parceiro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 51, 173, 0.12);
}

.parceiro-icon-container {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E0F3F9 0%, #D0E8F2 100%);
    margin: 0 auto 18px;
}

.parceiro-card h3 {
    font-size: 18px;
    color: var(--primary-pink);
    margin: 15px 0 10px;
    font-weight: 700;
}

.parceiro-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE - PARCEIROS PAGE */
@media (max-width: 768px) {
    .parceiros-header {
        padding: 40px 0;
    }

    .parceiros-badge {
        font-size: 12px;
        padding: 9px 16px;
    }

    .parceiros-badge-icon {
        width: 17px;
        height: 17px;
    }

    .parceiros-header h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .parceiros-descricao {
        max-width: 100%;
    }

    .parceiros-descricao p {
        font-size: 14px;
    }

    .instituicao-sede-section {
        padding: 40px 0;
    }

    .sede-title h2 {
        font-size: 22px;
    }

    .sede-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .sede-card h3 {
        font-size: 20px;
    }

    .sede-card p {
        font-size: 13px;
    }

    .instituicoes-parceiras-section {
        padding: 40px 0;
    }

    .parceiros-title h2 {
        font-size: 22px;
    }

    .section-title-icon-wrap {
        width: 32px;
        height: 32px;
        transform: none;
    }

    .section-title-icon {
        width: 17px;
        height: 17px;
    }

    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .parceiro-card {
        padding: 20px 15px;
    }

    .parceiro-icon-container {
        width: 72px;
        height: 72px;
    }

    .parceiro-card h3 {
        font-size: 16px;
    }

    .parceiro-card p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .parceiros-header {
        padding: 30px 0;
    }

    .parceiros-header h1 {
        font-size: 24px;
    }

    .parceiros-descricao p {
        font-size: 13px;
    }

    .instituicao-sede-section {
        padding: 30px 0;
    }

    .sede-title h2 {
        font-size: 18px;
    }

    .sede-card {
        padding: 20px 15px;
    }

    .sede-card h3 {
        font-size: 18px;
    }

    .sede-card p {
        font-size: 12px;
    }

    .instituicoes-parceiras-section {
        padding: 30px 0;
    }

    .parceiros-title h2 {
        font-size: 18px;
    }

    .section-title-icon-wrap {
        width: 30px;
        height: 30px;
        transform: none;
    }

    .section-title-icon {
        width: 16px;
        height: 16px;
    }

    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .parceiro-card {
        padding: 18px 12px;
    }

    .parceiro-icon-container {
        width: 60px;
        height: 60px;
    }

    .parceiro-card h3 {
        font-size: 14px;
    }

    .parceiro-card p {
        font-size: 10px;
    }
}

/* CONTATO PAGE */
.contato-header {
    background: white;
    color: var(--dark-purple);
    padding: 60px 0 30px;
    text-align: center;
}

.contato-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 130, 177, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    color: var(--primary-blue);
}

.contato-badge-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contato-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.contato-header p {
    font-size: 17px;
    max-width: 700px;
    width: auto;
    margin: 0;
    line-height: 1.6;
    color: var(--primary-blue);
    text-align: center;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.contato-header p strong {
    font-weight: 700;
    color: var(--primary-blue);
}

.contato-subtitle-main,
.contato-subtitle-highlight {
    display: inline;
}

.contato-content {
    background: white;
    padding: 30px 0 60px;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contato-container.contato-container-only-info {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    border: 2px solid var(--color-rose-60, rgba(255, 51, 173, 1));
    border-top: 2px solid var(--color-rose-60, rgba(255, 51, 173, 1));
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.email-card {
    border-left: 2px solid var(--color-rose-60, rgba(255, 51, 173, 1));
}

.email-card:hover {
    box-shadow: 0 2px 8px rgba(255, 51, 173, 0.12);
}

.location-card {
    border-left: 2px solid var(--color-rose-60, rgba(255, 51, 173, 1));
}

.location-card:hover {
    box-shadow: 0 2px 8px rgba(255, 51, 173, 0.12);
}

.social-card {
    border-left: 2px solid var(--color-rose-60, rgba(255, 51, 173, 1));
}

.social-card:hover {
    box-shadow: 0 2px 8px rgba(255, 51, 173, 0.12);
}

.info-card .card-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(123, 63, 242, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-icon-badge:hover,
.social-icon-badge:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(122, 71, 133, 0.25);
    background: rgba(123, 63, 242, 0.18);
}

.social-card-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.social-card .card-icon {
    margin-bottom: 16px;
}

.email-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 51, 173, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.email-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-rose-60, rgba(255, 51, 173, 1));
    margin-bottom: 12px;
}

.email-card p {
    font-size: 14px;
    color: var(--color-rose-60, rgba(255, 51, 173, 1));
    line-height: 1.6;
    margin: 0;
}

.email-card a {
    color: var(--color-rose-60, rgba(255, 51, 173, 1));
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-card a:hover {
    color: var(--primary-blue);
}

.email-card a:focus-visible,
.email-card a:active {
    color: var(--primary-blue);
}

.info-card:not(.email-card) h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.info-card:not(.email-card) p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.info-card:not(.email-card) a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card:not(.email-card) a:hover {
    color: var(--primary-pink);
}

.location-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(2, 130, 177, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.location-card h3,
.location-card p,
.location-card a,
.location-card a:hover,
.location-card a:focus-visible,
.location-card a:active {
    color: var(--primary-blue);
}

.info-card.social-card h3 {
    color: var(--color-magenta-40, rgba(122, 71, 133, 1));
}

.info-card.social-card p {
    color: var(--color-magenta-40, rgba(122, 71, 133, 1));
}

.info-card.location-card p {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(123, 63, 242, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.contato-form-wrapper {
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 30px;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.submit-btn {
    padding: 14px 28px;
    background: var(--primary-pink);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #c7187d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* RESPONSIVE - CONTATO PAGE */
@media (max-width: 768px) {
    .contato-header {
        padding: 40px 0;
    }

    .contato-badge {
        font-size: 12px;
        padding: 10px 22px;
    }

    .contato-header h1 {
        font-size: 32px;
    }

    .contato-header p {
        font-size: 14px;
        white-space: normal;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.5;
        gap: 2px;
    }

    .contato-subtitle-main,
    .contato-subtitle-highlight {
        display: block;
        white-space: nowrap;
    }

    .contato-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contato-form-wrapper {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contato-header {
        padding: 30px 0;
    }

    .contato-badge {
        font-size: 11px;
        padding: 8px 18px;
    }

    .contato-header h1 {
        font-size: 24px;
    }

    .contato-header p {
        font-size: 11px;
    }

    .contato-info {
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card .card-icon {
        font-size: 28px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 12px;
    }

    .contato-form-wrapper {
        padding: 15px;
    }

    .form-group label {
        font-size: 12px;
    }
}
