body {
    font-family: 'Poppins', sans-serif;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.card-feature {
    background-color: #1f2937; /* bg-gray-800 */
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #374151; /* bg-gray-700 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.card-feature i {
    font-size: 2.5rem;
    color: #f97316; /* text-orange-500 */
    margin-bottom: 1rem;
}

.card-feature h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.card-feature p {
    color: #d1d5db; /* text-gray-300 */
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: #f97316; /* bg-orange-500 */
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    color: white;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.guarantee-item i {
    font-size: 2.5rem;
    color: #f97316; /* text-orange-500 */
}

.guarantee-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.guarantee-item p {
    color: #9ca3af; /* text-gray-400 */
}

<!-- NOME DO ARQUIVO: style-carrodesom.css -->