/* =========================================================
   OFERTA WEBSITE — estilos isolados
   Prefixo: fixe-offer / fixe-modal
   ========================================================= */

.fixe-offer-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #222429;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.fixe-offer-ribbon {
    position: absolute;
    top: 24px;
    right: -48px;
    z-index: 2;
    width: 190px;
    padding: 9px 0;
    transform: rotate(45deg);
    background: #E1FD36;
    color: #121212;
    font-family: "Oswald", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  
}

.fixe-offer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 2rem;
    border-radius: 50%;
    background: #E1FD36;
    color: #272727;
    font-size: 2rem;
}

.fixe-offer-title {
    color: #ffffff;
}

.fixe-offer-title span {
    color: #a7a9ad;
}

.fixe-offer-description {
    padding: 18px;
    background: #ff3a6b;
    color: #111111;
    line-height: 1.65;
}

.fixe-offer-button {
    padding: 12px 22px;

    border: 2px solid #ffffff;
    border-radius: 4px;

    background-color: #ff3a6b;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;
}

.fixe-offer-button:hover,
.fixe-offer-button:focus {
    background: transparent;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    outline: none;
}

/* Modal */
.fixe-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fixe-modal.is-open {
    display: flex;
}

.fixe-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(3px);
}

.fixe-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: 88vh;
    overflow-y: auto;
    padding: 42px;
    background: #ffffff;
    color: #222429;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.fixe-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #222429;
    font-size: 2rem;
    line-height: 1;
}

.fixe-modal__close:hover,
.fixe-modal__close:focus {
    color: #000000;
    outline: 2px solid #ff3a6b;
    outline-offset: 2px;
}

.fixe-modal__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 10px;
    background: #ff3a6b;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fixe-modal__dialog h2,
.fixe-modal__dialog h3 {
    color: #222429;
}

.fixe-modal__lead {
    font-size: 1.1rem;
    line-height: 1.7;
}

.fixe-modal__content ul {
    padding-left: 1.2rem;
}

.fixe-modal__content li {
    margin-bottom: 0.65rem;
}

.fixe-modal__note {
    padding: 14px 16px;
    border-left: 5px solid #ff94ad;
    background: #f4f5f8;
}

.fixe-modal__cta {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
        background-color: #25d366;

}

.fixe-modal__cta:hover,
.fixe-modal__cta:focus {
    color: #ffffff;
    background-color: #25d366;
}

body.fixe-modal-open {
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .fixe-offer-card {
        padding: 2.5rem 1.5rem !important;
    }

    .fixe-offer-ribbon {
        top: 20px;
        right: -58px;
    }

    .fixe-modal__dialog {
        max-height: 92vh;
        padding: 38px 22px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fixe-offer-button {
        transition: none;
    }
}


/* =========================================================
   FAIXA FIXA — OFERTA DE WEBSITE GRÁTIS
   ========================================================= */

:root {
    --fixe-offer-bar-height: 96px;
}

body {
    transition: padding-top 0.5s ease;
}

body.fixe-offer-bar-active {
    padding-top: var(--fixe-offer-bar-height);
}

.fixe-offer-bar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: var(--fixe-offer-bar-height);

    z-index: 10000;

    display: flex;
    align-items: center;

    background-color: #010101;
    color: #ffffff;

    border-bottom: 4px solid #010101;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-24px);
    filter: blur(12px);

    transition:
        opacity 0.55s ease,
        visibility 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}

.fixe-offer-bar.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
    filter: blur(0);
}

.fixe-offer-bar.is-closing {
    opacity: 0;
    visibility: hidden;

    transform: translateY(-24px);
    filter: blur(12px);

    pointer-events: none;
}

.fixe-offer-bar__content {
    position: relative;

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

    margin: 0 auto;
    padding: 14px 60px 14px 44px;

    display: flex;
    align-items: center;
    gap: 18px;
}

.fixe-offer-bar__icon {
    flex: 0 0 auto;

    color: #ff3a6b00;
    font-size: 2.2rem;
}

.fixe-offer-bar__text {
    flex: 1;

    display: flex;
    flex-direction: column;
     color: #ffffff;
    line-height: 1.3;
}

.fixe-offer-bar__text strong {
    color: #ffffff;

    font-family: "Oswald", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fixe-offer-bar__text span {
    margin-top: 2px;

    color: #ffffff;
    font-size: 0.92rem;
}

.fixe-offer-bar__text small {
    margin-top: 3px;

    color: #ff3a6b;
    font-size: 0.78rem;
    font-weight: 700;
}

.fixe-offer-bar__button {
    flex: 0 0 auto;

    padding: 12px 22px;

    border: 2px solid #ffffff;
    border-radius: 4px;

    background-color: #ff3a6b;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.fixe-offer-bar__button:hover,
.fixe-offer-bar__button:focus {
    background-color: #ffffff;
    color: #ff3a6b;

    transform: translateY(-2px);
}

.fixe-offer-bar__button:focus-visible,
.fixe-offer-bar__close:focus-visible {
    outline: 1px solid #000000;
    outline-offset: 1px;
}

/* Botão fechar */

.fixe-offer-bar__close {
    position: absolute;
    top: 12px;
    right: 14px;

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

    width: 34px;
    height: 34px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background-color: transparent;
    color: #ffffff;

    font-size: 1.15rem;
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.fixe-offer-bar__close:hover,
.fixe-offer-bar__close:focus {
    background-color: #ff3a6b;
    color: #ffffff;

    transform: rotate(90deg);
}

/* Tablet */

@media (max-width: 991.98px) {
    :root {
        --fixe-offer-bar-height: 118px;
    }

    .fixe-offer-bar__content {
        padding: 12px 52px 12px 18px;
        gap: 12px;
    }

    .fixe-offer-bar__text strong {
        font-size: 1.15rem;
    }

    .fixe-offer-bar__text span {
        font-size: 0.82rem;
    }

    .fixe-offer-bar__button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* Telemóvel */

@media (max-width: 575.98px) {
    :root {
        --fixe-offer-bar-height: 205px;
    }

    .fixe-offer-bar__content {
        padding: 14px 46px 14px 14px;

        align-items: flex-start;
        flex-wrap: wrap;

        gap: 8px 12px;
    }

    .fixe-offer-bar__icon {
        margin-top: 3px;
        font-size: 1.8rem;
    }

    .fixe-offer-bar__text {
        width: calc(100% - 50px);
    }

    .fixe-offer-bar__text strong {
        font-size: 1.05rem;
    }

    .fixe-offer-bar__text span {
        font-size: 0.78rem;
    }

    .fixe-offer-bar__text small {
        font-size: 0.72rem;
    }

    .fixe-offer-bar__button {
        width: 100%;
        padding: 9px 16px;
    }

    .fixe-offer-bar__close {
        top: 9px;
        right: 8px;

        width: 32px;
        height: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body,
    .fixe-offer-bar,
    .fixe-offer-bar__button,
    .fixe-offer-bar__close {
        transition: none;
    }
}