﻿.hero-section-boleto {
    position: relative;
    background: var(--apple-secondary-bg);
    padding: 100px 0;
    color: var(--apple-text);
    text-align: center;
}

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

.hero-title-boleto {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--apple-text);
    letter-spacing: -0.03em;
}

.hero-subtitle-boleto {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--apple-text-secondary);
}

.option-card {
    background: var(--apple-card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.option-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--apple-text);
}

.option-card h3 i {
    margin-right: 10px;
    color: var(--brand-purple);
}

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

.option-card .btn-cta-small {
    background: var(--apple-text);
    color: var(--apple-text);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.option-card .btn-cta-small:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.simple-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--apple-text);
}

.simple-form input[type="text"] {
    width: 100%;
    padding: 12px 20px;
    background: var(--apple-secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--apple-text);
    font-size: 1rem;
    box-sizing: border-box;
}

.simple-form input[type="text"]:focus {
    outline: none;
    background: #fff;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.simple-form button[type="submit"] {
    background: var(--brand-purple);
    color: var(--apple-text);
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-form button[type="submit"]:hover {
    background: var(--brand-purple-dark);
}
