* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #e6e6e6;
}


/* Cabeçalho */
.header {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    height: 40px;
}

/* Banner Laranja com imagens atrás */
.banner {
    background-color: #ff5722;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    margin: 10px auto;
    border-radius: 10px;
    max-width: 270px;
    position: relative;
    z-index: 2;
}

.banner::before,
.banner::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.banner::before {
    left: -80px;
    background-image: url("/src/img/seta2.png");
}

.banner::after {
    right: -80px;
    background-image: url("/src/img/seta.png");
}

/* Container principal */
.container {
    max-width: 400px;
    
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: #fff;
    
}

/* SPX Header */
.spx-header {
    margin-bottom: 20px;
    padding: 25px;
    text-align: center;
}

.logospx {
    width: 200px;
    margin-bottom: 10px;
}

.description {
    color: #000;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Barra de progresso */
.progress-container {
    width: 100%;
    background-color: #d6d6d6;
    border-radius: 20px;
    overflow: hidden;
    height: 15px;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    width: 5%;
    background-color: #ff5722;
    transition: width 0.5s ease;
}

/* Pontos em caixa laranja */
.points {
    display: inline-block;
    text-align: left;
    background-color: #4d008b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
}

/* Bloco inferior laranja */
.bottom {
    max-width: 280px;
    text-align: center;
    background-color: #ff5722;
    padding: 20px;
    border-radius: 0 0 12px 12px; /* apenas cantos inferiores arredondados */
    color: white;
    margin: 0; /* gruda no container branco acima */
}

/* Seção do formulário dentro do bloco inferior */
.bottom .form-section {
    max-width: 100%;
    margin: 0 auto;
}

/* Lista de benefícios */
.benefits-list {
    
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    text-align: left;
}

/* Cada item de benefício */
.benefit-item {
    display: flex;
    align-items: left;
    font-size: 18px;
    line-height: 1.4;
    position: relative;

}

/* Marcador personalizado */
.benefit-item::before {
    color: #fff;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
}

/* Botão CTA */
.cta-button {
    max-width: 250px;
    background: #4caf50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.celuspx {
    width: 200px;
    text-align: center;
}

.seguro {
    max-width: 300px;
    display: block;    
    margin: 0 auto;  
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        margin: 0 10px; /* margens apenas laterais */
        max-width: 100%;
    }

    .bottom {
        max-width: 100%;
        margin: 0 10px;
    }

    
}
