.options-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.options-header {
    text-align: center;
    margin-bottom: 40px;
}

.options-header h1 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 0px;
}

.options-header p {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.report-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ebebeb;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: #f8f9fa;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header h2 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 10px 0;
}

.report-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0 0 0;
}

.card-body {
    padding: 25px 30px;
    flex-grow: 1;
}

.destaque-jyra {
    color: #ff3d00;
    font-weight: bold;
}

.report-preamble {
    background: #ecf0f1;
    padding: 15px 30px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #444;
    text-align: center;
}

.report-preamble strong {
    color: #ff3d00;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.features-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "FontAwesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff3d00;
    font-size: 14px;
}

.btn-buy {
    display: inline-block;
    width: 100%;
    padding: 15px 0px 15px 0px;
    background: #ff3d00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    text-align: center;
}

.btn-buy:hover {
    background: #dd3500;
    color: #fff;
}

@media (max-width: 768px) {
    .cards-wrapper {
        flex-direction: column;
    }
}