/* --- Variáveis de Identidade NextTap --- */
:root {
    --bg-dark: #0F172A;
    --bg-body: #556b7a;
    --bg-menu: #05052b;
    --text-primary: #dbddde;
    --text-dark: #0f172a;
    --nexttap-blue: #303946;
    --bg-white: #FFFFFF;
    --accent-green: #22c55e;
    --bg-alt: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Signika Negative", sans-serif;
    font-optical-sizing: auto;
    background-color: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
}

.nexttap-home-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* --- Seções da Página --- */
.nt-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.nt-section.nt-bg-alt {
    background-color: var(--bg-alt);
}

.nt-section:nth-child(even) {
    flex-direction: row-reverse;
}

/* --- Conteúdo de Texto --- */
.nt-text {
    flex: 1;
}

.nt-text h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.nt-text h3 {
    color: var(--bg-menu);
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nt-text p {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.nt-text ul {
    margin: 25px 0;
    padding-left: 20px;
}

.nt-text li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.nt-text strong {
    color: #FFFFFF;
}

/* --- Conteúdo de Imagem --- */
.nt-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nt-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nt-image img:hover {
    transform: scale(1.03);
}

/* --- Responsividade para Mobile --- */
@media (max-width: 768px) {
    .nt-section {
        flex-direction: column !important;
        padding: 50px 20px;
        gap: 40px;
        text-align: center;
    }

    .nt-section:nth-child(even) {
        flex-direction: column !important;
    }

    .menu-header {
        padding: 15px 20px;
    }

    .nt-text {
        margin-bottom: 0px;
    }

    .nt-text h2 {
        font-size: 2rem;
    }

    .nt-image img {
        max-width: 100%;
    }
}