body {
    font-family: 'Manrope', sans-serif;
    color: #1f2937;
    background: #f6f9ff;
}

/* Alpine.js cloaking */
[x-cloak] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.navbar-nav .nav-link {
    font-family: 'Sora', sans-serif;
}

.logo {
    display: inline-flex;
    align-items: center;
}
    .about-section {
        background: #ffffff;
        color: #222;
        padding: 60px 0;
    }

.navbar-nav {
    text-align: center;
    margin: 0;
    gap: 12px;
    font-size: 1rem;
}

.nav-item {
    margin: 0 10px;
    /* espaçamento entre os itens */
}

.navbar {
    background: transparent !important;
    /* mantém compatibilidade com header BG */
}

header {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 6px 22px rgba(11,11,11,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo img {
    height: 170px;
    transition: transform .25s ease;
}

.logo img:hover {
    transform: translateY(-3px);
}

.navbar-nav {
    align-items: center;
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 18px;
        font-size: 1.05rem;
    }
}

.navbar-nav .nav-link {
    color: #333;
    padding: 8px 14px;
    border-radius: 10px;
    transition: background .18s ease, color .18s ease, transform .12s ease;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    background: rgba(243,154,37,0.08);
    color: #f39a25;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: #f39a25;
    background: rgba(31,79,255,0.03);
    box-shadow: inset 0 -3px 0 rgba(243,154,37,0.95);
}

/* mobile: stack menu and reduce logo size */
@media (max-width: 768px) {
    header { padding: 10px 0; }
    .logo img { height: 120px; }
    .navbar-nav { gap: 8px; font-size: 0.95rem; }
    .navbar-nav .nav-link { padding: 6px 10px; }
}

.container-top {
    background-color: #929292;
}

.contact-info {
    margin-left: 20px;
    /* espaço da esquerda */
}

.contact-info {
    margin-left: 20px;
    /* espaço da esquerda */
}

.panel-button {
    margin-right: 20px;
    /* espaço da direita */
}

.header-main {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .navbar-collapse {
        justify-content: center;
    }
    .navbar-nav {
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 10px;
    }
    .navbar-nav .nav-link {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .top-bar .btn {
        width: 100%;
    }

    .contact-info {
        margin-left: 0;
        font-size: 0.85rem;
    }

    .email-link {
        word-break: break-word;
    }

    .top-actions {
        width: 100%;
    }
}

.email-link {
    text-decoration: none;
    /* sem sublinhado */
    color: #333;
    /* cor do texto */
    font-weight: 500;
    /* destaque */
}

.email-link:hover {
    color: #333;
    /* mantém a cor no hover */
}

.container-fluid {
    padding: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #f39a25, #e67e22);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(243, 154, 37, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 154, 37, 0.4);
    background: linear-gradient(135deg, #e67e22, #f39a25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.imagem-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.imagem-container img {
    max-width: 300px;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.card {
    text-align: center;
    max-width: 300px;
}

.card img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.card a {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.card a:hover {
    background-color: #e65c00;
}

.banner {
    text-align: center;
    margin-bottom: 30px;
}

.banner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 170px;
    right: 20px;
    background: linear-gradient(135deg, #25d366, #20b858);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 140px;
        right: 15px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }
}

.whatsapp-float i {
    line-height: 60px;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20b858, #1fa84f);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

#back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f39a25, #e67e22);
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(243, 154, 37, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

@media (max-width: 768px) {
    #back-to-top {
        width: 44px;
        height: 44px;
        font-size: 18px;
        bottom: 80px;
        right: 15px;
    }
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(243, 154, 37, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

#back-to-top:active {
    transform: translateY(-2px);
}

footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 15px 0;
}

footer h2 {
    color: #333;
}

footer h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-bottom {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-logo img {
        max-height: 120px;
    }

    .footer-menu,
    .footer-info {
        text-align: center;
        justify-self: center;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    align-self: center;
}

.footer-logo img {
    max-height: 160px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-top: 18px;
    }

    .about-features .about-feature {
        background: #fff;
        border-radius: 10px;
        padding: 14px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        text-align: left;
    }

    .about-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 8px;
        display: inline-grid;
        place-items: center;
        background: rgba(243,154,37,0.08);
        color: #f39a25;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .about-feature h5 { margin: 0 0 6px; font-size: 1rem; font-weight: 700; color: #111; }
    .about-feature p { margin: 0; color: #555; font-size: 0.95rem; }

    /* CTA specific for About section (keeps .btn-primary default but gives prominence) */
    .about-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: linear-gradient(90deg,#f39a25,#e67e22);
        border: none;
        color: #fff;
        font-weight: 700;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(230,90,10,0.12);
    }
    .about-cta:hover { transform: translateY(-3px); filter: brightness(1.02); }

    .about-cta-wrap {
        margin-top: 16px;
    }

    @media (min-width: 992px) {
        .about-cta-wrap {
            display: flex;
            justify-content: flex-end;
        }
    }

    @media (max-width: 992px) {
        .about-inner { padding: 18px; }
        .about-section h2 { font-size: 1.6rem; }
        .about-features { grid-template-columns: 1fr; }
        .about-logo { margin-top: 18px; }
    }
.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #f39a25;
}

.footer-menu {
    text-align: left;
    /* estilo similar ao bloco 'Siga - nos' */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu h4, .footer-info h4 {
    color: #f39a25;
    margin-bottom: 8px;
}

.dev-mask {
    float: right;
    color: #999;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* posicionar o bloco 'Siga - nos' à direita dentro do grid e adicionar separador */
.footer-info {
    justify-self: end;
    text-align: right;
    padding-left: 22px;
    margin-left: 10px;
    margin-right: 40px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .footer-info {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        text-align: center;
        justify-self: stretch;
    }
}

@media (max-width: 768px) {
    .dev-mask {
        float: none;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

.footer-info {
    text-align: left;
}

.footer-info p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    color: white;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.footer-social i {
    color: #f39a25;
}

.footer-info a {
    color: #f39a25;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #e67e22;
}

.footer-credits p {
    margin: 8px 0;
}

.developer-link {
    color: #f39a25;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.developer-link:hover {
    color: #e67e22;
    text-decoration: underline;
}

.footer-bottom-bar {
    grid-column: 1 / -1;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-bar .copyright {
    margin: 0;
    font-size: 0.95rem;
    color: #999;
    text-align: center;
}

.footer-bottom-bar .dev-mask {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-bottom-bar {
        display: block;
        text-align: center;
    }
    .footer-bottom-bar .dev-mask {
        position: static;
        transform: none;
        margin-top: 8px;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-menu {
        order: 2;
    }
    
    .footer-info {
        order: 3;
    }
    
    .footer-credits {
        order: 4;
    }

    .footer-logo img {
        max-height: 110px;
    }
}



/* HERO */
.hero {
    position: relative;
    background: radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, .08), transparent 60%),
        linear-gradient(90deg, #0b0b0b, #121212);
    color: #fff;

    min-height: 560px;
    padding: 70px 0 140px;
    /* importante */
}

/* painel pendurado */
.hero__panelWrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    /* sobe o painel por cima dos indicadores */
}

/* espaço depois do hero, pra não colar no footer */
.hero+* {
    margin-top: 110px;
}

/* botão */
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f39a25;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 22px;
    border-radius: 8px;
}

.hero__btn:hover {
    filter: brightness(1.05);
}

/* Circular blue fill animation for carousel buttons */
.hero__btn {
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color .28s ease, background-color .28s ease;
}

.hero__btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0; height: 0;
    background: #1f4fff; /* azul consistente com outros botões */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .5s cubic-bezier(.2,.9,.2,1), width .5s ease, height .5s ease;
    z-index: -1;
}

.hero__btn:hover::before,
.hero__btn:focus::before {
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%) scale(1);
}

.hero__btn:hover,
.hero__btn:focus {
    color: #ffffff !important;
    background: transparent; /* deixamos o preenchimento vindo do pseudo-element */
}

.hero__btnIcon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
}

/* painel central */
.hero__panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    overflow: hidden;

    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .hero__panelWrap {
        position: static;
        margin-top: 16px;
    }

    .hero+* {
        margin-top: 40px;
    }

    .hero__slide {
        min-height: 480px;
        padding: 56px 0 90px;
    }

    .hero__content {
        max-width: 100%;
    }

    .section-after-hero {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .hero__slide {
        min-height: 420px;
        padding: 44px 0 70px;
    }

    .hero__title {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .hero__text {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero__btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .hero__btnIcon {
        width: 26px;
        height: 26px;
    }

    .heroCard {
        grid-template-columns: 56px 1fr 18px;
        padding: 18px 18px;
    }

    .heroCard__icon {
        width: 40px;
        height: 40px;
    }

    .heroCard__title {
        font-size: 1rem;
    }

    .heroCard__arrow {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 120px;
        right: 16px;
        font-size: 26px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }

    #back-to-top {
        width: 44px;
        height: 44px;
        bottom: 70px;
        right: 16px;
        font-size: 18px;
    }
}

/* ===== HERO CAROUSEL (corrige seu layout atual) ===== */
.hero.hero--carousel {
    background: transparent;
    /* o fundo vai ficar no slide */
    padding: 0;
    min-height: 0;
}

/* cada slide precisa ter altura + padding */
.hero__slide {
    min-height: 560px;
    padding: 70px 0 140px;
    color: #fff;

    background: radial-gradient(1200px 600px at 20% 20%, rgba(255, 255, 255, .08), transparent 60%),
        linear-gradient(90deg, #0b0b0b, #121212);
}

/* garante que o conteúdo fique “em cima” */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

/* painéis e indicadores ficam mais bonitos */
.hero--carousel .carousel-control-prev,
.hero--carousel .carousel-control-next {
    width: 8%;
}

.hero--carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

/* ===== CARDS (em 3 colunas igual seu modelo) ===== */
.heroCard {
    display: grid;
    grid-template-columns: 70px 1fr 24px;
    align-items: center;
    gap: 14px;

    padding: 26px 26px;
    color: #222;
    text-decoration: none;
    border-right: 1px solid #eee;
    position: relative;
    background: #fff;

    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.heroCard:last-child {
    border-right: 0;
}

.heroCard__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;

    background: rgba(31, 79, 255, .08);
    color: #1f4fff;

    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.heroCard__title {
    font-weight: 800;
    font-size: 1.05rem;
}

.heroCard__arrow {
    font-size: 26px;
    color: #f39a25;

    transition: transform .18s ease, color .18s ease;
}

/* barra azul do ativo */
.heroCard--active::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 4px;
    background: #1f4fff;
    border-radius: 4px 4px 0 0;
}

/* ===== HOVER (animação “afundar / mudar cor”) ===== */
.heroCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    background-color: #fafafa;
}

.heroCard:hover .heroCard__icon {
    background: rgba(243, 154, 37, .14);
    color: #f39a25;
    transform: scale(1.03);
}

.heroCard:hover .heroCard__arrow {
    transform: translateX(3px);
    color: #f39a25;
}

.heroCard:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .hero__panel {
        grid-template-columns: 1fr;
    }

    .heroCard {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .heroCard:last-child {
        border-bottom: 0;
    }
}


/* Estado inicial (slide não ativo): fora da tela e invisível */
#heroCarousel .carousel-item .hero__anim {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity .55s ease, transform .55s ease;
}

/* Quando o slide fica ativo: entra e aparece */
#heroCarousel .carousel-item.active .hero__anim {
    opacity: 1;
    transform: translateX(0);
}

/* Cascata: título, texto, botão entram em tempos diferentes */
#heroCarousel .carousel-item.active .hero__title.hero__anim {
    transition-delay: .10s;
}

#heroCarousel .carousel-item.active .hero__text.hero__anim {
    transition-delay: .22s;
}

#heroCarousel .carousel-item.active .hero__btn.hero__anim {
    transition-delay: .34s;
}

/* (Opcional) deixa o slide “limpo” quando sai */
#heroCarousel .carousel-item .hero__title.hero__anim,
#heroCarousel .carousel-item .hero__text.hero__anim,
#heroCarousel .carousel-item .hero__btn.hero__anim {
    will-change: transform, opacity;
}

.heroCard {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* linha azul (inicial invisível) */
.heroCard::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 4px;
    background: #1f4cff;
    /* azul moderno */
    transition: width .35s ease;
}

/* quando passa o mouse */
.heroCard:hover::after {
    width: 100%;
}

/* leve efeito premium */
.heroCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}





/* muito importante: empurrar a seção seguinte pra baixo do painel */
.section-after-hero {
    margin-top: 90px;
    /* ajuste fino se quiser */
}

/* Seção 'Sobre a NetExpand' */
.about-section {
    background: #ffffff;
    color: #222;
    padding: 60px 0;
}

.about-section h2 {
    color: #111;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-section .lead {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

.about-logo {
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Estilos específicos para a página de planos */
.plans-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 79, 255, 0.08), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(243, 154, 37, 0.1), transparent 42%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    padding: 58px 0;
}

.plans-shell {
    background: #ffffff;
    border: 1px solid rgba(36, 46, 66, 0.1);
    border-radius: 20px;
    padding: clamp(18px, 2.4vw, 30px);
    box-shadow: 0 28px 70px rgba(18, 26, 41, 0.08);
}

.plans-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #9b5f10;
    background: rgba(243, 154, 37, 0.14);
    border: 1px solid rgba(243, 154, 37, 0.25);
}

.plans-title {
    margin-top: 16px;
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.08;
    font-weight: 800;
    color: #121a29;
}

.plans-header .lead {
    margin-bottom: 0;
    max-width: 58ch;
    color: #4d5768;
    font-size: 1.05rem;
}

.plans-cta-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.plans-cities {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-chip {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #2a3348;
    background: #f4f7fc;
    border: 1px solid #dce4f2;
}

@media (min-width: 992px) {
    .plans-cta-wrap {
        padding-right: calc(var(--bs-gutter-x, 1.5rem) / 2);
    }
}

.plans-cta {
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(243, 154, 37, 0.32);
}

.plans-strips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-strip {
    display: flex;
    gap: 18px;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #e5ebf6;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(17, 24, 38, 0.08);
    overflow: hidden;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: planReveal .6s cubic-bezier(.2, .9, .2, 1) both;
    position: relative;
}

.plan-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(243, 154, 37, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-strip:hover::before,
.plan-strip--hover::before {
    opacity: 1;
}

.plans-strips > article:nth-child(1) { animation-delay: 0.04s; }
.plans-strips > article:nth-child(2) { animation-delay: 0.12s; }
.plans-strips > article:nth-child(3) { animation-delay: 0.2s; }
.plans-strips > article:nth-child(4) { animation-delay: 0.28s; }

.plan-strip.is-reverse {
    flex-direction: row-reverse;
}

.plan-strip--featured {
    border-color: rgba(243, 154, 37, 0.35);
    box-shadow: 0 22px 55px rgba(243, 154, 37, 0.2);
}

.plan-strip__media {
    position: relative;
    flex: 0 0 34%;
    min-height: 190px;
    overflow: hidden;
}

.plan-strip__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
}

.plan-strip__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 26, 41, 0.45), transparent 62%);
}

.plan-strip__speed {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #162136;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.plan-strip__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
}

.plan-strip__badge {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ecf3ff, #f0f7ff);
    color: #25447e;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(37, 68, 126, 0.12);
    transition: transform 0.2s ease;
}

.plan-strip:hover .plan-strip__badge,
.plan-strip--hover .plan-strip__badge {
    transform: scale(1.05);
}

.plan-strip__title {
    margin: 0;
    font-weight: 800;
    color: #121a29;
    font-size: 1.18rem;
}

.plan-strip__summary {
    color: #566074;
    margin: 0;
    font-size: 0.92rem;
}

.plan-strip__features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.plan-strip__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3d495f;
    font-size: 0.88rem;
}

.plan-strip__features i {
    color: #f39a25;
}

.plan-strip__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.plan-strip__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #4b5870;
    background: #f4f7fc;
    padding: 5px 9px;
    border-radius: 999px;
    border: 1px solid #dce4f2;
}

.plan-strip:hover,
.plan-strip--hover {
    transform: translateY(-5px) scale(1.005);
    border-color: rgba(243, 154, 37, 0.4);
    box-shadow: 0 20px 44px rgba(17, 24, 38, 0.15), 0 8px 20px rgba(243, 154, 37, 0.1);
}

.plan-strip:hover .plan-strip__image,
.plan-strip--hover .plan-strip__image {
    transform: scale(1.08);
}

.plan-card {
    overflow: hidden;
    border: 1px solid #e5ebf6;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(17, 24, 38, 0.08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    animation: planReveal .6s cubic-bezier(.2, .9, .2, 1) both;
}

.plans-shell .row.g-4 > div:nth-child(1) .plan-card { animation-delay: 0.04s; }
.plans-shell .row.g-4 > div:nth-child(2) .plan-card { animation-delay: 0.12s; }
.plans-shell .row.g-4 > div:nth-child(3) .plan-card { animation-delay: 0.2s; }

.plan-card-featured {
    border-color: rgba(243, 154, 37, 0.38);
    box-shadow: 0 20px 50px rgba(243, 154, 37, 0.22);
}

.plan-media {
    position: relative;
}

.plan-card .card-img-top {
    height: 210px;
    object-fit: cover;
    transition: transform .4s ease;
}

.plan-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 26, 41, 0.45), transparent 58%);
}

.plan-speed {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #162136;
    font-size: 0.82rem;
    font-weight: 700;
}

.plan-card .card-body {
    display: flex;
    flex-direction: column;
    padding: 22px;
    gap: 10px;
}

.plan-card:hover {
    transform: translateY(-9px);
    border-color: rgba(243, 154, 37, 0.45);
    box-shadow: 0 26px 55px rgba(17, 24, 38, 0.16);
}

.plan-card:hover .card-img-top {
    transform: scale(1.06);
}

.plan-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #ecf3ff;
    color: #25447e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-card .card-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: #121a29;
}

.plan-card .card-text,
.plan-summary {
    color: #566074;
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.plan-features {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #3d495f;
    font-size: 0.95rem;
}

.plan-features i {
    color: #f39a25;
}

.plan-card .btn {
    margin-top: auto;
}

.plan-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.plan-extra {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #4b5870;
    background: #f4f7fc;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #dce4f2;
}

.plan-link {
    border-radius: 12px;
    font-weight: 700;
    padding: 10px 14px;
}

.plans-bottom-note {
    margin-top: 30px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7fafc;
    border: 1px solid #e1e9f6;
    color: #324157;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plans-bottom-note i {
    color: #f39a25;
    font-size: 1.1rem;
}

@keyframes planReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .plans-section {
        padding: 46px 0;
    }

    .plans-cta-wrap {
        justify-content: flex-start;
    }

    .plan-strip,
    .plan-strip.is-reverse {
        flex-direction: column;
    }

    .plan-strip__media {
        width: 100%;
        min-height: 178px;
    }

    .plan-strip__content {
        padding: 15px 16px;
    }
}

@media (max-width: 768px) {
    .plans-shell {
        border-radius: 16px;
        padding: 14px;
    }

    .plans-title {
        font-size: 1.45rem;
        line-height: 1.15;
    }

    .plans-header .lead {
        font-size: 0.95rem;
    }

    .plans-cities {
        gap: 8px;
    }

    .city-chip {
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .plan-strip {
        border-radius: 14px;
    }

    .plans-bottom-note {
        align-items: flex-start;
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .plan-strip__title {
        font-size: 1.06rem;
    }

    .plan-strip__summary {
        font-size: 0.88rem;
    }

    .plan-strip__features {
        gap: 5px;
    }

    .plan-strip__features li {
        font-size: 0.84rem;
    }

    .plan-strip__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .plan-strip__actions .btn {
        width: 100%;
        text-align: center;
    }

    .plan-strip__meta {
        text-align: center;
        justify-content: center;
    }

    .plans-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .plans-section {
        padding: 38px 0;
    }

    .plans-shell {
        padding: 12px;
    }

    .plan-strip__media {
        min-height: 154px;
    }

    .plan-strip__content {
        padding: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .plan-strip {
        animation: none !important;
    }

    .plan-strip,
    .plan-strip__image {
        transition: none !important;
    }

    .plan-strip:hover {
        transform: none !important;
    }
}

/* Seção de contato (combina com o esquema das outras páginas) */
.contact-intro {
    background: #ffffff;
    color: #222;
    padding: 48px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-intro h2 {
    color: #111;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.1;
}

.contact-intro .lead {
    font-size: 1.12rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
}

.contact-intro ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-intro ul li {
    margin: 8px 0;
    font-size: 1.05rem;
}

.contact-intro a {
    color: #f39a25;
    text-decoration: none;
    font-weight: 600;
}

.contact-intro a:hover {
    color: #e67e22;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-intro { padding: 28px 0; }
}

/* Animação de entrada (staggered) para a sessão de contato */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.contact-intro > h2,
.contact-intro > .lead,
.contact-intro > ul {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 600ms cubic-bezier(.2,.9,.2,1) forwards;
}

.contact-intro > h2 { animation-delay: 0s; }
.contact-intro > .lead { animation-delay: 0.08s; }
.contact-intro > ul { animation-delay: 0.16s; }

/* animação escalonada para cada item da lista */
.contact-intro ul li {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 520ms cubic-bezier(.2,.9,.2,1) forwards;
}
.contact-intro ul li:nth-child(1) { animation-delay: 0.24s; }
.contact-intro ul li:nth-child(2) { animation-delay: 0.32s; }
.contact-intro ul li:nth-child(3) { animation-delay: 0.40s; }
.contact-intro ul li:nth-child(4) { animation-delay: 0.48s; }
.contact-intro ul li:nth-child(5) { animation-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
    .contact-intro > h2,
    .contact-intro > .lead,
    .contact-intro > ul,
    .contact-intro ul li {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Layout para imagem + mapa na página de contato */

.contact-media {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin: 18px 0 40px;
    flex-wrap: wrap;
}

.contact-media .store-img {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-media .store-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}

.contact-media .store-map {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-media #map {
    width: 100%;
    height: 420px; /* mesma altura da imagem */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.store-address { margin-top: 14px; }
.store-address h3 { margin-bottom: 6px; }
.address-link { cursor: pointer; color: #f39a25; font-weight:600; }
.address-link:hover { color: #e67e22; text-decoration: underline; }

@media (max-width: 992px) {
    .contact-media .store-img,
    .contact-media .store-map { max-width: 100%; flex: 1 1 100%; }
    .contact-media .store-img img,
    .contact-media #map { height: 300px; }
}

/* Card wrapper for contact page to match other sections */
.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

/* alinhar o card com as margens do header */
.contact-card {
    width: 100%;
    max-width: none;
    margin: 0; /* usar os espaçamentos do container pai */
}

.contact-intro { text-align: left; }

.contact-intro ul li i {
    color: #f39a25;
    margin-right: 10px;
    width: 28px;
    text-align: center;
}

.contact-intro ul li strong {
    margin-right: 6px;
}

.contact-page { margin-bottom: 60px; }

/* Modal / Lightbox de imagem */
.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.image-modal.open { display: flex; }
.image-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}
.image-modal__content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-modal__content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: block;
}
.image-modal__close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.image-modal__close:focus { outline: 3px solid rgba(243,154,37,0.25); }

/* Evita scroll do body quando o modal estiver aberto */
.no-scroll { overflow: hidden; height: 100%; }

@media (max-width: 768px) {
    .about-section { padding: 40px 0; }
    .about-logo { max-width: 160px; margin-top: 20px; }
}

/* ===== Unified Modern Look (all views) ===== */
.top-bar {
    background: linear-gradient(90deg, #f0f3f9, #e8eef8);
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.about-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 79, 255, 0.08), transparent 38%),
        radial-gradient(circle at 100% 100%, rgba(243, 154, 37, 0.1), transparent 42%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-inner {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #dde7f6;
    padding: clamp(22px, 3vw, 36px);
    box-shadow: 0 26px 60px rgba(17, 24, 38, 0.08);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #1f4fff;
    background: rgba(31, 79, 255, 0.1);
    border: 1px solid rgba(31, 79, 255, 0.25);
}

.about-chips {
    margin: 16px 0 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid #dbe4f4;
    background: #f5f8ff;
    color: #324155;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 11px;
}

.about-chip i {
    color: #f39a25;
}

.about-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-cta-secondary {
    border-radius: 10px;
    font-weight: 700;
    padding: 11px 16px;
}

.contact-page {
    background:
        radial-gradient(circle at 8% 0%, rgba(243, 154, 37, 0.13), transparent 36%),
        radial-gradient(circle at 95% 20%, rgba(31, 79, 255, 0.12), transparent 40%);
    border-radius: 24px;
    padding: clamp(16px, 3vw, 28px);
}

.contact-card {
    border-radius: 24px;
    border: 1px solid #dce6f5;
    padding: clamp(18px, 3vw, 30px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #9b5f10;
    background: rgba(243, 154, 37, 0.14);
    border: 1px solid rgba(243, 154, 37, 0.25);
}

.contact-intro h2 {
    margin-top: 14px;
}

.contact-chips {
    margin: 14px 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f5f8ff;
    border: 1px solid #dbe4f4;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    border-radius: 12px;
    border: 1px solid #e0e8f6;
    background: #f9fbff;
    color: #243046;
    text-decoration: none;
    padding: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-item i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #f39a25;
    background: rgba(243, 154, 37, 0.15);
}

.contact-item strong {
    display: block;
    color: #111827;
    font-size: 0.88rem;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: rgba(243, 154, 37, 0.4);
    box-shadow: 0 12px 28px rgba(17, 24, 38, 0.11);
}

.contact-address {
    margin-top: 14px;
    margin-bottom: 0;
    color: #4b5563;
    font-weight: 600;
}

.contact-address i {
    color: #f39a25;
    margin-right: 8px;
}

.contact-media .store-img img,
.contact-media #map {
    border-radius: 18px;
    border: 1px solid #dde7f6;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-inner,
    .contact-card {
        border-radius: 18px;
    }
}

/* ===== Header + Footer Modern ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.site-header--scrolled .logo img {
    height: 140px;
}

.top-utility {
    background:
        linear-gradient(90deg, rgba(243, 154, 37, 0.11), rgba(31, 79, 255, 0.09)),
        #f6f9ff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.site-header .contact-info {
    margin-left: 0;
}

.site-header .email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #1f2937;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.26);
}

.site-header .email-link i {
    color: #f39a25;
}

.site-header .top-actions .btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 9px 15px;
    border-width: 1px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.site-header .top-social-btn {
    min-width: 44px;
}

.site-header .header-main {
    padding-top: 4px;
    padding-bottom: 4px;
}

.site-header .logo img {
    height: 168px;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .site-nav .nav-link {
    color: #1f2937;
    border-radius: 10px;
    padding: 10px 14px;
    transition: all .2s ease;
}

.site-header .site-nav .nav-link:hover {
    color: #f39a25;
    background: rgba(243, 154, 37, 0.11);
    transform: translateY(-2px);
}

.site-header .site-nav .nav-link.active {
    color: #f39a25;
    background: rgba(243, 154, 37, 0.12);
    box-shadow: inset 0 -2px 0 #f39a25;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(243, 154, 37, 0.2), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(31, 79, 255, 0.16), transparent 36%),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
    color: #d7e0f0;
    padding: 24px 0 14px;
}

.site-footer .footer-divider {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(203, 213, 225, 0.2);
}

.site-footer .footer-bottom {
    padding: 34px 0 14px;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.site-footer .footer-logo img {
    max-height: 124px;
}

.site-footer .footer-menu h4,
.site-footer .footer-info h4 {
    color: #f7fafc;
    font-size: 1rem;
    margin-bottom: 12px;
}

.site-footer .footer-menu a,
.site-footer .footer-info p,
.site-footer .footer-info a {
    color: #d7e0f0;
}

.site-footer .footer-menu a:hover,
.site-footer .footer-info a:hover,
.site-footer .footer-social:hover {
    color: #ffd59a;
}

.site-footer .footer-menu li {
    margin-bottom: 9px;
}

.site-footer .footer-info {
    text-align: left;
    margin: 0;
    padding-left: 18px;
    border-left: 1px solid rgba(203, 213, 225, 0.22);
    justify-self: start;
}

.site-footer .footer-social {
    gap: 10px;
    font-weight: 700;
}

.site-footer .footer-social i {
    color: #f39a25;
}

.site-footer .footer-bottom-bar {
    margin-top: 14px;
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding-top: 16px;
}

.site-footer .footer-bottom-bar .copyright,
.site-footer .footer-bottom-bar .dev-mask {
    color: #aeb8ca;
}

.site-footer .developer-link {
    color: #ffd59a;
}

@media (max-width: 992px) {
    .site-header .logo img {
        height: 146px;
    }

    .site-header .site-nav .nav-link {
        text-align: left;
        width: 100%;
    }

    .site-footer .footer-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header .logo img {
        height: 128px;
    }

    .site-header .top-utility .container {
        align-items: stretch !important;
    }

    .site-header .email-link {
        width: 100%;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.84rem;
        text-align: center;
        line-height: 1.35;
    }

    .site-header .top-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 40px;
    }

    .site-footer .footer-bottom {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-info {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .section-after-hero {
        margin-top: 34px;
    }

    .hero__panel {
        border-radius: 12px;
    }

    .heroCard {
        grid-template-columns: 46px 1fr 16px;
        gap: 10px;
        padding: 13px 14px;
    }

    .heroCard__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .heroCard__title {
        font-size: 0.92rem;
    }

    .heroCard__arrow {
        font-size: 16px;
    }

    .about-inner,
    .contact-page,
    .contact-card {
        border-radius: 16px;
    }

    .about-inner,
    .contact-page {
        padding: 14px;
    }
}

@media (hover: none) {
    .plan-strip:hover,
    .plan-strip--hover,
    .heroCard:hover,
    .contact-item:hover,
    .site-header .site-nav .nav-link:hover,
    .btn-primary:hover {
        transform: none;
    }

    .plan-strip:hover,
    .plan-strip--hover {
        box-shadow: 0 14px 34px rgba(17, 24, 38, 0.08);
    }
}

/* ===== Mobile hardening: Planos + Contato ===== */
.contact-item__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
    gap: 2px;
}

.contact-item__value {
    color: #3b4558;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
}

@media (max-width: 992px) {
    .plan-strip,
    .plan-strip.is-reverse {
        flex-direction: column-reverse;
        gap: 0;
    }

    .plan-strip__content {
        width: 100%;
    }

    .plan-strip__media {
        width: 100%;
        min-height: 170px;
        aspect-ratio: 16 / 8;
    }

    .plan-strip__image {
        object-position: center;
    }
}

@media (max-width: 768px) {
    .contact-page {
        margin-top: 1rem !important;
        margin-bottom: 2rem;
        border-radius: 16px;
        padding: 10px;
    }

    .contact-card {
        padding: 12px;
    }

    .contact-intro {
        padding: 10px 0;
    }

    .contact-intro h2 {
        font-size: 1.9rem;
        line-height: 1.12;
    }

    .contact-intro .lead {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-item {
        display: grid;
        grid-template-columns: 38px 1fr;
        align-items: center;
        min-height: 0;
        padding: 10px;
        gap: 10px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #dce6f5;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    }

    .contact-item i {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }

    .contact-item strong {
        font-size: 0.82rem;
    }

    .contact-item__value {
        font-size: 0.86rem;
    }

    .contact-address {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .contact-media {
        gap: 12px;
        margin: 10px 0 18px;
    }

    .contact-media .store-img img,
    .contact-media #map {
        height: 210px;
        border-radius: 12px;
    }

    .plans-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .plans-section {
        padding: 28px 0;
    }

    .plans-shell {
        border-radius: 14px;
        padding: 10px;
    }

    .plans-header {
        margin-bottom: 1rem !important;
    }

    .plans-cities {
        gap: 6px;
    }

    .city-chip {
        font-size: 0.72rem;
        padding: 5px 8px;
    }

    .plan-strip {
        border-radius: 12px;
    }

    .plan-strip__media {
        min-height: 140px;
        aspect-ratio: 16 / 9;
    }

    .plan-strip__speed {
        left: 10px;
        bottom: 10px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .plan-strip__content {
        padding: 11px;
    }

    .plan-strip__title {
        font-size: 1rem;
    }

    .plan-strip__summary,
    .plan-strip__features li {
        font-size: 0.82rem;
    }

    .plan-strip__actions {
        gap: 6px;
    }

    .plan-strip__actions .btn,
    .plans-cta {
        min-height: 40px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 430px) {
    .plans-title {
        font-size: 1.2rem;
    }

    .plans-header .lead {
        font-size: 0.9rem;
    }

    .plan-strip__media {
        min-height: 124px;
    }

    .contact-intro h2 {
        font-size: 1.7rem;
    }

    .contact-item {
        grid-template-columns: 34px 1fr;
        gap: 8px;
    }

    .contact-item i {
        width: 30px;
        height: 30px;
    }
}

/* ===== ANIMAÇÕES E TRANSIÇÕES APRIMORADAS ===== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse glow effect */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(243, 154, 37, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(243, 154, 37, 0.6);
    }
}

/* Apply animations to sections */
.about-section,
.contact-section {
    animation: fadeInUp 0.8s ease-out both;
}

/* Stagger plan strips animation */
.plan-strip:nth-child(1) { animation-delay: 0.1s; }
.plan-strip:nth-child(2) { animation-delay: 0.2s; }
.plan-strip:nth-child(3) { animation-delay: 0.3s; }
.plan-strip:nth-child(4) { animation-delay: 0.4s; }

/* Enhance footer social links */
.site-footer .footer-social {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer .footer-social:hover {
    transform: translateY(-3px) scale(1.05);
}

.site-footer .footer-social i {
    transition: transform 0.3s ease;
}

.site-footer .footer-social:hover i {
    transform: rotate(15deg);
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Card hover effects */
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Navigation menu animations */
.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f39a25, #e67e22);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Back to top button enhanced */
#back-to-top {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
}

/* Image loading effect */
img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

img:hover {
    filter: brightness(1.05) contrast(1.05);
}

/* Loading animation for images */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(
        to right,
        #f0f0f0 0%,
        #e0e0e0 50%,
        #f0f0f0 100%
    );
    background-size: 1000px 100%;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid rgba(243, 154, 37, 0.5);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Responsive fixes: Planos + Contato ===== */
.plans-section,
.contact-page {
    overflow-x: clip;
}

.plan-strip__content,
.contact-intro,
.contact-item {
    min-width: 0;
}

.contact-media .store-img img,
.contact-media #map {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .plans-section .container,
    .contact-page.container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .plans-header {
        margin-bottom: 1.5rem !important;
    }

    .plans-cta-wrap {
        width: 100%;
    }

    .plans-cta {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .plan-strip,
    .plan-strip.is-reverse {
        flex-direction: column;
        gap: 0;
        border-radius: 16px;
    }

    .plan-strip__media {
        flex: 0 0 auto;
        width: 100%;
        min-height: 200px;
    }

    .plan-strip__content {
        padding: 18px;
        gap: 9px;
    }

    .plan-strip__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .plan-strip__actions .btn,
    .plan-strip__meta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact-card {
        border-radius: 16px;
        padding: 16px;
    }

    .contact-intro {
        padding: 14px 0;
    }

    .contact-media {
        gap: 14px;
        margin: 14px 0 10px;
    }

    .contact-media .store-img,
    .contact-media .store-map {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-media .store-img img,
    .contact-media #map {
        height: 300px;
        border-radius: 14px;
    }
}

@media (max-width: 767.98px) {
    .plans-section {
        padding: 42px 0;
    }

    .plans-shell {
        border-radius: 14px;
        padding: 16px;
    }

    .plans-title {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .plans-header .lead {
        font-size: 0.95rem;
    }

    .plans-cities,
    .contact-chips {
        gap: 8px;
    }

    .city-chip,
    .contact-chip {
        font-size: 0.78rem;
        padding: 6px 10px;
    }

    .plan-strip__title {
        font-size: 1.08rem;
    }

    .plan-strip__summary,
    .plan-strip__features li {
        font-size: 0.9rem;
    }

    .plan-strip__speed {
        left: 12px;
        bottom: 12px;
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .plans-bottom-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-page {
        border-radius: 16px;
        padding: 12px;
        margin-top: 1.2rem !important;
        margin-bottom: 2rem !important;
    }

    .contact-intro h2 {
        font-size: 1.35rem;
        line-height: 1.25;
    }

    .contact-intro .lead {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-item {
        min-height: 54px;
        padding: 10px;
        align-items: flex-start;
    }

    .contact-item i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .contact-address {
        font-size: 0.92rem;
    }

    .contact-media .store-img img,
    .contact-media #map {
        height: 240px;
    }

    .image-modal__close {
        width: 40px;
        height: 40px;
        top: -8px;
        right: -8px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .plan-strip:hover,
    .plan-strip--hover,
    .contact-item:hover {
        transform: none;
        box-shadow: inherit;
    }

    .plan-strip:hover .plan-strip__image,
    .plan-strip--hover .plan-strip__image {
        transform: none;
    }
}

/* ===== Mobile organization refinements ===== */
@media (max-width: 991.98px) {
    .site-header .top-utility .container {
        align-items: stretch !important;
        gap: 10px !important;
    }

    .site-header .contact-info,
    .site-header .top-actions {
        width: 100%;
    }

    .site-header .email-link {
        display: flex;
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
        padding: 9px 12px;
    }

    .site-header .top-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px !important;
    }

    .site-header .top-actions .btn {
        width: 100%;
        min-height: 42px;
        padding: 10px 12px;
    }

    .site-header .header-main {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header .logo img {
        height: 110px;
    }

    .site-header .navbar-toggler {
        border-color: rgba(148, 163, 184, 0.4);
        padding: .4rem .55rem;
    }

    .site-header .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid #dde7f6;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    .site-header .navbar-nav {
        gap: 6px;
        align-items: stretch !important;
    }

    .site-header .site-nav .nav-link {
        width: 100%;
        text-align: left;
        white-space: normal;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .hero__slide {
        padding: 40px 0 92px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__text {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero__panelWrap {
        margin-top: -54px;
    }

    .hero__panel {
        border-radius: 14px;
        overflow: hidden;
    }

    .heroCard {
        padding: 14px 12px;
    }

    .about-inner,
    .plans-shell,
    .contact-card {
        padding: 16px;
    }

    .site-footer .footer-bottom {
        padding-top: 26px;
        gap: 20px;
    }

    .site-footer .footer-bottom-bar {
        margin-top: 10px;
        padding-top: 12px;
    }
}

@media (max-width: 575.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header .logo img {
        height: 96px;
    }

    .site-header .top-actions {
        grid-template-columns: 1fr;
    }

    .site-header .email-link {
        font-size: 0.86rem;
    }

    .hero__title {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .hero__btn {
        width: 100%;
        justify-content: center;
    }

    .hero--carousel .carousel-control-prev,
    .hero--carousel .carousel-control-next {
        display: none;
    }

    .hero__panelWrap {
        margin-top: -44px;
    }

    .heroCard {
        padding: 12px 10px;
    }

    .whatsapp-float {
        bottom: 120px;
        right: 12px;
    }

    #back-to-top {
        right: 16px;
        bottom: 66px;
    }

    .site-footer .footer-logo img {
        max-height: 100px;
    }
}

@media (max-width: 360px) {
    .site-header .top-utility {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .site-header .email-link {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .site-header .top-actions .btn {
        min-height: 40px;
        font-size: 0.86rem;
        padding: 8px 10px;
    }

    .site-header .logo img {
        height: 84px;
    }

    .site-header .navbar-collapse {
        margin-top: 8px;
        padding: 8px;
        border-radius: 12px;
    }

    .site-header .site-nav .nav-link {
        font-size: 0.9rem;
        padding: 9px 10px;
    }

    .hero__slide {
        padding: 32px 0 84px;
    }

    .hero__title {
        font-size: 1.25rem;
    }

    .hero__text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .hero__btn {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .hero__panelWrap {
        margin-top: -38px;
    }

    .heroCard {
        padding: 10px 9px;
    }

    .heroCard__title {
        font-size: 0.86rem;
    }

    .plans-shell,
    .contact-card,
    .about-inner {
        padding: 12px;
        border-radius: 12px;
    }

    .plans-title,
    .contact-intro h2,
    .about-section h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .plans-header .lead,
    .contact-intro .lead,
    .about-section .lead {
        font-size: 0.88rem;
    }

    .plan-strip__content {
        padding: 14px;
    }

    .plan-strip__title {
        font-size: 1rem;
    }

    .plan-strip__features li,
    .plan-strip__summary {
        font-size: 0.86rem;
    }

    .contact-item {
        min-height: 50px;
        padding: 9px;
    }

    .contact-item i {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }

    .contact-item strong {
        font-size: 0.82rem;
    }

    .contact-media .store-img img,
    .contact-media #map {
        height: 200px;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 22px;
        right: 10px;
        bottom: 110px;
    }

    .whatsapp-float i {
        line-height: 46px;
    }

    #back-to-top {
        width: 44px;
        height: 44px;
        font-size: 17px;
        right: 10px;
        bottom: 56px;
    }

    .site-footer {
        padding-top: 18px;
    }

    .site-footer .footer-bottom {
        padding-top: 20px;
        gap: 14px;
    }

    .site-footer .footer-menu h4,
    .site-footer .footer-info h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .site-footer .footer-menu a,
    .site-footer .footer-info p,
    .site-footer .footer-info a,
    .site-footer .footer-bottom-bar .copyright,
    .site-footer .footer-bottom-bar .dev-mask {
        font-size: 0.84rem;
    }
}

/* ===== Header logo maximize without changing header size ===== */
.site-header .logo {
    overflow: visible;
}

.site-header .logo img {
    --logo-scale: 1.22;
    transform: scale(var(--logo-scale));
    transform-origin: left center;
}

.site-header .logo img:hover {
    transform: scale(var(--logo-scale)) translateY(-3px);
}

@media (max-width: 992px) {
    .site-header .logo img {
        --logo-scale: 1.16;
    }
}

@media (max-width: 576px) {
    .site-header .logo img {
        --logo-scale: 1.1;
    }
}

/* ===== Theme toggle ===== */
.theme-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-height: 42px;
    flex: 0 0 42px;
    padding: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.theme-toggle-btn i {
    font-size: 1rem;
}

.theme-toggle-btn .theme-toggle-label {
    display: none;
}

@media (max-width: 575.98px) {
    .theme-toggle-btn {
        width: 42px;
        height: 42px;
        min-height: 42px;
        flex: 0 0 42px;
    }
}

/* ===== Dark mode ===== */
html[data-theme="dark"] {
    color-scheme: dark;
}

html[data-theme="dark"] body {
    background: #0b1220 !important;
    color: #e5e7eb !important;
}

html[data-theme="dark"] .top-bar,
html[data-theme="dark"] .top-utility {
    background: linear-gradient(90deg, #111827, #1f2937) !important;
    border-bottom-color: rgba(148, 163, 184, 0.2) !important;
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-header--scrolled,
html[data-theme="dark"] header {
    background: rgba(12, 18, 30, 0.94) !important;
    border-bottom-color: rgba(148, 163, 184, 0.2) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4) !important;
}

html[data-theme="dark"] .site-header .email-link,
html[data-theme="dark"] .hero__panel,
html[data-theme="dark"] .about-inner,
html[data-theme="dark"] .plans-shell,
html[data-theme="dark"] .contact-page,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .plan-strip,
html[data-theme="dark"] .contact-item,
html[data-theme="dark"] .plans-bottom-note,
html[data-theme="dark"] .contact-intro {
    background: #111827 !important;
    border-color: rgba(148, 163, 184, 0.28) !important;
    color: #e5e7eb !important;
}

html[data-theme="dark"] .about-section,
html[data-theme="dark"] .plans-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.16), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(243, 154, 37, 0.14), transparent 42%),
        #0b1220 !important;
}

html[data-theme="dark"] .site-header .site-nav .nav-link,
html[data-theme="dark"] .navbar-nav .nav-link,
html[data-theme="dark"] .email-link,
html[data-theme="dark"] .heroCard,
html[data-theme="dark"] .contact-item,
html[data-theme="dark"] .site-footer .footer-menu a,
html[data-theme="dark"] .site-footer .footer-info a,
html[data-theme="dark"] .site-footer .footer-info p,
html[data-theme="dark"] .contact-address,
html[data-theme="dark"] .plan-strip__summary,
html[data-theme="dark"] .plan-strip__features li,
html[data-theme="dark"] .plans-header .lead,
html[data-theme="dark"] .contact-intro .lead {
    color: #d1d5db !important;
}

html[data-theme="dark"] .site-header .navbar-collapse,
html[data-theme="dark"] .site-header .site-nav,
html[data-theme="dark"] .site-header .navbar-nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

html[data-theme="dark"] .site-header .navbar-collapse {
    padding: 0 !important;
    margin-top: 0 !important;
}

html[data-theme="dark"] .hero--carousel .carousel-indicators [data-bs-target] {
    background-color: #0b1220 !important;
    border: 1px solid #0b1220 !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .hero--carousel .carousel-indicators .active {
    background-color: #0b1220 !important;
    border-color: #0b1220 !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .plan-strip__speed {
    background: rgba(17, 24, 39, 0.88) !important;
    color: #f9fafb !important;
    border: 1px solid rgba(148, 163, 184, 0.45) !important;
}

html[data-theme="dark"] .contact-page .contact-item,
html[data-theme="dark"] .contact-page .contact-item:link,
html[data-theme="dark"] .contact-page .contact-item:visited {
    color: #e5e7eb !important;
    border-color: rgba(148, 163, 184, 0.34) !important;
}

html[data-theme="dark"] .contact-page .contact-item strong {
    color: #f9fafb !important;
}

html[data-theme="dark"] .contact-page .contact-item__value {
    color: #dbe4f2 !important;
}

html[data-theme="dark"] .plan-strip__meta i,
html[data-theme="dark"] .contact-address i,
html[data-theme="dark"] .about-chip i {
    color: #fbbf24 !important;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] .plans-title,
html[data-theme="dark"] .plan-strip__title,
html[data-theme="dark"] .contact-intro h2,
html[data-theme="dark"] .about-section h2,
html[data-theme="dark"] .site-footer .footer-menu h4,
html[data-theme="dark"] .site-footer .footer-info h4 {
    color: #f9fafb !important;
}

html[data-theme="dark"] .city-chip,
html[data-theme="dark"] .contact-chip,
html[data-theme="dark"] .about-chip,
html[data-theme="dark"] .plan-strip__meta,
html[data-theme="dark"] .plan-strip__badge {
    background: #1f2937 !important;
    border-color: rgba(148, 163, 184, 0.32) !important;
    color: #e5e7eb !important;
}

html[data-theme="dark"] .about-features .about-feature {
    background: #1f2937 !important;
    border: 1px solid rgba(148, 163, 184, 0.3) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26) !important;
}

html[data-theme="dark"] .about-feature h5 {
    color: #f9fafb !important;
}

html[data-theme="dark"] .about-feature p {
    color: #d1d5db !important;
}

html[data-theme="dark"] .about-feature-icon {
    background: rgba(243, 154, 37, 0.18) !important;
    color: #fbbf24 !important;
}

html[data-theme="dark"] .heroCard {
    background: #111827 !important;
    border-color: rgba(148, 163, 184, 0.24) !important;
}

html[data-theme="dark"] .heroCard__icon {
    background: rgba(59, 130, 246, 0.22) !important;
    color: #93c5fd !important;
}

html[data-theme="dark"] .site-footer {
    background:
        radial-gradient(circle at 0% 0%, rgba(243, 154, 37, 0.18), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.2), transparent 38%),
        linear-gradient(180deg, #020617 0%, #0b1220 100%) !important;
}

html[data-theme="dark"] .site-footer .footer-divider,
html[data-theme="dark"] .site-footer .footer-bottom-bar {
    border-color: rgba(148, 163, 184, 0.28) !important;
}

html[data-theme="dark"] .theme-toggle-btn {
    background: linear-gradient(135deg, #f59e0b, #f39a25) !important;
    color: #111827 !important;
    box-shadow: 0 10px 24px rgba(243, 154, 37, 0.35) !important;
}

html[data-theme="light"] .theme-toggle-btn,
html:not([data-theme]) .theme-toggle-btn {
    background: linear-gradient(135deg, #111827, #1f2937) !important;
    color: #f8fafc !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.26) !important;
}

html[data-theme="light"] .site-header,
html[data-theme="light"] .site-header--scrolled,
html[data-theme="light"] .about-inner,
html[data-theme="light"] .plans-shell,
html[data-theme="light"] .contact-card {
    color: inherit;
}

/* ===== Final mobile override (priority) ===== */
@media (max-width: 991.98px) {
    .plans-section .plan-strip,
    .plans-section .plan-strip.is-reverse {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .plans-section .plan-strip__media {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: auto !important;
    }

    .plans-section .plan-strip__image {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        display: block !important;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .contact-page .contact-item {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 34px 1fr !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px !important;
        min-height: 0 !important;
        text-align: left !important;
        white-space: normal !important;
    }

    .contact-page .contact-item__text {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        min-width: 0 !important;
    }

    .contact-page .contact-item__value {
        display: block !important;
        overflow-wrap: anywhere !important;
        word-break: break-word !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 575.98px) {
    .plans-section .plan-strip__media {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .contact-page .contact-item {
        grid-template-columns: 30px 1fr !important;
        gap: 8px !important;
        padding: 9px !important;
    }

    .contact-page .contact-item i {
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
    }
}
