/* ========================================
   REEMBOLSOS
   CSS EXCLUSIVO DA PÁGINA
======================================== */


/* ========================================
   HERO
======================================== */

.refund-hero {
    position: relative;

    width: 100%;
    min-height: 780px;

    overflow: hidden;

    background-color: #0a2438;
}


/* FAIXA CLARA */

.refund-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 42%;
    height: 100%;

    background-color: #f1eee6;
}


/* LINHA SUPERIOR */

.refund-hero::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 32%;
    height: 4px;

    background-color: var(--color-secondary);
}


/* ========================================
   CONTAINER
======================================== */

.refund-hero__container {
    position: relative;

    width: 100%;
    max-width: 1420px;
    min-height: 780px;

    margin: 0 auto;
    padding: 78px 48px 88px;

    display: grid;
    grid-template-columns: 0.82fr 1.18fr;

    gap: 78px;

    align-items: center;

    z-index: 2;
}


/* ========================================
   CONTEÚDO
======================================== */

.refund-hero__content {
    max-width: 590px;
}


.refund-hero__back {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 48px;

    color: var(--color-text-secondary);

    font-size: 13px;
    font-weight: 500;

    transition: var(--transition);
}


.refund-hero__back span {
    color: var(--color-secondary-dark);

    font-size: 16px;

    transition: transform 0.25s ease;
}


.refund-hero__back:hover {
    color: var(--color-primary-dark);
}


.refund-hero__back:hover span {
    transform: translateX(-4px);
}


.refund-hero__module {
    display: block;

    margin-bottom: 18px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.refund-hero__title {
    margin-bottom: 26px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(48px, 4.5vw, 72px);
    font-weight: 600;

    line-height: 1.04;
    letter-spacing: -2.6px;
}


.refund-hero__title span {
    display: block;

    color: var(--color-secondary-dark);
}


.refund-hero__description {
    max-width: 560px;

    margin-bottom: 36px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   BOTÕES
======================================== */

.refund-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;
}


.refund-hero__primary,
.refund-hero__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}


.refund-hero__primary {
    gap: 13px;

    padding: 15px 23px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);
}


.refund-hero__primary:hover {
    background-color: var(--color-secondary-dark);

    transform: translateY(-2px);
}


.refund-hero__primary span {
    font-size: 18px;

    transition: transform 0.25s ease;
}


.refund-hero__primary:hover span {
    transform: translateX(4px);
}


.refund-hero__secondary {
    padding: 14px 22px;

    border: 1px solid rgba(16, 42, 67, 0.24);

    color: var(--color-primary-dark);
}


.refund-hero__secondary:hover {
    border-color: var(--color-secondary-dark);
    color: var(--color-secondary-dark);
}


/* ========================================
   VISUAL
======================================== */

.refund-hero__visual {
    position: relative;

    width: 100%;
    height: 620px;
}


/* CONTORNO */

.refund-hero__visual::before {
    content: "";

    position: absolute;

    top: 34px;
    right: -30px;

    width: 78%;
    height: 84%;

    border: 1px solid rgba(255, 255, 255, 0.14);
}


/* FOTO */

.refund-hero__photo {
    position: absolute;

    top: 0;
    right: 0;

    width: 85%;
    height: 575px;

    overflow: hidden;

    background-color: #d9e0e4;

    border-radius: 18px 180px 18px 18px;

    box-shadow:
        0 38px 90px rgba(0, 0, 0, 0.30);

    z-index: 1;
}


.refund-hero__photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ========================================
   DOCUMENTO FLUTUANTE
======================================== */

.refund-document {
    position: absolute;

    width: 230px;
    padding: 19px;

    background-color: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(16, 42, 67, 0.11);
    border-radius: 10px;

    box-shadow:
        0 20px 46px rgba(8, 27, 44, 0.22);

    z-index: 4;
}


.refund-document--receipt {
    top: 54px;
    left: -38px;

    transform: rotate(-2deg);
}


.refund-document__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 26px;

    padding-bottom: 13px;

    border-bottom: 1px solid var(--color-border);
}


.refund-document__type {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.6px;
    text-transform: uppercase;
}


.refund-document__status {
    color: var(--color-secondary-dark);

    font-size: 10px;
    font-weight: 600;
}


.refund-document strong {
    display: block;

    margin-bottom: 7px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
}


.refund-document p {
    color: var(--color-text-secondary);

    font-size: 11px;
    line-height: 1.5;
}


.refund-document__value {
    margin-top: 20px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 21px;
    font-weight: 600;
}


/* ========================================
   STATUS FLUTUANTES
======================================== */

.refund-float {
    position: absolute;

    min-width: 205px;
    padding: 14px 16px;

    display: flex;
    align-items: center;

    gap: 12px;

    background-color: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(16, 42, 67, 0.10);
    border-radius: 12px;

    box-shadow:
        0 18px 42px rgba(8, 27, 44, 0.20);

    z-index: 4;

    animation:
        refundFloating
        4.5s
        ease-in-out
        infinite;
}


.refund-float--analysis {
    top: 238px;
    right: -30px;
}


.refund-float--approved {
    left: -16px;
    bottom: 94px;

    animation-delay: 1.2s;
}


.refund-float__marker {
    width: 11px;
    height: 11px;

    flex-shrink: 0;

    background-color: #d6a945;

    border-radius: 50%;

    box-shadow:
        0 0 0 6px rgba(214, 169, 69, 0.14);
}


.refund-float__icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(22, 184, 166, 0.12);
    color: var(--color-secondary-dark);

    border-radius: 9px;

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
}


.refund-float > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.refund-float small {
    color: var(--color-text-secondary);

    font-size: 10px;
}


.refund-float strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


/* ========================================
   LEGENDA
======================================== */

.refund-hero__caption {
    position: absolute;

    right: 7%;
    bottom: 0;

    width: 52%;

    padding: 20px 24px;

    display: flex;
    flex-direction: column;

    gap: 6px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);

    z-index: 3;
}


.refund-hero__caption span {
    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.refund-hero__caption strong {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;
}


@keyframes refundFloating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ========================================
   FLUXO DE REEMBOLSO
======================================== */

.refund-flow {
    width: 100%;

    padding: 150px 0;

    background-color: #ffffff;
}


.refund-flow__container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 32px;
}


/* CABEÇALHO */

.refund-flow__header {
    max-width: 900px;

    margin-bottom: 82px;
}


.refund-flow__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.9px;
    text-transform: uppercase;
}


.refund-flow__eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    background-color: var(--color-secondary);
}


.refund-flow__title {
    margin-bottom: 24px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(44px, 4.5vw, 66px);
    font-weight: 600;

    line-height: 1.07;
    letter-spacing: -2px;
}


.refund-flow__title span {
    display: block;

    color: var(--color-secondary-dark);
}


.refund-flow__description {
    max-width: 680px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}


/* LAYOUT */

.refund-flow__layout {
    display: grid;
    grid-template-columns: 250px 1fr;

    gap: 70px;

    align-items: start;
}


/* TRILHO LATERAL */

.refund-flow__rail {
    position: sticky;

    top: 110px;

    border-top: 1px solid rgba(16, 42, 67, 0.18);
}


.refund-flow__rail-item {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 12px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(16, 42, 67, 0.18);
}


.refund-flow__rail-item span {
    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
}


.refund-flow__rail-item strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
}


/* CONTEÚDO */

.refund-flow__content {
    border-top: 1px solid rgba(16, 42, 67, 0.18);
}


.refund-flow__section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 54px;

    padding: 48px 0;

    border-bottom: 1px solid rgba(16, 42, 67, 0.18);
}


/* TÍTULO */

.refund-flow__heading {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 15px;
}


.refund-flow__heading > span {
    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
}


.refund-flow__heading small {
    display: block;

    margin-bottom: 9px;

    color: var(--color-text-secondary);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}


.refund-flow__heading h3 {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 23px;
    font-weight: 600;

    line-height: 1.3;
}


/* CORPO */

.refund-flow__body > p {
    max-width: 610px;

    margin-bottom: 25px;

    color: var(--color-text-secondary);

    font-size: 15px;
    line-height: 1.75;
}


/* CAMPOS */

.refund-flow__fields {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.refund-flow__fields span {
    padding: 8px 12px;

    border: 1px solid rgba(16, 42, 67, 0.16);

    color: var(--color-primary-dark);

    font-size: 12px;
    font-weight: 500;
}


/* ANÁLISE */

.refund-flow__analysis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(16, 42, 67, 0.14);
    border-left: 1px solid rgba(16, 42, 67, 0.14);
}


.refund-flow__analysis div {
    min-height: 105px;

    padding: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 6px;

    border-right: 1px solid rgba(16, 42, 67, 0.14);
    border-bottom: 1px solid rgba(16, 42, 67, 0.14);
}


.refund-flow__analysis span {
    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
}


.refund-flow__analysis strong {
    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;

    line-height: 1.45;
}


/* DECISÃO */

.refund-flow__decision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}


.refund-flow__decision-item {
    padding: 20px;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    border: 1px solid rgba(22, 184, 166, 0.26);

    background-color: rgba(22, 184, 166, 0.05);
}


.refund-flow__decision-item--rejected {
    border-color: rgba(185, 67, 67, 0.20);

    background-color: rgba(185, 67, 67, 0.04);
}


.refund-flow__decision-mark {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(22, 184, 166, 0.14);
    color: var(--color-secondary-dark);

    border-radius: 50%;

    font-family: var(--font-primary);
    font-weight: 700;
}


.refund-flow__decision-item--rejected
.refund-flow__decision-mark {
    background-color: rgba(185, 67, 67, 0.10);

    color: #b94343;
}


.refund-flow__decision-item strong {
    display: block;

    margin-bottom: 5px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
}


.refund-flow__decision-item p {
    color: var(--color-text-secondary);

    font-size: 12px;
    line-height: 1.55;
}


/* DESTAQUE */

.refund-flow__statement {
    margin: 0;

    padding: 22px 24px;

    border-left: 3px solid var(--color-secondary);

    background-color: #f1eee6;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;

    line-height: 1.6;
}


/* ========================================
   CONTROLE E RASTREABILIDADE
======================================== */

.refund-trace {
    width: 100%;

    padding: 150px 0;

    background-color: #f1eee6;
}


.refund-trace__container {
    width: 100%;
    max-width: 1420px;

    margin: 0 auto;
    padding: 0 48px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 96px;

    align-items: center;
}


/* VISUAL */

.refund-trace__visual {
    position: relative;

    height: 650px;

    overflow: hidden;
}


.refund-trace__visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.refund-trace__visual-info {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 62%;

    padding: 22px 25px;

    display: flex;
    flex-direction: column;

    gap: 6px;

    background-color: var(--color-primary-dark);
    color: var(--color-white);
}


.refund-trace__visual-info span {
    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.refund-trace__visual-info strong {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    line-height: 1.5;
}


/* CONTEÚDO */

.refund-trace__content {
    max-width: 600px;
}


.refund-trace__eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.9px;
    text-transform: uppercase;
}


.refund-trace__eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    background-color: var(--color-secondary);
}


.refund-trace__title {
    margin-bottom: 26px;

    color: var(--color-primary-dark);

    font-family: var(--font-primary);
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -2px;
}


.refund-trace__title span {
    display: block;

    color: var(--color-secondary-dark);
}


.refund-trace__description {
    margin-bottom: 48px;

    color: var(--color-text-secondary);

    font-size: 16px;
    line-height: 1.8;
}


.refund-trace__list {
    border-top: 1px solid rgba(16, 42, 67, 0.16);
}


.refund-trace__item {
    display: grid;
    grid-template-columns: 150px 1fr;

    gap: 28px;

    padding: 20px 0;

    border-bottom: 1px solid rgba(16, 42, 67, 0.16);
}


.refund-trace__item span {
    color: var(--color-secondary-dark);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
}


.refund-trace__item p {
    color: var(--color-text-secondary);

    font-size: 13px;
    line-height: 1.6;
}


/* ========================================
   CTA FINAL
======================================== */

.refund-cta {
    position: relative;
    width: 100%;
    padding: 120px 0 125px;
    overflow: hidden;
    background-color: #0a2438;
}


/* ELEMENTO DECORATIVO DE FUNDO */

.refund-cta::before {
    content: "";

    position: absolute;
    top: -520px;
    left: 50%;

    width: 900px;
    height: 900px;

    border: 1px solid rgba(22, 184, 166, 0.10);
    border-radius: 50%;

    transform: translateX(-50%);
    pointer-events: none;
}


.refund-cta::after {
    content: "";

    position: absolute;
    top: -410px;
    left: 50%;

    width: 680px;
    height: 680px;

    border: 1px solid rgba(22, 184, 166, 0.06);
    border-radius: 50%;

    transform: translateX(-50%);
    pointer-events: none;
}


/* CONTAINER */

.refund-cta__container {
    position: relative;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 0 32px;

    text-align: center;

    z-index: 2;
}


/* EYEBROW */

.refund-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 26px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.refund-cta__eyebrow::before,
.refund-cta__eyebrow::after {
    content: "";

    width: 26px;
    height: 1px;

    background-color: rgba(22, 184, 166, 0.55);
}


/* TÍTULO */

.refund-cta__title {
    max-width: 1100px;

    margin: 0 auto 28px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 600;

    line-height: 1.02;
    letter-spacing: -3px;
}


.refund-cta__title span {
    display: block;

    margin-top: 8px;

    color: var(--color-secondary);
}


/* DESCRIÇÃO */

.refund-cta__description {
    max-width: 680px;

    margin: 0 auto 38px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;
    line-height: 1.75;
}


/* BOTÕES */

.refund-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
}


.refund-cta__primary,
.refund-cta__secondary {
    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


/* BOTÃO PRINCIPAL */

.refund-cta__primary {
    min-width: 240px;

    gap: 16px;

    padding: 0 26px;

    background-color: var(--color-secondary);
    color: var(--color-primary-dark);
}


.refund-cta__primary:hover {
    background-color: #22d0bc;

    transform: translateY(-3px);
}


.refund-cta__primary span {
    font-size: 19px;

    transition: transform 0.25s ease;
}


.refund-cta__primary:hover span {
    transform: translateX(5px);
}


/* BOTÃO SECUNDÁRIO */

.refund-cta__secondary {
    min-width: 190px;

    padding: 0 26px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: var(--color-white);
}


.refund-cta__secondary:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);

    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVIDADE - REEMBOLSOS
===================================================== */

.refund-hero,
.refund-flow,
.refund-trace,
.refund-cta{
    overflow:hidden;
}

.refund-hero__container,
.refund-flow__container,
.refund-trace__container,
.refund-cta__container{
    min-width:0;
}


/* =====================================================
   1200px
===================================================== */

@media (max-width:1200px){

    .refund-hero__container{
        grid-template-columns:1fr;
        gap:70px;
    }

    .refund-hero__content{
        max-width:700px;
    }

    .refund-hero__visual{
        margin:0 auto;
        max-width:760px;
    }

    .refund-flow__layout{
        grid-template-columns:1fr;
    }

    .refund-flow__rail{
        position:static;

        display:grid;
        grid-template-columns:repeat(4,1fr);

        border-top:none;
    }

    .refund-trace__container{
        grid-template-columns:1fr;
        gap:70px;
    }

}


/* =====================================================
   992px
===================================================== */

@media (max-width:992px){

    .refund-hero{
        min-height:auto;
    }

    .refund-hero::before{
        display:none;
    }

    .refund-hero__container{
        min-height:auto;

        padding:80px 32px;
    }

    .refund-hero__content{

        text-align:center;

        margin:auto;
    }

    .refund-hero__actions{

        justify-content:center;
    }

    .refund-hero__title{

        color:#fff;
    }

    .refund-hero__description{

        color:rgba(255,255,255,.72);
    }

    .refund-hero__back{

        color:#fff;
    }

    .refund-hero__secondary{

        color:#fff;
        border-color:rgba(255,255,255,.25);
    }

    .refund-hero__secondary:hover{

        color:var(--color-secondary);
    }

    .refund-flow__section{

        grid-template-columns:1fr;

        gap:28px;
    }

    .refund-flow__analysis{

        grid-template-columns:1fr;
    }

    .refund-flow__decision{

        grid-template-columns:1fr;
    }

    .refund-trace__visual{

        height:500px;
    }

}


/* =====================================================
   768px
===================================================== */

@media (max-width:768px){

    .refund-hero__container,
    .refund-flow__container,
    .refund-trace__container,
    .refund-cta__container{

        padding-left:20px;
        padding-right:20px;
    }

    .refund-hero{

        min-height:auto;
    }

    .refund-hero__container{

        padding-top:65px;
        padding-bottom:70px;
    }

    .refund-hero__title{

        font-size:44px;
        letter-spacing:-1.5px;
    }

    .refund-hero__visual{

        height:470px;
    }

    .refund-hero__photo{

        width:100%;
        height:100%;

        border-radius:20px;
    }

    .refund-document{

        display:none;
    }

    .refund-float{

        display:none;
    }

    .refund-hero__caption{

        width:100%;

        right:0;
    }

    .refund-flow{

        padding:90px 0;
    }

    .refund-flow__header{

        margin-bottom:55px;
    }

    .refund-flow__title{

        font-size:42px;
    }

    .refund-trace{

        padding:90px 0;
    }

    .refund-trace__visual{

        height:420px;
    }

    .refund-trace__visual-info{

        width:100%;
    }

    .refund-trace__title{

        font-size:42px;
    }

    .refund-trace__item{

        grid-template-columns:1fr;

        gap:8px;
    }

    .refund-cta{

        padding:90px 0;
    }

    .refund-cta__title{

        font-size:46px;
    }

}


/* =====================================================
   576px
===================================================== */

@media (max-width:576px){

    .refund-hero__title{

        font-size:34px;
    }

    .refund-flow__title{

        font-size:34px;
    }

    .refund-trace__title{

        font-size:34px;
    }

    .refund-cta__title{

        font-size:34px;
    }

    .refund-flow__rail{

        grid-template-columns:1fr;
    }

    .refund-flow__rail-item{

        padding:16px 0;
    }

    .refund-hero__visual{

        height:330px;
    }

    .refund-trace__visual{

        height:300px;
    }

    .refund-cta__actions{

        flex-direction:column;
    }

    .refund-cta__primary,
    .refund-cta__secondary{

        width:100%;
    }

    .refund-hero__actions{

        flex-direction:column;
    }

    .refund-hero__primary,
    .refund-hero__secondary{

        width:100%;
    }

}