/*
Theme Name: Schultz Net
Theme URI: https://schultznet.com.br
Author: Schultz Net
Author URI: https://schultznet.com.br
Description: Tema institucional personalizado da Schultz Net.
Version: 0.2.0
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.3
Text Domain: schultznet
*/

:root {
    --primary: #0797d5;
    --primary-dark: #0579ad;
    --cyan: #75d7f2;
    --navy: #031326;
    --navy-soft: #082746;
    --text: #10233a;
    --text-soft: #607286;
    --surface: #ffffff;
    --surface-soft: #f3f7fb;
    --border: #dce7f0;
    --shadow: 0 16px 42px rgba(3, 19, 38, 0.12);
    --radius: 20px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 19, 38, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 32px, var(--container));
    min-height: 78px;
    margin: 0 auto;
    gap: 28px;
}

.site-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__brand .custom-logo {
    width: auto;
    max-height: 52px;
}

.site-header__name {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.site-navigation {
    flex: 1;
}

.site-navigation__list {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
}

.site-navigation__list a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-navigation__list a:hover {
    color: var(--cyan);
}

.site-header__client-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
}

.site-header__client-area:hover {
    background: var(--primary-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(7, 151, 213, 0.3), transparent 30%),
        linear-gradient(135deg, #031121 0%, #082746 60%, #075077 100%);
    color: #ffffff;
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    width: min(100% - 32px, var(--container));
    min-height: 650px;
    margin: 0 auto;
    padding: 80px 0;
    gap: 70px;
}

.hero__eyebrow,
.section-kicker,
.section-heading > span {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero__content > p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.14rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 34px;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 151, 213, 0.28);
}

.button--primary:hover {
    background: var(--primary-dark);
}

.button--secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.button--full {
    width: 100%;
}

.hero-plan {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.hero-plan__label {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(117, 215, 242, 0.14);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-plan h2 {
    margin: 22px 0 6px;
    font-size: 3.2rem;
    line-height: 1;
}

.hero-plan__description {
    color: rgba(255, 255, 255, 0.76);
}

.hero-plan__price,
.plan-card__price {
    display: flex;
    align-items: baseline;
    margin: 24px 0;
    gap: 5px;
}

.hero-plan__price strong {
    font-size: 3.4rem;
    line-height: 1;
}

.hero-plan ul,
.plan-card ul {
    display: grid;
    margin-bottom: 26px;
    gap: 10px;
    list-style: none;
}

.hero-plan li,
.plan-card li {
    position: relative;
    padding-left: 25px;
}

.hero-plan li::before,
.plan-card li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--cyan);
    font-weight: 900;
}

.section-container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.app-section h2,
.coverage h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-heading p,
.app-section p,
.coverage p {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.03rem;
}

.benefits,
.plans,
.app-section,
.coverage,
.help-preview {
    padding: 92px 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card,
.help-preview__grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.benefit-card h3,
.help-preview__grid h3 {
    margin: 0 0 10px;
}

.benefit-card p,
.help-preview__grid p {
    margin: 0;
    color: var(--text-soft);
}

.plans {
    background: var(--surface-soft);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.plan-card--highlight {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.plan-card__badge {
    display: inline-flex;
    align-self: flex-start;
    margin: -43px 0 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.plan-card__description {
    min-height: 92px;
    margin: 10px 0 16px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.plan-card__price strong {
    font-size: 2rem;
    line-height: 1;
}

.plan-card__price small {
    color: var(--text-soft);
}

.plan-card ul {
    flex: 1;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.app-section {
    background:
        radial-gradient(circle at 80% 35%, rgba(7, 151, 213, 0.22), transparent 28%),
        var(--navy);
    color: #ffffff;
}

.app-section__grid {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    align-items: center;
    gap: 80px;
}

.app-section p {
    color: rgba(255, 255, 255, 0.72);
}

.app-section__buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 12px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.app-preview {
    display: flex;
    justify-content: center;
}

.app-preview__screen {
    display: grid;
    width: 280px;
    min-height: 420px;
    padding: 36px 22px;
    border: 8px solid #0c2138;
    border-radius: 42px;
    background: linear-gradient(180deg, #f9fdff, #dceefa);
    color: var(--text);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
    gap: 18px;
}

.app-preview__screen strong {
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.app-preview__screen span {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 18px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(4, 20, 39, 0.08);
    font-weight: 800;
}

.coverage__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 46px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(135deg, #f8fcff, #e8f6fc);
    gap: 40px;
}

.help-preview {
    background: var(--surface-soft);
}

.help-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.site-footer {
    background: #03101f;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr 1.4fr 0.9fr;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 72px 0;
    gap: 42px;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.site-footer__column h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.05rem;
}

.site-footer__column p,
.site-footer__column address {
    margin: 0;
    font-style: normal;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
}

.site-footer__jobs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 800;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 24px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__menu {
    display: flex;
    list-style: none;
    gap: 18px;
}

@media (max-width: 1150px) {
    .site-navigation {
        display: none;
    }

    .hero__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-plan {
        max-width: 560px;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plans__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .plan-card--highlight {
        transform: none;
    }

    .site-footer__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .hero__container {
        padding: 64px 0;
        gap: 42px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .benefits,
    .plans,
    .app-section,
    .coverage,
    .help-preview {
        padding: 68px 0;
    }

    .benefits__grid,
    .plans__grid,
    .app-section__grid,
    .help-preview__grid,
    .coverage__grid,
    .site-footer__container {
        grid-template-columns: 1fr;
    }

    .coverage__grid {
        padding: 30px;
    }

    .coverage__grid .button {
        width: 100%;
    }

    .plan-card__description {
        min-height: auto;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .site-header__client-area {
        display: none;
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-plan__price strong {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .chat-widget {
        right: 12px !important;
        bottom: 12px !important;
        width: calc(100vw - 24px) !important;
        max-width: 340px !important;
        max-height: 72vh !important;
        padding: 20px !important;
        border-radius: 18px !important;
        overflow-y: auto !important;
    }

    .chat-widget h2 {
        margin-right: 34px !important;
        font-size: 1.25rem !important;
    }

    .chat-widget > p {
        font-size: 0.92rem !important;
    }

    .chat-widget__options {
        gap: 8px !important;
    }

    .chat-widget__options a {
        min-height: 42px !important;
        padding: 10px 12px !important;
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

    .chat-widget__close {
        top: 10px !important;
        right: 10px !important;
        width: 32px !important;
        height: 32px !important;
    }
}

@media (max-width: 600px) {
    .chat-widget {
        right: 10px !important;
        bottom: 10px !important;
        width: min(300px, calc(100vw - 20px)) !important;
        max-height: 58vh !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }

    .chat-widget__status {
        font-size: 0.68rem !important;
    }

    .chat-widget h2 {
        margin: 6px 30px 6px 0 !important;
        font-size: 1.08rem !important;
    }

    .chat-widget > p {
        margin-bottom: 12px !important;
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
    }

    .chat-widget__options {
        gap: 6px !important;
    }

    .chat-widget__options a {
        min-height: 36px !important;
        padding: 7px 10px !important;
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .chat-widget__close {
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 600px) {
    .chat-widget {
        left: auto !important;
        right: 8px !important;
        width: min(260px, calc(100vw - 16px)) !important;
        max-width: 260px !important;
        margin: 0 !important;
    }
}

@media (max-width: 600px) {
    .chat-widget {
        width: min(220px, calc(100vw - 16px)) !important;
        max-width: 220px !important;
        right: 8px !important;
        left: auto !important;
        margin: 0 !important;
    }
}

.site-header__logo {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

@media (max-width: 760px) {
    .site-header__logo {
        max-width: 145px;
        max-height: 46px;
    }
}

.site-header {
    overflow: visible;
}

.site-header__brand {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    min-width: 250px;
}

.site-header__logo {
    position: relative;
    z-index: 5;
    width: auto;
    max-width: 250px;
    max-height: 92px;
    object-fit: contain;
    transform: translateY(10px);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

@media (max-width: 760px) {
    .site-header__brand {
        min-width: 175px;
    }

    .site-header__logo {
        max-width: 175px;
        max-height: 68px;
        transform: translateY(6px);
    }
}

.site-header__brand {
    min-width: 320px;
}

.site-header__logo {
    max-width: 320px;
    max-height: 180px;
    transform: translateY(38px);
}

@media (max-width: 760px) {
    .site-header__brand {
        min-width: 220px;
    }

    .site-header__logo {
        max-width: 220px;
        max-height: 125px;
        transform: translateY(24px);
    }
}

.site-header__brand {
    position: relative;
    min-width: 190px;
    width: 190px;
    overflow: visible;
}

.site-header__logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 320px;
    max-width: none;
    max-height: none;
    height: auto;
    transform: translateY(-36%);
}

@media (max-width: 760px) {
    .site-header__brand {
        min-width: 145px;
        width: 145px;
    }

    .site-header__logo {
        width: 220px;
        transform: translateY(-34%);
    }
}

.site-header__logo {
    width: 240px;
    opacity: 0.88;
}

@media (max-width: 760px) {
    .site-header__logo {
        width: 165px;
        opacity: 0.88;
    }
}

.streaming-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.streaming-logos img {
    display: block;
    width: auto;
    object-fit: contain;
}

.streaming-logos--hero {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
}

.streaming-logos--hero img:first-child {
    max-width: 105px;
    max-height: 48px;
}

.streaming-logos--hero img:last-child {
    max-width: 145px;
    max-height: 46px;
}

.streaming-logos--card {
    min-height: 46px;
    margin-top: 16px;
    gap: 10px;
}

.streaming-logos--card img:first-child {
    max-width: 64px;
    max-height: 32px;
}

.streaming-logos--card img:last-child {
    max-width: 92px;
    max-height: 30px;
}

@media (max-width: 600px) {
    .streaming-logos--hero {
        gap: 12px;
    }

    .streaming-logos--hero img:first-child {
        max-width: 82px;
    }

    .streaming-logos--hero img:last-child {
        max-width: 112px;
    }
}

.streaming-logos--hero {
    margin-top: 18px;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.streaming-logos--hero img:first-child {
    max-width: 110px;
    max-height: 44px;
}

.streaming-logos--hero img:last-child {
    max-width: 150px;
    max-height: 42px;
}

@media (max-width: 600px) {
    .streaming-logos--hero img:first-child {
        max-width: 90px;
        max-height: 36px;
    }

    .streaming-logos--hero img:last-child {
        max-width: 120px;
        max-height: 34px;
    }
}

.streaming-logos--hero {
    justify-content: center !important;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 6px;
    text-align: center;
}

.hero-plan__label {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    padding: 9px 16px;
    font-size: 0.86rem;
}

.hero-plan h2 {
    text-align: center;
}

/* Alinhamento uniforme dos cards de planos */
.plan-card {
    display: grid;
    grid-template-rows:
        auto
        48px
        105px
        64px
        minmax(210px, 1fr)
        54px;
    align-items: start;
    padding-top: 36px;
}

.plan-card__badge {
    position: absolute;
    top: -24px;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: calc(100% - 24px);
    min-height: 48px;
    margin: 0;
    padding: 8px 18px;
    text-align: center;
    line-height: 1.15;
    transform: translateX(-50%);
}

.plan-card h3 {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
}

.streaming-logos--card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    margin: 0;
}

.streaming-logos--empty {
    visibility: hidden;
}

.plan-card__description {
    min-height: 0;
    margin: 0;
    padding-top: 8px;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    align-self: center;
    min-height: 64px;
    margin: 0;
}

.plan-card ul {
    align-self: stretch;
    margin: 0;
    padding-top: 12px;
}

.plan-card .button {
    align-self: end;
    width: 100%;
    min-height: 48px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
}

/* Mantém todas as velocidades na mesma altura */
.plan-card--highlight {
    transform: none;
}

/* Ajuste para telas menores */
@media (max-width: 1150px) {
    .plan-card {
        grid-template-rows:
            auto
            48px
            auto
            64px
            minmax(180px, 1fr)
            54px;
    }
}

@media (max-width: 760px) {
    .plan-card {
        display: flex;
        padding-top: 32px;
    }

    .streaming-logos--empty {
        display: none;
    }

    .plan-card__description,
    .plan-card__price,
    .plan-card ul {
        min-height: auto;
    }

    .plan-card .button {
        margin-top: 18px;
    }
}

.plans .section-heading > span {
    display: block;
    color: #12356b;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
}

.plans .section-heading > span {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .plans .section-heading > span {
        font-size: 2.2rem;
    }
}

/* Card clicável de suporte técnico */
.help-preview__card--link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.help-preview__card--link:hover,
.help-preview__card--link:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(12, 39, 71, 0.14);
}

.help-preview__card--link:focus-visible {
    outline: 3px solid rgba(16, 164, 220, 0.3);
    outline-offset: 3px;
}

/* Mantém o card de suporte com o mesmo layout dos demais */
.help-preview__grid > .help-preview__card--link {
    display: block;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 57, 92, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(12, 39, 71, 0.08);
    color: inherit;
    text-decoration: none;
}

.help-preview__grid > .help-preview__card--link h3 {
    margin-top: 0;
}

.help-preview__grid > .help-preview__card--link p {
    margin-bottom: 0;
}

.help-preview__grid > .help-preview__card--link:hover,
.help-preview__grid > .help-preview__card--link:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(12, 39, 71, 0.14);
}

/* Alinhamento dos benefícios comuns dos planos */
.plan-card__features {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 210px;
    margin: 0;
    padding-top: 12px;
}

.plan-card__features ul {
    width: 100%;
    margin: 0;
    padding-top: 0;
}

.plan-card__features-variable {
    margin-bottom: 14px !important;
}

.plan-card__features-common {
    margin-top: auto !important;
}

@media (max-width: 1150px) {
    .plan-card__features {
        min-height: 180px;
    }
}

@media (max-width: 760px) {
    .plan-card__features {
        min-height: auto;
    }

    .plan-card__features-common {
        margin-top: 14px !important;
    }
}

/* Páginas temporárias da Central de Ajuda */
.development-page {
    min-height: 70vh;
    background:
        radial-gradient(
            circle at top,
            rgba(93, 211, 245, 0.12),
            transparent 38%
        ),
        #f4f8fc;
}

.development-page__section {
    padding: 90px 0;
}

.development-page__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.development-page__content h1 {
    margin: 12px 0 34px;
    color: #092443;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.05;
}

.development-page__card {
    padding: 54px 36px;
    background: #ffffff;
    border: 1px solid rgba(18, 57, 92, 0.12);
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(12, 39, 71, 0.1);
}

.development-page__icon {
    display: block;
    margin-bottom: 18px;
    font-size: 3.5rem;
    line-height: 1;
}

.development-page__card h2 {
    margin: 0 0 16px;
    color: #092443;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.development-page__card p {
    max-width: 610px;
    margin: 0 auto 30px;
    color: #49647f;
    font-size: 1.08rem;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .development-page__section {
        padding: 56px 0;
    }

    .development-page__card {
        padding: 40px 22px;
    }
}

/* Menu móvel do cabeçalho */
.site-header__menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.site-header__menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.site-navigation__client-item {
    display: none;
}

@media (max-width: 1150px) {
    .site-header__container {
        position: relative;
        min-height: 74px;
        gap: 14px;
    }

    .site-header__brand {
        min-width: 145px;
        width: 145px;
    }

    .site-header__logo {
        width: 165px;
        transform: translateY(-34%);
    }

    .site-header__menu-toggle {
        display: block;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-navigation {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        padding: 14px 16px 18px;
        background: rgba(3, 19, 38, 0.99);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 32px rgba(3, 19, 38, 0.28);
    }

    .site-navigation--open {
        display: block;
    }

    .site-navigation__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .site-navigation__list a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 8px 12px;
        border-radius: 10px;
        font-size: 0.96rem;
    }

    .site-navigation__list a:hover,
    .site-navigation__list a:focus-visible {
        background: rgba(255, 255, 255, 0.08);
    }

    .site-navigation__client-item {
        display: block;
        margin-top: 8px;
    }

    .site-navigation__client-item a {
        justify-content: center;
        background: var(--primary);
        color: #ffffff;
        font-weight: 800;
    }
}

@media (max-width: 480px) {
    .site-header__container {
        width: min(100% - 24px, var(--container));
    }

    .site-header__brand {
        min-width: 130px;
        width: 130px;
    }

    .site-header__logo {
        width: 155px;
    }
}

/* Botões oficiais das lojas do aplicativo */
.app-section__buttons .store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.app-section__buttons .store-button:hover,
.app-section__buttons .store-button:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.app-section__buttons .store-button:focus-visible {
    outline: 3px solid rgba(117, 215, 242, 0.35);
    outline-offset: 3px;
}
