/* ===========================
   CREDENCIAMENTO V2
   Prefix: cr-
   Header/Footer: home-v2.css (hv2-*)
   =========================== */

/* ---------- Base ---------- */
.cr-page {
    font-family: 'Montserrat', sans-serif;
    color: #1A1A1A;
    background: #F7F8FA;
    -webkit-font-smoothing: antialiased;
}
.cr-page *, .cr-page *::before, .cr-page *::after { box-sizing: border-box; }
.cr-page a { text-decoration: none; }
.cr-page img { max-width: 100%; display: block; }

/* ---------- 1. Hero ---------- */
.cr-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #00402B;
}
.cr-hero--compact {
    height: 200px;
}
.cr-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,64,43,0.96) 0%,
        rgba(0,87,61,0.87) 50%,
        rgba(45,122,79,0.73) 100%);
    z-index: 1;
}
.cr-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    width: 100%;
}
.cr-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 90px;
    font-size: 12px;
    font-weight: 500;
}
.cr-hero--compact .cr-hero__breadcrumb {
    padding-top: 60px;
}
.cr-hero__breadcrumb a {
    color: rgba(255,255,255,0.67);
    transition: color 0.15s;
}
.cr-hero__breadcrumb a:hover { color: #fff; }
.cr-hero__breadcrumb .cr-hero__sep {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
}
.cr-hero__breadcrumb .cr-hero__current {
    color: rgba(255,255,255,0.8);
}
.cr-hero__title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
}
.cr-hero__accent {
    width: 4px;
    height: 44px;
    background: #91C14D;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 4px;
}
.cr-hero__title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}
.cr-hero__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.73);
    margin: 14px 0 0 20px;
    max-width: 600px;
    line-height: 1.5;
}
.cr-hero__icon {
    position: absolute;
    z-index: 2;
    color: #fff;
    pointer-events: none;
}
.cr-hero__icon--main {
    right: 60px;
    top: -20px;
    font-size: 260px;
    opacity: 0.09;
}
.cr-hero__icon--sec {
    right: 20px;
    bottom: -10px;
    font-size: 90px;
    opacity: 0.06;
    transform: rotate(-12deg);
}

/* ---------- 2. Step Indicator ---------- */
.cr-steps {
    background: #fff;
    border-bottom: 1px solid #E8E8E8;
    padding: 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.cr-steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.cr-steps__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 2px solid #D0D0D0;
    background: #fff;
    color: #A0A0A0;
}
/* Active step */
.cr-steps__item--active .cr-steps__circle {
    border-color: #00573D;
    background: #00573D;
    color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(0,87,61,0.15);
}
/* Completed step */
.cr-steps__item--done .cr-steps__circle {
    border-color: #00573D;
    background: #00573D;
    color: #FFFFFF !important;
}
.cr-steps__label {
    font-size: 10px;
    font-weight: 600;
    color: #A0A0A0;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cr-steps__item--active .cr-steps__label,
.cr-steps__item--done .cr-steps__label {
    color: #00573D;
}
.cr-steps__line {
    width: 60px;
    height: 2px;
    background: #D0D0D0;
    flex-shrink: 0;
    margin: 0 8px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}
.cr-steps__line--done {
    background: #00573D;
}

/* ---------- 3. Type Selection Cards (Etapa 1) ---------- */
.cr-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 64px;
}
.cr-body__title {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin: 0 0 40px;
}
.cr-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}
.cr-type-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #E8E8E8;
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cr-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: #c8d6d0;
}
.cr-type-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F0F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00573D;
    transition: all 0.3s ease;
}
.cr-type-card:hover .cr-type-card__icon {
    background: #00573D;
    color: #fff;
}
.cr-type-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}
.cr-type-card__check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00573D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hidden radio */
.cr-type-radio { display: none; }
.cr-type-radio:checked + .cr-type-card {
    border-color: #00573D;
    box-shadow: 0 0 0 3px rgba(0,87,61,0.12), 0 8px 32px rgba(0,0,0,0.06);
}
.cr-type-radio:checked + .cr-type-card .cr-type-card__check {
    opacity: 1;
    transform: scale(1);
}
.cr-type-radio:checked + .cr-type-card .cr-type-card__icon {
    background: #00573D;
    color: #fff;
}

/* ---------- 4. Benefits List (Etapa 2) ---------- */
.cr-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.cr-content-grid--full {
    grid-template-columns: 1fr;
    max-width: 800px;
}
.cr-benefits-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    padding: 40px;
}
.cr-benefits-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
}
.cr-benefits-card__subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 28px;
    line-height: 1.5;
}
.cr-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cr-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding: 14px 16px;
    background: #FAFBFC;
    border-radius: 10px;
    border: 1px solid #F0F0F0;
    transition: border-color 0.2s;
}
.cr-benefits li:hover {
    border-color: #c8d6d0;
}
.cr-benefits li i {
    color: #00573D;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
/* Link dentro do item de benef&iacute;cio: vira um chip verde para nao se
   perder no meio do texto corrido (o .cr-page a zera o sublinhado). */
.cr-benefits__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 6px;
    padding: 5px 13px;
    border-radius: 20px;
    background: #91C14D;
    box-shadow: 0 0 0 4px rgba(145, 193, 77, 0.22);
    color: #00332A !important;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    vertical-align: middle;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cr-benefits__link i {
    color: #00332A !important;
    font-size: 11px !important;
    margin-top: 0 !important;
    transition: transform 0.2s;
}
.cr-benefits__link:hover {
    background: #7DB03A;
    box-shadow: 0 0 0 4px rgba(145, 193, 77, 0.35), 0 6px 16px rgba(0, 87, 61, 0.25);
}
.cr-benefits__link:hover i { transform: translateX(3px); }
.cr-benefits__link:focus-visible {
    outline: 2px solid #91C14D;
    outline-offset: 2px;
}
.cr-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00573D, #007A55);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 24px;
}
.cr-price-tag__value {
    font-size: 22px;
    font-weight: 800;
}

/* Sidebar */
.cr-sidebar-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.cr-sidebar-card img {
    width: 100%;
    height: auto;
    display: block;
}
.cr-sidebar-card__body {
    padding: 28px 24px;
    text-align: center;
}
.cr-sidebar-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F0F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -48px auto 16px;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
    font-size: 22px;
    color: #00573D;
}
.cr-sidebar-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 8px;
    line-height: 1.3;
}
.cr-sidebar-card__title span {
    color: #00573D;
}
.cr-sidebar-card__text {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ---------- 4b. Sidebar da etapa 2: pilha de cards ---------- */
/* O sticky vive na pilha; os cards dentro dela sao estaticos, senao cada um
   tentaria grudar no proprio topo e eles se sobrepunham na rolagem. */
.cr-side-stack {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cr-side-stack > .cr-sidebar-card {
    position: static;
    top: auto;
}

/* ---------- 4c. Tabela de mensalidades (etapa 2) ---------- */
.cr-valores {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    overflow: hidden;
}
.cr-valores__head {
    position: relative;
    background: linear-gradient(135deg, #00573D, #016E4C);
    color: #fff;
    padding: 20px 22px 18px;
}
.cr-valores__ano {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(145, 193, 77, 0.22);
    border: 1px solid rgba(145, 193, 77, 0.5);
    color: #B6E27A;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.cr-valores__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 4px;
    color: #fff;
}
.cr-valores__sub {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.74);
    margin: 0;
}

.cr-valores__body { padding: 6px 22px 4px; }

.cr-valores__table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 0;
    /* tabular-nums alinha as casas decimais sem precisar de fonte monoespacada */
    font-variant-numeric: tabular-nums;
}
/* respiro entre os dois blocos: o total de Curitiba nao pode encostar no
   titulo das Regionais */
.cr-valores__table + .cr-valores__table,
.cr-valores__nota + .cr-valores__table { margin-top: 30px; }

.cr-valores__caption {
    caption-side: top;
    text-align: left;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #00573D;
    padding-bottom: 8px;
}
.cr-valores__table th,
.cr-valores__table td {
    padding: 8px 0;
    font-size: 13.5px;
    text-align: left;
}
.cr-valores__table tbody th {
    font-weight: 500;
    color: #555;
}
.cr-valores__table tbody td {
    text-align: right;
    font-weight: 600;
    color: #1A1A1A;
    white-space: nowrap;
}
.cr-valores__table tbody tr + tr th,
.cr-valores__table tbody tr + tr td {
    border-top: 1px solid #F1F3F2;
}
.cr-valores__table tfoot th,
.cr-valores__table tfoot td {
    padding-top: 11px;
    border-top: 2px solid #E4EBE7;
    color: #00573D;
    font-weight: 700;
}
.cr-valores__table tfoot th { font-size: 12px; }
.cr-valores__table tfoot td {
    text-align: right;
    font-size: 20px;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.cr-valores__cifrao {
    font-size: 0.68em;
    font-weight: 600;
    opacity: 0.65;
    margin-right: 3px;
}
.cr-valores__nota {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0 0;
    padding: 7px 10px;
    border-radius: 8px;
    background: #F3F7F4;
    font-size: 11.5px;
    line-height: 1.4;
    color: #3F5A4E;
}
.cr-valores__nota i { color: #00573D; font-size: 12px; }

.cr-valores__foot {
    margin: 0;
    padding: 16px 22px 18px;
    border-top: 1px solid #F0F2F1;
    font-size: 11px;
    line-height: 1.55;
    color: #7A8580;
}

/* ---------- 5. Form Styling (Etapa 3) ---------- */
/* Form Section wrapper */
.cr-form-section {
    padding: 48px 80px 64px;
    background: #F7F8FA;
}
.cr-form-section__container {
    max-width: 1100px;
    margin: 0 auto;
}
.cr-form-section__header {
    margin-bottom: 32px;
}
.cr-form-section__title {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px;
}
.cr-form-section__subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}
.cr-form-section__body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.cr-form-section__body > .cr-form-card {
    flex: 1;
    min-width: 0;
}
.cr-form-section__body > .cr-sidebar-card {
    width: 280px;
    flex-shrink: 0;
}
/* Ensure form card takes proper space */
.cr-form-section__body > .cr-form-card {
    flex: 1;
    min-width: 0;
    max-width: none;
}

.cr-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    padding: 40px;
}
.cr-form-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}
.cr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}
.cr-form-grid--full {
    grid-template-columns: 1fr;
}
.cr-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cr-field--full {
    grid-column: 1 / -1;
}
.cr-field label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.cr-field input[type="text"],
.cr-field input[type="email"],
.cr-field input[type="date"],
.cr-field input[type="number"],
.cr-field input[type="tel"],
.cr-field select,
.cr-field textarea {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}
.cr-field textarea {
    height: auto;
    padding: 12px 16px;
    resize: vertical;
    min-height: 100px;
}
.cr-field input[type="text"]:focus,
.cr-field input[type="email"]:focus,
.cr-field input[type="date"]:focus,
.cr-field input[type="number"]:focus,
.cr-field input[type="tel"]:focus,
.cr-field select:focus,
.cr-field textarea:focus {
    border-color: #00573D;
    box-shadow: 0 0 0 3px rgba(0,87,61,0.1);
}
.cr-field input::placeholder {
    color: #B0B0B0;
}
.cr-field .cr-field__error {
    font-size: 12px;
    color: #D32F2F;
    margin-top: 2px;
}

/* ---------- 6. Success State (Etapa 4) ---------- */
.cr-success {
    text-align: center;
    padding: 80px 24px;
    max-width: 600px;
    margin: 0 auto;
}
.cr-success__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F0F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: cr-success-pop 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.cr-success__icon i {
    font-size: 44px;
    color: #00573D;
}
@keyframes cr-success-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes cr-success-check {
    0% { stroke-dashoffset: 48; }
    100% { stroke-dashoffset: 0; }
}
.cr-success__title {
    font-size: 28px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 12px;
}
.cr-success__text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ---------- 7. Plan Card (Etapa 5) ---------- */
.cr-plan-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.cr-plan-card__name {
    font-size: 14px;
    font-weight: 600;
    color: #00573D;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}
.cr-plan-card__price {
    font-size: 48px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 4px;
}
.cr-plan-card__price span {
    font-size: 18px;
    font-weight: 500;
    color: #888;
}
.cr-plan-card__period {
    font-size: 13px;
    color: #888;
    margin: 0 0 32px;
}
.cr-plan-card__divider {
    width: 60px;
    height: 3px;
    background: #00573D;
    border-radius: 2px;
    margin: 0 auto 28px;
}
.cr-plan-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.cr-plan-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}
.cr-plan-card__features li i {
    color: #00573D;
    font-size: 16px;
}
.cr-plan-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ---------- 8. Payment Modal ---------- */
.cr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.cr-modal-overlay--active {
    display: flex;
}
.cr-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    padding: 36px;
    position: relative;
    animation: cr-modal-in 0.3s ease;
}
@keyframes cr-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.cr-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #F0F0F0;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.cr-modal__close:hover {
    background: #E0E0E0;
}
.cr-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 24px;
}
.cr-modal .cr-form-grid {
    gap: 16px 20px;
}
.cr-modal__footer {
    margin-top: 28px;
    text-align: right;
}

/* ---------- 8b. Checkbox, reCAPTCHA, Form Actions ---------- */
.cr-field--recaptcha {
    margin-top: 8px;
}
.cr-field--check {
    margin-top: 4px;
}
.cr-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cr-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00573D;
    cursor: pointer;
    flex-shrink: 0;
}
.cr-checkbox__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    margin: 0;
    cursor: pointer;
}
.cr-link {
    color: #00573D;
    font-weight: 600;
    text-decoration: underline;
}
.cr-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E8E8E8;
}
.cr-form-actions .cr-btn--primary,
.cr-form-actions .cr-btn--outline {
    font-size: 14px;
    padding: 12px 28px;
}
.cr-form-actions button.cr-btn--primary {
    border: 2px solid #00573D;
    color: #FFFFFF !important;
}

/* ---------- 9. Buttons ---------- */
.cr-btn-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}
.cr-btn--primary,
.cr-btn--primary:link,
.cr-btn--primary:visited,
button.cr-btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #00573D !important;
    color: #FFFFFF !important;
    border: 2px solid #00573D;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cr-btn--primary:hover {
    background: #004530 !important;
    border-color: #004530;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,87,61,0.25);
}
.cr-btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: #00573D;
    border: 2px solid #00573D;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cr-btn--outline:hover {
    background: #F0F7F4;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,87,61,0.1);
}
.cr-btn--boleto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #00573D;
    border: 2px solid #00573D;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cr-btn--boleto:hover {
    background: #F0F7F4;
}
.cr-btn--cartao,
.cr-btn--cartao:link,
.cr-btn--cartao:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #00573D !important;
    color: #FFFFFF !important;
    border: 2px solid #00573D;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cr-btn--cartao:hover {
    background: #004530 !important;
    color: #FFFFFF !important;
    border-color: #004530;
}
.cr-btn--disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ---------- 10. Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .cr-hero__content { padding: 0 40px; }
    .cr-steps { padding: 24px 40px; }
    .cr-form-section { padding: 32px 30px 48px; }
    .cr-form-section__body { flex-direction: column; }
    .cr-form-section__body > .cr-sidebar-card { width: 100%; }
    .cr-content-grid {
        grid-template-columns: 1fr;
    }
    .cr-sidebar-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .cr-side-stack {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .cr-side-stack > .cr-sidebar-card { max-width: none; }
}

/* Mobile Large */
@media (max-width: 768px) {
    .cr-hero { height: 240px; }
    .cr-hero--compact { height: 180px; }
    .cr-hero__content { padding: 0 24px; }
    .cr-hero__breadcrumb { padding-top: 70px; }
    .cr-hero--compact .cr-hero__breadcrumb { padding-top: 50px; }
    .cr-hero__title { font-size: 26px; }
    .cr-hero__title-row { margin-top: 20px; }
    .cr-hero__accent { height: 34px; }
    .cr-hero__subtitle { font-size: 13px; margin-left: 0; }
    .cr-hero__icon--main { font-size: 180px; right: 20px; }

    .cr-steps { padding: 20px 16px; }
    .cr-steps__line { width: 24px; }
    .cr-steps__circle { width: 32px; height: 32px; font-size: 12px; }
    .cr-steps__label { font-size: 8px; }
    .cr-form-section { padding: 24px 16px 40px; }
    .cr-form-section__title { font-size: 22px; }

    .cr-body { padding: 32px 16px 48px; }
    .cr-body__title { font-size: 20px; margin-bottom: 28px; }

    .cr-type-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
    }
    .cr-type-card { padding: 36px 24px; }

    .cr-benefits-card { padding: 24px 20px; }
    .cr-benefits li { padding: 12px 14px; font-size: 13px; }

    .cr-form-card { padding: 24px 20px; }
    .cr-form-grid { grid-template-columns: 1fr; gap: 16px; }
    .cr-field--full { grid-column: auto; }

    .cr-btn-row { flex-direction: column; gap: 12px; }
    .cr-btn--primary,
    .cr-btn--outline { width: 100%; justify-content: center; }

    .cr-plan-card { padding: 28px 20px; }
    .cr-plan-card__price { font-size: 36px; }
    .cr-plan-actions { flex-direction: column; }
    .cr-btn--boleto,
    .cr-btn--cartao { width: 100%; justify-content: center; }

    .cr-modal { padding: 24px; margin: 16px; }
    .cr-modal .cr-form-grid { grid-template-columns: 1fr; }

    .cr-success { padding: 48px 20px; }
    .cr-success__title { font-size: 22px; }

    .cr-sidebar-card__body { padding: 20px 16px; }
}

/* Mobile Small */
@media (max-width: 480px) {
    .cr-hero { height: 220px; }
    .cr-hero--compact { height: 160px; }
    .cr-hero__title { font-size: 22px; }
    .cr-steps__line { width: 20px; }
    .cr-steps__circle { width: 26px; height: 26px; font-size: 11px; }
    .cr-type-card__icon { width: 64px; height: 64px; font-size: 26px; }
    .cr-type-card__name { font-size: 18px; }
    .cr-price-tag { flex-direction: column; text-align: center; }
}
