* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

.print-intro {
    display: none;
}

body {

    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: white;

}



.container {

    max-width: 1200px;
    margin: auto;
    padding: 20px;

}



/* HEADER */

.header {

    position: fixed;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;

}

.header-inner {

    display: flex;
    align-items: center;
    justify-content: space-between;

}



/* LOGO */

.logo-area {

    display: flex;
    align-items: center;
    gap: 14px;

}

.logo {

    height: 50px;
    border-radius: 10px;

}

.brand-text span {

    font-size: 12px;
    opacity: 0.6;

}

.brand-text strong {

    display: block;
    font-size: 15px;

}



/* NAV */

.nav a {

    margin: 0 14px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    opacity: 0.8;

}

.nav a:hover {

    opacity: 1;

}



/* ACTIONS */

.header-actions {

    display: flex;
    gap: 14px;
    align-items: center;

}

.btn-login {

    color: white;
    text-decoration: none;
    opacity: 0.9;

}

.btn-demo {

    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;

}



/* HERO */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {

    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: center;

}

.hero-overlay {

    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(2, 6, 23, 0.8),
            rgba(2, 6, 23, 0.95));
    z-index: 1;

}

.hero-inner {

    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;

}



/* HERO TEXT */

.hero-text {

    max-width: 600px;

}

.hero-text h1 {

    font-family: 'Orbitron', sans-serif;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;

}

.hero-text span {

    color: #f59e0b;

}

.hero-text p {

    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 28px;

}



/* HERO BUTTONS */

.hero-buttons {

    display: flex;
    gap: 16px;
    margin-bottom: 20px;

}

.btn-primary {

    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {

    box-shadow:
        0 0 10px #8b5cf6,
        0 0 25px #6366f1,
        0 0 40px #6366f1;

    transform: translateY(-2px);

}

.btn-secondary {

    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    cursor: pointer;
}



/* BADGES */

.hero-badges span {

    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 8px;
    font-size: 12px;

}

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .header-inner {
        gap: 10px;
    }

    .brand-text {
        display: none;
    }

    .logo {
        height: 42px;
    }

    .btn-demo {
        padding: 8px 12px;
        font-size: 14px;
    }

    .btn-login {
        font-size: 14px;
    }

    .hero {
        height: auto;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
        line-height: 1.2;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-badges {
        margin-top: 20px;
    }

    .hero-badges span {
        display: inline-block;
        margin-bottom: 6px;
    }

}

.game-section {

    background: #020617;
    padding: 120px 20px;

}

.section-title {

    text-align: center;
    font-size: 40px;
    margin-bottom: 80px;
    font-family: 'Orbitron';

}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-row.reverse {

    flex-direction: row-reverse;

}

.feature-image {

    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.feature-image img {

    width: 100%;
    max-width: 480px;
    height: 300px;
    object-fit: cover;
    object-position: top;

    border-radius: 14px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.6);

    transition: transform 0.3s ease;

}

.feature-image img:hover {

    transform: scale(1.03);

}


.feature-text h3 {

    font-size: 28px;
    margin-bottom: 12px;

}

.feature-text {

    max-width: 520px;
    line-height: 1.7;

}

.feature-text p {

    margin-bottom: 12px;
    opacity: 0.85;

}

@media (max-width:900px) {

    .feature-row {

        flex-direction: column;
        text-align: center;

    }

    .feature-row.reverse {

        flex-direction: column;

    }

    .feature-image img {

        max-width: 100%;

    }

}

.feature-list {

    margin-top: 12px;
    padding-left: 18px;
    opacity: 0.85;

}

.feature-list li {

    margin-bottom: 6px;

}

.themes-section {

    background: #020617;
    padding: 120px 20px;

}

.section-subtitle {

    max-width: 720px;
    margin: 20px auto 80px auto;
    text-align: center;
    opacity: 0.8;
    line-height: 1.6;

}

.themes-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.theme-card {

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px;

    transition: all 0.3s ease;

}

.theme-card:hover {

    transform: translateY(-6px);
    border-color: #6366f1;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6);

}

.theme-card h4 {

    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Orbitron';

}

.theme-card p {

    opacity: 0.75;
    line-height: 1.5;

}

@media (max-width:900px) {

    .themes-grid {

        grid-template-columns: 1fr;
        gap: 20px;

    }

}

.themes-footer {

    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    line-height: 1.7;
    opacity: 0.85;

}

.themes-footer p {

    margin-bottom: 16px;

}

.features-platform {

    background: #020617;
    padding: 120px 20px;

}

.platform-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;

}

.platform-card {

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 26px;

    transition: all 0.3s ease;

}

.platform-card:hover {

    transform: translateY(-6px);
    border-color: #6366f1;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.6);

}

.platform-card h4 {

    font-family: 'Orbitron';
    font-size: 18px;
    margin-bottom: 8px;

}

.platform-card p {

    opacity: 0.8;
    font-size: 14px;
    line-height: 1.5;

}

@media (max-width:900px) {

    .platform-grid {

        grid-template-columns: 1fr;

    }

}

.demo-section {

    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 120px 20px;
    color: white;

}

.demo-container {

    max-width: 900px;
    margin: auto;
    text-align: center;

}

.demo-title {

    font-family: 'Orbitron';
    font-size: 40px;
    margin-bottom: 16px;

}

.demo-subtitle {

    opacity: 0.9;
    margin-bottom: 50px;

}

.demo-form {

    background: rgba(0, 0, 0, 0.25);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(8px);

}

.form-row {

    display: flex;
    gap: 20px;
    margin-bottom: 20px;

}

.demo-form input,
.demo-form textarea {

    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 15px;

}

.demo-form textarea {

    height: 120px;
    resize: none;
    margin-bottom: 20px;

}

.demo-btn {

    width: 100%;
    font-size: 18px;
    padding: 16px;

}

@media (max-width:900px) {

    .form-row {

        flex-direction: column;

    }

    .demo-form {

        padding: 28px;

    }

}

.footer {

    background: #020617;
    padding: 80px 20px 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);

}

.footer-container {

    max-width: 1200px;
    margin: auto;

}

.footer-top {

    display: flex;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 60px;

}

.footer-brand {

    max-width: 420px;

}

.footer-logo {

    width: 120px;
    margin-bottom: 16px;

}

.footer-brand p {

    opacity: 0.8;
    line-height: 1.6;

}

.footer-links {

    display: flex;
    flex-direction: column;
    gap: 10px;

}

.footer-links h4 {

    font-family: 'Orbitron';
    margin-bottom: 10px;

}

.footer-links a {

    text-decoration: none;
    opacity: 0.8;
    transition: 0.2s;

}

.footer-links a:hover {

    opacity: 1;
    color: #6366f1;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;

}

.footer-bottom a {

    color: #6366f1;
    text-decoration: none;
    font-weight: 500;

}

@media (max-width:900px) {

    .footer-top {

        flex-direction: column;
        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;
        gap: 10px;
        text-align: center;

    }

}

.footer a,
.footer a:visited {

    color: white;
    text-decoration: none;
    opacity: 0.85;

}

.footer a:hover {

    opacity: 1;
    color: #6366f1;

}

.whatsapp-cta {

    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 1100;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    -webkit-tap-highlight-color: transparent;

}

.wapp-icon {

    width: 56px;
    height: 56px;
    border-radius: 50%;

    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

}

.wapp-icon img {

    width: 54px;
    height: 54px;

}

.wapp-bubble {

    position: relative;
    max-width: 260px;

    background: #ffffff;
    color: rgb(15, 23, 42);

    font-size: 0.95rem;
    line-height: 1.35;

    border-radius: 12px;
    padding: 10px 12px;

    border: 1px solid rgb(229, 231, 235);

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);

}

.wapp-bubble::before,
.wapp-bubble::after {

    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border-style: solid;

}

.wapp-bubble::before {

    right: -9px;
    border-width: 9px 0 9px 9px;
    border-color: transparent transparent transparent rgb(229, 231, 235);

}

.wapp-bubble::after {

    right: -8px;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #ffffff;

}

@media (max-width:768px) {

    .wapp-bubble {
        display: none;
    }

}

.wapp-icon {

    animation: wappPulse 2.5s infinite;

}

@keyframes wappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

}

@media (max-width: 900px) {

    .feature-image {
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }

}

.investment-section {
    display: none;
}

.investment-intro {

    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    line-height: 1.6;
    opacity: 0.9;

}

.investment-table-wrapper {

    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;

}

.investment-table {

    width: 100%;
    border-collapse: collapse;
    font-size: 14px;

}

.investment-table thead {

    background: rgba(255, 255, 255, 0.08);

}

.investment-table th,
.investment-table td {

    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

.investment-table tbody tr:hover {

    background: rgba(255, 255, 255, 0.04);

}

.investment-conditions {

    max-width: 800px;
    margin: auto;
    line-height: 1.6;

}

.investment-conditions h3 {

    font-family: 'Orbitron';
    margin-bottom: 16px;
    text-align: center;

}

.investment-conditions ul {

    opacity: 0.9;

}

.investment-layout {

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;

}

.investment-conditions li {

    margin-bottom: 8px;

}

.investment-table {

    width: 100%;
    border-collapse: collapse;
    font-size: 14px;

}

.investment-table thead {

    background: rgba(255, 255, 255, 0.08);

}

.investment-table th,
.investment-table td {

    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

.highlight-plan {

    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;

}

.investment-info {

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 26px;

}

.investment-info h3 {

    font-family: 'Orbitron';
    margin-bottom: 16px;

}

.investment-info ul {

    line-height: 1.6;
    opacity: 0.9;

}

.investment-info li {

    margin-bottom: 10px;

}

.proposal-final {
    display: none;
}

/* =========================
   PRINT / PDF MODE
========================= */

@media print {

    /* manter cores e fundos */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .footer {
        display: none;
    }

    .investment-section {
        display: block !important;
    }

    /* esconder elementos de navegação e CTA */
    .header,
    .nav,
    .header-actions,
    .hero-buttons,
    .btn-primary,
    .btn-secondary,
    .btn-demo,
    .btn-login,
    .demo-section,
    .demo-form,
    .whatsapp-cta {
        display: none !important;
    }

    /* evitar elementos muito largos */
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* cada section pode iniciar nova página */
    section {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    /* classe opcional para forçar quebra */
    .page-break {
        page-break-before: always;
        break-before: page;
    }

    /* imagens não quebram feio */
    img {
        page-break-inside: avoid;
    }

    /* remover animações */
    * {
        animation: none !important;
        transition: none !important;
    }

    /* ajustar hero para PDF */
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-bg {
        transform: none !important;
    }

    .game-section,
    .themes-section,
    .features-platform {
        padding: 20px 0 !important;
    }

    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .section-subtitle {
        margin: 10px auto 30px auto !important;
    }

    .feature-row {
        gap: 30px !important;
        margin-bottom: 40px !important;
    }

    .feature-image img {
        height: 180px !important;
        max-width: 320px !important;
    }

    .feature-text h3 {
        font-size: 20px !important;
    }

    .feature-text p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    .themes-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .theme-card {
        padding: 18px !important;
    }

    .theme-card h4 {
        font-size: 16px !important;
    }

    .theme-card p {
        font-size: 12px !important;
    }

    .platform-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }

    .platform-card {
        padding: 18px !important;
    }

    .platform-card h4 {
        font-size: 15px !important;
    }

    .platform-card p {
        font-size: 12px !important;
    }

    .theme-card:hover,
    .platform-card:hover,
    .feature-image img:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .container {
        max-width: 1100px !important;
    }

    /* layout compacto para PDF */

    .feature-row {

        display: grid !important;
        grid-template-columns: 200px 1fr;
        gap: 20px;

        align-items: center;

        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;

        padding: 20px;
        margin-bottom: 20px;

    }

    .feature-row.reverse {
        grid-template-columns: 200px 1fr;
    }

    .feature-image img {

        width: 200px !important;
        height: 140px !important;
        object-fit: cover;

    }

    .feature-text {

        max-width: 100% !important;

    }

    .feature-text h3 {

        font-size: 18px !important;
        margin-bottom: 6px;

    }

    .feature-text p {

        font-size: 13px !important;
        line-height: 1.4 !important;

    }

    .print-intro {

        display: block !important;

        max-width: 900px;
        margin: 0 auto 16px auto;

        text-align: center;
        line-height: 1.6;
        font-size: 14px;
        opacity: 0.9;

    }

    body {
        background: #020617 !important;
    }

    .proposal-final {

        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 80vh;

        text-align: center;

    }

    .final-container {

        max-width: 800px;

    }

    .final-logo {

        width: 220px;
        margin-top: 40px;
        margin-bottom: 30px;

    }

    .final-title {

        font-family: 'Orbitron';
        font-size: 36px;
        margin-bottom: 10px;

    }

    .final-product {

        font-size: 18px;
        opacity: 0.85;
        margin-bottom: 30px;

    }

    .final-message {

        line-height: 1.6;
        opacity: 0.9;
        margin-bottom: 30px;

    }

    .proposal-validity {

        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 16px;
        margin-bottom: 30px;

    }

    .proposal-next h3 {

        font-family: 'Orbitron';
        margin-bottom: 10px;

    }

    .proposal-next ul {

        list-style: none;
        padding: 0;
        opacity: 0.9;

    }

    .proposal-next li {

        margin-bottom: 6px;

    }

    .proposal-contact {

        margin-top: 30px;
        opacity: 0.85;

    }

}