.hero-section-boleto {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://sejaamigo.com.br/wp-content/uploads/2023/03/boleto-hero-scaled.webp') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.hero-content-boleto {
    position: relative;
    z-index: 2;
}

.hero-title-boleto {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-subtitle-boleto {
    font-size: 1.5rem;
    font-weight: 400;
}

.option-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.option-card h3 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e0e0e0; /* Light text color */
}

.option-card h3 i {
    margin-right: 10px;
    color: var(--gradient-primary); /* Accent color */
}

.option-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary); /* Secondary text color */
    margin-bottom: 20px;
}

.option-card .btn-cta-small {
    background: var(--gradient-primary);
    color: #0a0a0a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.option-card .btn-cta-small:hover {
    background: #a3e635;
    transform: scale(1.05);
}

.simple-form .form-group {
    margin-bottom: 1.5rem;
}

.simple-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.simple-form input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.simple-form input[type="text"]:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.3);
}

.simple-form button[type="submit"] {
    background: var(--gradient-primary); /* Green gradient for submit button */
    color: #0a0a0a;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-form button[type="submit"]:hover {
    background: #a3e635;
    transform: scale(1.05);
}
