body {
    font-family: 'Roboto', 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%;
    }
}

.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-color: #f2a340;
    border: 2px solid #c28008;
}

.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-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-float i {
    line-height: 60px;
}

.whatsapp-float:hover {
    background-color: #20b858;
}

#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;
}

#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;
}

.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: #ffffff;
    padding: 60px 0;
}

.plans-header {
    align-items: flex-end;
}

.plans-cta-wrap {
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .plans-cta-wrap {
        padding-right: calc(var(--bs-gutter-x, 1.5rem) / 2);
    }
}

.plans-cta {
    white-space: nowrap;
}

.plan-card {
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.plan-card .card-body {
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.plan-card .card-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-card .card-text {
    color: #666;
    margin-bottom: 18px;
}

.plan-card .btn {
    margin-top: auto;
}

/* 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; }
}