/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base do corpo */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    /* Para garantir que o corpo ocupe toda a altura do viewport */
    position: relative;
}

.container {
    width: 100%;
    /* max-width: 1920px; */
    position: relative;
    min-height: 100vh;
    /* overflow: hidden; */
}

/* --- Header (4019-2295) --- */
.header {
    position: relative; /* Mudado de absolute para relative para melhor fluxo */
    width: 100%;
    height: 110px;
    background-color: #090909;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.logo {
    width: 192px;
    height: 70px;
    object-fit: contain;
}

/* --- Background Elements (4019-2300) --- */
.bg-elements {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 2787px;
    height: 591px;
    overflow: hidden;
    z-index: 1;
}

.bg-image-left, .bg-image-right {
    position: absolute;
    width: 889px;
    height: 500px;
    opacity: 0.3;
    object-fit: cover;
}

.bg-image-left {
    left: -464px;
    top: 91px;
}

.bg-image-right {
    right: -464px;
    top: 0;
}

/* --- Main Content (4019-2297) --- */
.main-content {
    /* Removendo o posicionamento absoluto e usando margin auto para centralizar */
    position: relative;
    margin: 50px auto 150px auto; /* Ajuste de margem superior e inferior */
    width: 90%; /* Largura fluida */
    max-width: 1011px; /* Largura máxima do Figma */
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-title-img {
    width: 100%;
    max-width: 646px;
    height: auto;
    margin-bottom: 50px;
    object-fit: contain;
}

.content-block {
    display: flex;
    width: 100%;
    justify-content: center; /* Centraliza o bloco principal */
    align-items: flex-start;
    flex-wrap: wrap; /* Permite quebras de linha para responsividade */
    gap: 40px; /* Espaçamento entre os blocos */
}

.image-block {
    width: 320px;
    height: 364px;
    margin-top: 30px;
    flex-shrink: 0; /* Não permite encolher */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-button-block {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 30px; /* Ajuste para alinhar com a imagem */
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 21px;
    width: 100%;
}

.text-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    width: 100%;
}

/* --- Button (4019-2288) --- */
.vip-button {
    position: relative;
    width: 314px;
    height: 58px;
    background: #25d366;
    border-radius: 40px;
    border: 2px solid #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
    
}

.vip-button:hover {
    background: #1bd15e;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.vip-button-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    left: 84px;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Footer (4019-2287) --- */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 49px;
    background-color: #0a0a0a;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

/* --- Responsividade Geral --- */

/* Tablets e Desktops Menores (max-width: 1024px) */
@media (max-width: 1024px) {
    .header {
        padding: 0 20px;
    }

    .main-content {
        margin: 80px auto 100px auto;
        width: 95%;
    }

    .main-title-img {
        margin-bottom: 60px;
    }

    .content-block {
        /* Quebra para layout de coluna */
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-block {
        margin-top: 0;
    }

    .text-button-block {
        max-width: 90%; /* Aumenta a largura para ocupar mais espaço */
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .subtitle, .text-content {
        text-align: center;
    }

    .vip-button {
        margin-top: 20px;
        margin-bottom: 0; /* Removido margem inferior, pois o footer já está fixo */
    }

    .bg-elements {
        display: none; /* Ocultar elementos de fundo em telas menores para simplificar */
    }
}

/* Smartphones (max-width: 768px) */
@media (max-width: 768px) {
    .header {
        height: 80px;
    }

    .logo {
        width: 150px;
        height: auto;
    }

    .main-content {
        margin: 50px auto 80px auto;
    }

    .main-title-img {
        margin-bottom: 40px;
    }

    .subtitle {
        font-size: 24px;
    }

    .text-content {
        font-size: 16px;
    }

    .image-block {
        width: 250px;
        height: 285px;
    }

    .vip-button {
        width: 90%;
        max-width: 314px;
    }

    .whatsapp-icon {
        position: static;
        transform: none;
        margin-right: 10px;
    }

    .vip-button-text {
        position: static;
        transform: none;
    }

    .footer {
        height: auto;
        padding: 10px 0;
        position: static; /* O footer não precisa mais ser absoluto se o main-content não for */
    }

    .copyright-text {
        font-size: 12px;
    }
    .hide-mobile {display: none;}
    .text-content {margin-bottom: 0px;}
}

/* Smartphones Menores (max-width: 480px) */
@media (max-width: 480px) {
    .main-title-img {
        width: 100%;
    }

    .subtitle {
        font-size: 20px;
    }

    .text-content {
        font-size: 14px;
    }
}
