/* ============================================================
   GRAND FANTASIA INFINITY - CSS LIMPO E PROFISSIONAL
   ============================================================ */

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

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

:root {
    --azul-principal: #2563eb;
    --azul-escuro: #1e40af;
    --branco: #ffffff;
    --cinza-claro: #f8fafc;
    --cinza-medio: #64748b;
    --cinza-escuro: #1e293b;
    --texto: #334155;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--texto);
    background: var(--cinza-claro);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HERO HEADER
   ============================================================ */

.hero-header {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-logo {
    max-width: 680px;
    width: 100%;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
}

.nav-list a {
    color: var(--texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--azul-principal);
}

.user-info-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5px 15px;
    background: #eff6ff;
    border-radius: 8px;
    margin-left: auto;
}

.username {
    font-weight: 600;
    color: var(--azul-principal);
    font-size: 14px;
}

.coins {
    font-weight: 700;
    color: #f59e0b;
    font-size: 13px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--azul-principal);
    color: white;
}

.btn-primary:hover {
    background: var(--azul-escuro);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--azul-principal);
    border: 2px solid var(--azul-principal);
}

.btn-secondary:hover {
    background: var(--azul-principal);
    color: white;
    transform: translateY(-2px);
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.main-container {
    background: var(--cinza-claro);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--cinza-medio);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--azul-principal);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */

.section-news {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.news-excerpt {
    font-size: 15px;
    color: var(--cinza-medio);
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-link {
    color: var(--azul-principal);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}

.news-link:hover {
    text-decoration: underline;
}

/* ============================================================
   CLASSES SECTION
   ============================================================ */

.section-classes {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-card {
    min-width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    gap: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.carousel-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.carousel-content {
    flex: 1;
}

.carousel-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 15px;
}

.carousel-description {
    font-size: 16px;
    color: var(--cinza-medio);
    line-height: 1.8;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--azul-principal);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--azul-principal);
    color: white;
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* ============================================================
   SERVER INFO SECTION
   ============================================================ */

.section-server-info {
    padding: 80px 0;
    background: white;
}

.server-description {
    font-size: 18px;
    text-align: center;
    color: var(--cinza-medio);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.feature-item {
    background: var(--cinza-claro);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cinza-escuro);
}

.feature-item p {
    font-size: 15px;
    color: var(--cinza-medio);
}

/* ============================================================
   WORLD SECTION
   ============================================================ */

.section-world {
    padding: 80px 0;
    background: var(--cinza-claro);
}

.world-story {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.world-story p {
    font-size: 17px;
    color: var(--cinza-medio);
    line-height: 1.8;
}

.city-carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.city-carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.city-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.city-card {
    min-width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.city-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.city-content {
    padding: 40px;
}

.city-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--azul-principal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.city-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 15px;
}

.city-description {
    font-size: 16px;
    color: var(--cinza-medio);
    line-height: 1.8;
}

/* ============================================================
   GAME FEATURES SECTION
   ============================================================ */

.section-game-features {
    padding: 80px 0;
    background: white;
}

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

.game-feature {
    position: relative;
    padding: 35px;
    background: var(--cinza-claro);
    border-radius: 12px;
    border-left: 4px solid var(--azul-principal);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--azul-principal);
    opacity: 0.2;
    margin-bottom: 15px;
}

.game-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 12px;
}

.game-feature p {
    font-size: 15px;
    color: var(--cinza-medio);
    line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */

.main-footer {
    background: var(--cinza-escuro);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    padding: 6px 16px;
    background: var(--azul-principal);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s;
}

.social-link:hover {
    background: var(--azul-escuro);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .divider {
    margin-bottom: 15px;
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 11px;
    color: #64748b;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-logo {
        max-width: 400px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-header {
        height: 60vh;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

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

    .carousel-card {
        flex-direction: column;
        padding: 30px;
    }

    .carousel-img {
        width: 180px;
        height: 180px;
    }

    .carousel-title {
        font-size: 24px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

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

    .city-img {
        height: 250px;
    }

    .city-title {
        font-size: 28px;
    }
}

/* ============================================================
   AUTH PAGES (mantido para outras páginas)
   ============================================================ */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.auth-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
}

.auth-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--cinza-escuro);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--azul-principal);
}

.auth-link {
    text-align: center;
    margin-top: 25px;
    color: var(--cinza-medio);
    font-size: 14px;
}

.auth-link a {
    color: var(--azul-principal);
    font-weight: 600;
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #2563eb;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table thead {
    background: var(--azul-principal);
    color: white;
}

table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}

table tbody tr:hover {
    background: #f8fafc;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.dashboard-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dashboard-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cinza-escuro);
}

.ap-balance {
    font-size: 48px;
    font-weight: 800;
    color: #f59e0b;
    margin: 20px 0;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-card img {
    max-width: 150px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--cinza-escuro);
}

.product-coins {
    font-size: 32px;
    font-weight: 700;
    color: #f59e0b;
    margin: 15px 0;
}

.product-price {
    font-size: 28px;
    color: #10b981;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* Utility */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* Auth Tabs */
.auth-box-tabs {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.auth-main-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--cinza-escuro);
    margin-bottom: 30px;
}

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--cinza-200);
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--cinza-medio);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.auth-tab:hover {
    color: var(--azul-principal);
}

.auth-tab.active {
    color: var(--azul-principal);
    border-bottom-color: var(--azul-principal);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.auth-back-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

.auth-back-link a {
    color: var(--azul-principal);
    text-decoration: none;
    font-weight: 500;
}

.auth-back-link a:hover {
    text-decoration: underline;
}

/* ============================================================
   RANKINGS PAGE
   ============================================================ */

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--cinza-escuro);
    text-align: center;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--cinza-medio);
    text-align: center;
    margin-bottom: 40px;
}

.rankings-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ranking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    justify-content: center;
}

.ranking-tab {
    padding: 12px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--cinza-medio);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
    text-decoration: none;
}

.ranking-tab:hover {
    color: var(--azul-principal);
}

.ranking-tab.active {
    color: var(--azul-principal);
    border-bottom-color: var(--azul-principal);
}

.ranking-table-container {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.ranking-table thead {
    background: var(--cinza-claro);
}

.ranking-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--cinza-escuro);
    border-bottom: 2px solid #e2e8f0;
}

.ranking-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.ranking-table tbody tr {
    transition: background 0.2s;
}

.ranking-table tbody tr:hover {
    background: var(--cinza-claro);
}

.rank-position {
    font-weight: 600;
    color: var(--azul-principal);
    font-size: 18px;
}

.player-name {
    font-weight: 500;
    color: var(--cinza-escuro);
}

.medal {
    font-size: 20px;
    margin-right: 5px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--cinza-medio);
}

.empty-state p {
    font-size: 18px;
}

/* ============================================================
   DOWNLOAD PAGE
   ============================================================ */

.download-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.download-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.download-card-main,
.download-card-secondary {
    background: var(--cinza-claro);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.download-card-main {
    border: 2px solid var(--azul-principal);
}

.download-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.download-card-main h3,
.download-card-secondary h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 10px;
}

.download-card-main p,
.download-card-secondary p {
    color: var(--cinza-medio);
    margin-bottom: 20px;
}

.download-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--cinza-medio);
}

.download-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--cinza-medio);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
}

.requirements-section {
    margin-bottom: 50px;
}

.requirements-section h2,
.instructions-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 30px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.requirement-box {
    background: var(--cinza-claro);
    padding: 30px;
    border-radius: 12px;
}

.requirement-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin-bottom: 20px;
}

.requirement-box ul {
    list-style: none;
    padding: 0;
}

.requirement-box li {
    padding: 8px 0;
    color: var(--texto);
    border-bottom: 1px solid #e2e8f0;
}

.requirement-box li:last-child {
    border-bottom: none;
}

.instructions-section {
    margin-bottom: 50px;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--azul-principal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--texto);
    line-height: 1.6;
}

.step-content a {
    color: var(--azul-principal);
    text-decoration: none;
    font-weight: 500;
}

.step-content a:hover {
    text-decoration: underline;
}

.support-section {
    background: var(--cinza-claro);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.support-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--cinza-escuro);
    margin-bottom: 15px;
}

.support-section p {
    color: var(--cinza-medio);
    margin-bottom: 25px;
}

.support-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .download-cards {
        grid-template-columns: 1fr;
    }

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

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .support-buttons {
        flex-direction: column;
    }
}
