/* --- CONFIGURAÇÃO DE SEGURANÇA --- */
html, body {
    overflow-x: hidden; /* Impede a barra de rolagem horizontal causada pelo 100vw */
    margin: 0;
    padding: 0;
    width: 100%;
}

/* --- ESTILO GERAL --- */
.xp-container-light {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.xp-about-header { text-align: center; margin-bottom: 70px; padding: 0 20px; }
.orange-text { color: #ff8c00; }
.orange-title { color: #ff8c00 !important; text-transform: uppercase; letter-spacing: 2px; text-align: center; }
.white-text { color: #ddd; line-height: 1.7; }

.card-num { 
    color: #ff8c00 !important; 
    font-weight: 900; 
    font-size: 1.5rem; 
    display: block;
    margin-bottom: 10px;
}

/* --- BOXES PRETAS --- */
.black-box {
    background: #111111;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 1px solid #222;
}

.anim-box { transition: all 0.4s ease; }
.anim-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
}

/* --- LAYOUT CORPO --- */
.xp-about-body {
    display: flex;
    max-width: 1200px;
    width: 90%;
    margin-bottom: 80px;
    gap: 50px;
}

.xp-text-side { flex: 1.2; }
.xp-text-side h2 { font-size: 2.2rem; color: #1a1a1a; margin-bottom: 25px; }
.xp-text-side p { line-height: 1.8; color: #444; margin-bottom: 20px; }

.xp-info-cards { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.mini-card { padding: 30px; border-left: 6px solid #ff8c00; }

.btn-trabalhe {
    display: inline-block;
    padding: 18px 30px;
    background-color: #ff8c00;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}





/* --- FORMULÁRIO --- */
.xp-form-section { 
    padding: 60px 40px; 
    max-width: 900px; 
    width: 90%; 
    margin: 0 auto; 
}

.input-row { display: flex; gap: 20px; }

form input, form textarea {
    width: 100%; 
    padding: 16px; 
    background: #222; 
    border: 1px solid #333; 
    border-radius: 8px; 
    color: #fff; 
    margin-bottom: 20px;
    box-sizing: border-box;
}

.btn-send {
    background-color: #ff8c00; 
    color: #000; 
    padding: 20px; 
    font-weight: 900; 
    border-radius: 8px; 
    cursor: pointer; 
    border: none; 
    width: 100%; 
    text-transform: uppercase;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .xp-about-body { flex-direction: column; align-items: center; }
    .input-row { flex-direction: column; gap: 0; }
    .partners-grid-new { gap: 30px; }
    .partner-item-new { flex: 0 1 40%; }
}