/* =========================================
   Churrasqueira de Tijolinhos — Custom CSS
   Bootstrap 5 · Mobile First
   Paleta fiel ao site original:
     Vermelho  #B22222  (primário)
     Âmbar     #BD822A  (acento)
     Branco    #ffffff  (contraste)
   Cor removida: #36474F (cinza-ardósia — não existia no original)
   ========================================= */

:root {
    --color-primary:      #B22222;
    --color-primary-dark: #8B0000;
    --color-accent:       #BD822A;
    --color-accent-dark:  #8B5E14;
    --color-light:        #f8f5f0;
    --color-dark-red:     #6B0000;     /* footer / fundo escuro */
    --color-title:        #2D1A00;     /* títulos de seção (tom quente, não slate) */
    --font-main:          Tahoma, 'Segoe UI', Arial, sans-serif;
    --nav-h:              68px;        /* altura da navbar — usada no cálculo do hero */
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: #333;
}

/* Wrapper do conteúdo — overflow aqui, não no body,
   para não clipar position:fixed no iOS Safari */
.site-body {
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

/* ── Bootstrap overrides ─────────────────── */
.text-primary   { color: var(--color-primary) !important; }
.bg-primary     { background-color: var(--color-primary) !important; }

.btn-primary {
    background-color: var(--color-primary);
    border-color:     var(--color-primary);
    font-weight: 600;
    padding: .6rem 1.6rem;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color:     var(--color-primary-dark);
}

.btn-outline-primary {
    color:        var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color:     var(--color-primary);
}

.btn-accent {
    background-color: var(--color-accent);
    border-color:     var(--color-accent);
    color: #fff;
    font-weight: 700;
    padding: .75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
}
.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color:     var(--color-accent-dark);
    color: #fff;
}

/* ── Section helpers ─────────────────────── */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--color-title);         /* tom quente escuro, sem cinza-slate */
    margin-bottom: .5rem;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: .5rem auto 0;
}

.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.section-pad { padding: 80px 0; }

@media (max-width: 767.98px) {
    .section-pad { padding: 56px 0; }
}

/* ── Navbar ──────────────────────────────── */
/* Fundo vermelho — idêntico ao container externo do site antigo */
#mainNav {
    background-color: var(--color-primary);
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .3s, background-color .3s;
    z-index: 1030;
}

#mainNav.nav-hidden {
    transform: translateY(-100%);
}

#mainNav.scrolled {
    box-shadow: 0 3px 18px rgba(0,0,0,.4);
    background-color: var(--color-primary-dark);
}

#mainNav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

#mainNav .navbar-brand img.logo-icon {
    height: 52px;
    width: auto;
}

#mainNav .navbar-brand img.logo-text {
    height: 32px;
    width: auto;
}

/* Mobile: marca centralizada e 40% maior */
@media (max-width: 991.98px) {
    #mainNav .container {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        align-items: center;
        gap: 0;
    }
    #mainNav .navbar-brand {
        grid-column: 2;
        justify-self: center;
        position: static;
        transform: none;
    }
    #mainNav .navbar-toggler {
        grid-column: 3;
        justify-self: end;
        margin-left: 0 !important;
    }
    #mainNav .navbar-brand img.logo-icon {
        height: 73px;  /* 52 × 1.4 */
    }
    #mainNav .navbar-brand img.logo-text {
        height: 45px;  /* 32 × 1.4 */
    }
}

#mainNav .nav-link {
    color: rgba(255,255,255,.92) !important;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .4px;
    padding: .5rem .85rem !important;
    transition: color .2s;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--color-accent) !important;
}

#mainNav .navbar-toggler {
    border-color: rgba(255,255,255,.35);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-phone {
    color: rgba(255,255,255,.92) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.nav-phone-sm { font-size: .8rem; }

.nav-phone:hover { color: var(--color-accent) !important; }

/* Badge de estado (RJ / ES) */
.nav-phone-state,
.contact-state-label {
    display: inline-block;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 1px 5px;
    border-radius: 3px;
    line-height: 1.4;
    vertical-align: middle;
}

.btn-wpp-nav {
    background-color: #25D366;
    color: #fff !important;
    border-radius: 4px;
    padding: .4rem .9rem !important;
    font-weight: 700 !important;
    font-size: .85rem !important;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s !important;
}

.btn-wpp-nav:hover { background-color: #1da851 !important; color: #fff !important; }

/* ── Offcanvas menu lateral (mobile) ─────── */
.nav-offcanvas {
    background-color: var(--color-primary-dark);
    width: 280px;
}

/* Full-screen no mobile */
@media (max-width: 991.98px) {
    .nav-offcanvas { width: 100%; }
}

.nav-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tamanho correto da marca dentro do offcanvas */
.nav-offcanvas .logo-icon {
    height: 48px;
    width: auto;
}

.nav-offcanvas .logo-text {
    height: 28px;
    width: auto;
}

/* Botão de fechar */
.nav-offcanvas .btn-close {
    flex-shrink: 0;
    opacity: .85;
    filter: brightness(0) invert(1);
    font-size: 1.2rem;
}

.offcanvas-nav-link {
    color: rgba(255,255,255,.9) !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: .65rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .2s, padding-left .2s;
}

.offcanvas-nav-link:hover {
    color: var(--color-accent) !important;
    padding-left: .5rem !important;
}

.offcanvas-divider {
    border-color: rgba(255,255,255,.15);
    margin: 1.5rem 0 1rem;
}

/* ── Hero — Split Panel ──────────────────── */
#inicio {
    display: flex;
    flex-direction: column;      /* mobile: empilhado, altura pelo conteúdo */
    overflow: hidden;
}

/* Painel esquerdo — fundo dourado/mostarda */
.hero-panel-left {
    background: linear-gradient(150deg, #D4960F 0%, #C4880E 55%, #A86E08 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px 36px;       /* mobile: altura pelo conteúdo */
    position: relative;
    overflow: hidden;
}

/* Detalhe decorativo — círculo escuro sutil */
.hero-panel-left::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(45,26,0,.1);
    top: -120px;
    right: -100px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
}

.hero-pretitle {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 20px;
    margin-bottom: .75rem;
    gap: .3rem;
}

.hero-title {
    font-size: clamp(1.75rem, 7vw, 3.4rem);
    font-weight: 700;
    color: #2D1A00;
    line-height: 1.15;
    margin-bottom: .5rem;
}

/* Destaque vermelho — contraste forte sobre o fundo dourado */
.hero-title span { color: var(--color-primary); }

.hero-subtitle {
    font-size: clamp(.82rem, 3vw, 1.05rem);
    color: rgba(45,26,0,.75);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Painel direito — slideshow com altura fixa no mobile */
.hero-panel-right {
    height: 260px;               /* altura fixa no mobile */
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

/* Carousel precisa ocupar 100% do painel */
#heroCarousel,
#heroCarousel .carousel-inner {
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Indicadores posicionados na base do painel */
.hero-indicators {
    margin-bottom: .75rem;
}

.hero-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.6);
    border: none;
    transition: background .3s, transform .3s;
}

.hero-indicators .active {
    background-color: var(--color-accent);
    transform: scale(1.3);
}

/* Desktop: lado a lado — altura descontando a navbar */
@media (min-width: 992px) {
    #inicio {
        height: calc(100svh - var(--nav-h));
        min-height: 520px;
        flex-direction: row;
    }
    .hero-panel-left {
        flex: 0 0 44%;
        min-height: 0;
        padding: 0 48px 0 56px;
        justify-content: center;
        align-items: center;
    }
    .hero-inner {
        max-width: 480px;
        width: 100%;
    }
    .hero-panel-right {
        flex: 0 0 56%;
        min-height: 0;
        height: auto;
    }
    .hero-title {
        font-size: clamp(2rem, 3.2vw, 3.2rem);
    }
}

@media (min-width: 1200px) {
    .hero-panel-left { padding: 0 56px 0 72px; }
    .hero-inner { max-width: 520px; }
}

@media (min-width: 1200px) {
    .hero-panel-left { padding: 120px 80px 80px 80px; }
}

/* ── Quem Somos ──────────────────────────── */
.sobre-section {
    background-color: #fff;
}

/* Faixa de números */
.sobre-stats {
    background-color: var(--color-primary);
    padding: 48px 0 44px;
}

.sobre-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.sobre-stat-item:last-child { border-right: none; }

.sobre-stat-num {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sobre-stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: .4rem;
}

/* Texto institucional */
.sobre-body {
    padding: 72px 0 56px;
}

.sobre-texto {
    font-size: 1.08rem;
    color: #555;
    line-height: 1.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards de pilares */
.sobre-pilares {
    padding-bottom: 80px;
}

.pilar-card {
    background: var(--color-light);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid var(--color-primary);
    transition: transform .3s, box-shadow .3s;
}

.pilar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}

.pilar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: #fff;
}

.pilar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-title);
    margin-bottom: .6rem;
}

.pilar-text {
    font-size: .92rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Hero mobile: centraliza texto e botões */
@media (max-width: 991.98px) {
    .hero-inner { text-align: center; }
    .hero-actions { justify-content: center; }
}

@media (max-width: 767.98px) {
    .sobre-body { padding: 56px 0 40px; }
    .sobre-pilares { padding-bottom: 56px; }
}

/* ── Destaque "Riqueza" ──────────────────── */
#destaque {
    position: relative;
    overflow: hidden;
}

/* Parallax via background-attachment:fixed no ::before + blur isolado no #destaque-bg */
#destaque-bg {
    position: absolute;
    inset: -30px;
    background-image: url('../../images/65-com-forno.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(5px);
    z-index: 0;
}

@media (max-width: 767.98px) {
    #destaque-bg {
        background-attachment: scroll;
        filter: blur(4px);
    }
}

.destaque-overlay {
    position: absolute;
    inset: 0;
    background: rgba(178, 34, 34, .78);
    z-index: 1;
}

.destaque-content { position: relative; z-index: 2; }

.destaque-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* ── Produtos ────────────────────────────── */
#produtos { background-color: var(--color-light); }

.produto-list li {
    padding: .35rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.produto-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.produto-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: .75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.produto-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .4s ease;
}
.produto-img-wrap:first-child img {
    height: 280px;
}

.produto-img-wrap:hover img { transform: scale(1.04); }

/* ── Acessórios ──────────────────────────── */
#acessorios { background-color: #fff; }

.acessorio-card {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}

.acessorio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
}

.acessorio-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.acessorio-card h6 {
    font-weight: 700;
    color: var(--color-title);          /* tom quente, não slate */
    font-size: .95rem;
    margin: 0;
}

/* ── Galeria ─────────────────────────────── */
#galeria { background-color: var(--color-light); }

/* Wrapper para fade nas bordas indicando scroll */
.gallery-tabs-wrap {
    position: relative;
}
.gallery-tabs-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--color-light));
    pointer-events: none;
    border-radius: 0;
}

/* Barra rolável numa única linha */
.gallery-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    gap: 6px;
    padding-bottom: 2px;
    justify-content: flex-start !important;
}
.gallery-tabs::-webkit-scrollbar { display: none; }

.gallery-tabs .nav-item { flex-shrink: 0; }

.gallery-tabs .nav-link {
    color: var(--color-title);
    font-weight: 600;
    font-size: .88rem;
    white-space: nowrap;
    border-radius: 20px;
    border: 2px solid transparent;
    padding: .45rem 1.1rem;
    background: rgba(0,0,0,.06);
    transition: color .2s, background .2s, border-color .2s;
}

.gallery-tabs .nav-link:hover {
    color: var(--color-primary);
    background: rgba(178,34,34,.08);
}

.gallery-tabs .nav-link.active {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(178,34,34,0);
    transition: background .3s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(178,34,34,.55); }

@media (max-width: 575.98px) {
    .gallery-item img { height: 160px; }
}

/* ── Contato / Footer ────────────────────── */
#contato {
    background-color: var(--color-dark-red);
    color: #fff;
}

#contato .form-control,
#contato .form-select {
    background-color: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 6px;
    padding: .75rem 1rem;
    font-family: var(--font-main);
}

#contato .form-control::placeholder { color: rgba(255,255,255,.5); }
#contato .form-control:focus {
    background-color: rgba(255,255,255,.18);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 0 .2rem rgba(189,130,42,.35);
}

#contato .form-control.is-invalid { border-color: #ffaaaa; }
#contato .invalid-feedback { color: #ffcccc; }

/* ── Footer ──────────────────────────────── */
footer {
    background-color: var(--color-dark-red);
    color: rgba(255,255,255,.78);
    padding: 64px 0 28px;
}

/* Coluna 1: separador visual no mobile */
@media (max-width: 991.98px) {
    .footer-brand-col {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
}

/* Marca */
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.footer-brand-icon {
    height: 72px;
    width: auto;
}

.footer-brand-text {
    height: 44px;
    width: auto;
    opacity: .95;
}

.footer-tagline {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    line-height: 1.6;
    max-width: 320px;
}
.footer-grupo-soma {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-soma-logo {
    width: auto;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}
.footer-soma-plus {
    color: rgba(255,255,255,.7);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}
.footer-grupo-soma .footer-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Nav vertical na coluna 1 */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

/* Título e subtítulo do formulário */
.footer-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .35rem;
}

.footer-form-sub {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.5rem;
}

footer .footer-divider {
    border-color: rgba(255,255,255,.12);
    margin: 2.5rem 0 1.25rem;
}

footer a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--color-accent); }

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    font-size: 1.15rem;
    transition: background .2s, color .2s;
    color: rgba(255,255,255,.88);
}
footer .social-link:hover {
    background: var(--color-accent);
    color: #fff;
}

footer .credits { font-size: .8rem; opacity: .55; }
footer .credits a { opacity: 1; }

/* ── WhatsApp Floating ───────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9990;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    /* fechado: círculo de 56px com ícone centralizado */
    width: 56px;
    height: 56px;
    padding: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,.28);
    transition: width .35s ease, background .25s, box-shadow .25s, transform .25s;
}

.whatsapp-float i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Texto sempre presente mas oculto */
.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    font-size: .9rem;
    font-weight: 700;
    transition: max-width .35s ease, opacity .2s ease;
    white-space: nowrap;
}

/* Desktop hover: revela o texto */
@media (hover: hover) {
    .whatsapp-float:hover {
        width: auto;
        padding: 0 20px 0 16px;
        gap: 10px;
        justify-content: flex-start;
        background-color: #1da851;
        box-shadow: 0 6px 24px rgba(0,0,0,.35);
        transform: translateY(-2px);
    }
    .whatsapp-float:hover span {
        max-width: 200px;
        opacity: 1;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-float {
        bottom: 16px;
        right: 14px;
        width: 52px;
        height: 52px;
    }
}

/* ── Scroll to top ───────────────────────── */
#toTop {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9989;
    background: var(--color-primary);   /* vermelho */
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.25);
    transition: background .2s;
}

#toTop:hover { background: var(--color-primary-dark); }
#toTop.visible { display: flex; }

@media (max-width: 575.98px) {
    #toTop { bottom: 88px; right: 14px; }
}


/* ── Modal WhatsApp — campos de captura ─── */
#wppModal .form-label { font-weight: 600; color: #333; font-size: .9rem; }
#wppModal .form-control { border-radius: 8px; font-size: 1rem; }
#wppModal .form-control:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 .2rem rgba(37,211,102,.2);
}

/* Botão de região desabilitado enquanto formulário não está válido */
.wpp-region-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── Modal WhatsApp ──────────────────────── */
.wpp-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.wpp-modal-header {
    background-color: #25D366;
    color: #fff;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.wpp-modal-header .modal-title { font-weight: 700; font-size: 1.1rem; }

.wpp-modal-body {
    padding: 1.75rem 1.5rem;
}

.wpp-modal-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}

.wpp-region-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #f0fdf4;
    border: 2px solid #25D366;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #1a1a1a;
    text-align: left;
    transition: background .2s, transform .15s;
}

.wpp-region-btn:hover {
    background-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
}

.wpp-region-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: background .2s;
}

.wpp-region-btn:hover .wpp-region-icon {
    background: rgba(255,255,255,.25);
}

.wpp-region-btn strong { font-size: 1rem; }

/* ── Utilities ───────────────────────────── */
.fw-700 { font-weight: 700; }
.text-accent { color: var(--color-accent) !important; }
.bg-light-brand { background-color: var(--color-light) !important; }

/* ── GLightbox: título integrado como overlay na foto ────── */
.gslide-description {
    background: transparent !important;
    padding: 0 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    pointer-events: none;
}
.gslide-title {
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: .02em !important;
    padding: 36px 20px 14px !important;
    margin: 0 !important;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.gslide-media { position: relative !important; }
.gslide-inline-content { position: relative !important; }
