/* ==========================================================================
   TIGER TECH 3D - ENVIO (CONTEÚDO)
   ========================================================================== */

/* Sobrescreve as cores do root.css para garantir o fundo branco de leitura */
body {
    background-color: #ffffff !important;
    /* color: #000000 !important; */
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- CONTEÚDO PRINCIPAL --- */
.shipping-content {
    flex: 1; 
    max-width: 800px;
    /* Margem para compensar o Header Fixo */
    margin: 150px auto 80px auto; 
    padding: 0 20px;
}

.shipping-content h1 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    color: #000000;
}

.shipping-section p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #222222;
    text-align: justify;
}

/* Caixa de destaque para informações de Equipamentos/WhatsApp */
.shipping-notice {
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.shipping-notice p {
    font-size: 16px;
    margin-bottom: 0;
    color: #333333;
    font-style: italic;
}

.shipping-content strong {
    font-weight: 800;
    color: #000000;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .shipping-content {
        margin: 120px auto 60px auto;
    }

    .shipping-content h1 {
        font-size: 28px;
    }

    .shipping-section p {
        text-align: left;
    }

    .shipping-notice {
        padding: 20px;
    }
}