/* --- Variáveis de Identidade NextTap --- */
:root {
    --bg-dark: #0F172A;
    --bg-body: #556b7a;
    --bg-menu: #05052b;
    --bg-link: #1d5077;
    --bg-link-hover: #eceef1;
    --text-primary: #dbddde;
    --text-link-hover: #1b1b1b;
    --text-dark: #0f172a;

    --nexttap-blue: #303946;
    --bg-white: #FFFFFF;
}

* {
    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;
}

/* --- Container Principal --- */
.nexttap-home-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* --- Estilização das Seções --- */
.nt-section {
    padding: 50px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.nt-bg-alt {
    max-width: 100%; /* Permite que o fundo da seção ocupe a largura toda */
    width: 100%;
}

/* Inverte a ordem (Zig-Zag) */
.nt-reverse {
    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.1;
    margin-bottom: 15px;
    font-weight: 700;
    font-style: normal;
}

.nt-text h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.nt-text p {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* --- 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 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nt-image img:hover {
    transform: scale(1.03);
}

.btn-link {
    display: flex;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    background-color: var(--text-primary);
    color: var(--bg-body);
    width: 150px;
    transition: transform 0.4s ease;
}

.btn-link:hover {
    transform: translateY(-3px); 
    color: var(--text-dark)
}

/* --- Responsividade (Mobile) --- */
@media (max-width: 900px) {
    .nt-section, .nt-section.nt-reverse {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        gap: 30px;
    }

    .nt-text h2 {
        font-size: 1.8rem;
    }
}