/* Calhas Werner - Tema dark minimalista + área restrita + logo via imagem */

:root {
    /* Modern light palette (Calhas Werner) */
    --bg-main: #eaf1ff;
    --bg-panel: #ffffff;
    --bg-panel-alt: #dbeafe;
    --accent: #1d4ed8;
    --accent-2: #0ea5e9;
    --accent-soft: rgba(29, 78, 216, 0.16);
    --text-main: #0f172a;
    --text-muted: #334155;
    --border-soft: rgba(15, 23, 42, 0.14);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.12);
    --danger: #ef4444;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background: radial-gradient(circle at top left, #eef2ff 0%, #f8fafc 45%, #f1f5f9 100%);
    color: var(--text-main);
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER & NAV */

.topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
}

.header-content {
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img-wrapper {
    width: 110px;
    max-height: 48px;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 48px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.logo-subtitle {
    font-weight: 300;
    font-size: 0.72rem;
    color: #555;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.9rem;
}

.nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .2s ease, color .2s ease;
}

.nav a:hover {
    background: var(--accent-soft);
    color: var(--text-main);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.2s ease-in-out;
}

.nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.btn-nav:hover {
    background: var(--accent);
    color: white;
}

.btn-nav-ghost {
    background: transparent;
    color: var(--accent) !important;
    border: 1px solid rgba(11,97,255,0.35);
    padding: 10px 14px;
    border-radius: 999px;
}

.btn-nav-ghost:hover {
    background: rgba(11,97,255,0.08);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #222;
    font-size: 1.4rem;
}

/* MAIN / SECTIONS */

main {
    padding-bottom: 20px;
}

.hero {
    padding: 60px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,1fr);
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.4rem, 3.4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-text p {
    color: #555;
    font-size: 0.98rem;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-primary,
.btn-outline {
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #3f8cff;
    border-color: #3f8cff;
}

.btn-outline {
    background: transparent;
    border-color: var(--border-soft);
    color: #222;
}

.btn-outline:hover {
    background: var(--border-soft);
}

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.9rem;
}

.hero-phone {
    font-weight: 500;
}

.hero-phone i {
    color: var(--accent);
    margin-right: 6px;
}

.hero-region {
    color: #555;
}

/* HERO PANEL */

.hero-panel {
    background: radial-gradient(circle at top left, #1b2335 0%, #ffffff 55%, #f6f7fa 100%);
    border-radius: 24px;
    padding: 24px 24px 26px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 50px rgba(0,0,0,0.7);
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--accent-soft);
    color: #7fb1ff;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.hero-panel h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.hero-panel p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
}

.hero-list {
    list-style: none;
    font-size: 0.88rem;
    color: #222;
}

.hero-list li {
    margin-bottom: 6px;
}

.hero-list i {
    color: #4ae38a;
    margin-right: 6px;
}

/* GENERIC SECTIONS */

.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.section-subtitle {
    font-size: 0.94rem;
    color: #555;
    margin-bottom: 20px;
}

/* CARDS SERVIÇOS */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card {
    background: var(--bg-panel);
    border-radius: 18px;
    padding: 18px 18px 18px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 40px rgba(0,0,0,0.65);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #7fb1ff;
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.9rem;
    color: #555;
}

/* SOBRE */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 22px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo-placeholder {
    width: 100%;
    min-height: 220px;
    border-radius: 20px;
    background: #191f2a;
    border: 1px dashed var(--border-soft);
    color: #555;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
}

/* GALERIA */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-item {
    background: #171b26;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.85rem;
}

.gallery-note {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #555;
}

/* ORÇAMENTO */

.section-contrast {
    background: linear-gradient(135deg, #0b0e17, #f6f7fa);
}

.budget-grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1.1fr);
    gap: 22px;
    align-items: flex-start;
}

.budget-list {
    list-style: none;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #222;
}

.budget-list li {
    margin-bottom: 6px;
}

.budget-list i {
    color: var(--accent);
    margin-right: 6px;
}

/* FORM BASE */

.budget-form {
    background: var(--bg-panel-alt);
    border-radius: 20px;
    padding: 18px 18px 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-group label {
    font-size: 0.8rem;
    margin-bottom: 4px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 8px 10px;
    color: var(--text-main);
    font-size: 0.88rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.full-width {
    width: 100%;
    margin-top: 6px;
}

.form-note {
    font-size: 0.78rem;
    color: #555;
    margin-top: 6px;
}

/* ÁREA RESTRITA */


.area-header-actions{
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
}
.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-simple {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.table-simple th,
.table-simple td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border-soft);
}

.table-simple th {
    text-align: left;
    font-weight: 500;
    color: #555;
}

.table-simple tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.link-danger {
    color: var(--danger);
    text-decoration: none;
    font-size: 0.8rem;
}

.link-danger:hover {
    text-decoration: underline;
}

/* ALERTAS */

.alert {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #a5e6a5;
}

.alert-error {
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #ffb4b0;
}

/* FOOTER */

.footer {
    border-top: 1px solid var(--border-soft);
    padding: 18px 0 26px;
    background: #f6f7fa;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 12px;
    font-size: 0.84rem;
    color: #555;
}

.footer i {
    color: var(--accent);
    margin-right: 5px;
}

.footer-copy {
    grid-column: 1 / -1;
    margin-top: 4px;
    font-size: 0.78rem;
}

/* FEEDBACK CONTAINER REUTILIZADO */

.feedback-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 20px;
    background: #0c101a;
    border: 1px solid var(--border-soft);
    text-align: center;
}

/* RESPONSIVO */

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .budget-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        right: 16px;
        top: 60px;
        background: #f6f7fa;
        padding: 12px 14px;
        border-radius: 14px;
        border: 1px solid var(--border-soft);
        flex-direction: column;
        gap: 10px;
        display: none;
    }
    .nav.open {
        display: flex;
    }
    .menu-toggle {
        display: inline-flex;
    }
}

/* =============================
   V2 - Tema mais claro e header com mais destaque
   ============================= */

body {
    background: #f3f4f8;
    color: #222222;
}

/* Header bem claro e com sombra suave */
.topbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

/* Logo maior e mais visível */
.logo-img-wrapper {
    width: 140px;
    max-height: 64px;
}

.logo-img {
    max-height: 60px;
}

.logo-title {
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
}

.logo-subtitle {
    color: #6b7280;
}

/* Navegação mais legível */
.nav a {
    color: #4b5563;
    font-weight: 500;
}

.nav a:hover {
    color: #111827;
}

.nav a::after {
    background: #2563eb;
}

.btn-nav {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-nav:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Menu mobile com fundo claro */
@media (max-width: 768px) {
    .nav {
        background: #ffffff;
        border-color: #e5e7eb;
    }
}

/* Painéis e cards mais claros */
.hero-panel,
.card,
.budget-form,
.feedback-container {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Títulos e textos gerais */
.section-title {
    color: #111827;
}

.section-subtitle {
    color: #6b7280;
}

/* Footer claro */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    color: #6b7280;
}

.footer-copy {
    color: #9ca3af;
}

/* Tabelas com linhas mais suaves */
.table-simple th,
.table-simple td {
    border-bottom: 1px solid #e5e7eb;
}

.table-simple tbody tr:hover {
    background: #f3f4f6;
}

/* Alerts em tema claro */
.alert-success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

/* ===== V4 - Clareamento da seção de orçamento ===== */

.section-contrast {
    background: #ffffff !important;
}

.budget-form {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
}

.budget-list li {
    color: #111827 !important;
}

.form-group label {
    color: #374151 !important;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #f9fafb !important;
    border: 1px solid #cbd5e1 !important;
    color: #111827 !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}

.btn-primary {
    background: #2563eb !important;
    border-color: #2563eb !important;
}

.section-title, .section-subtitle {
    color: #111 !important;
}


/* ===============================
   V5 - Responsividade Completa
   =============================== */

/* Tipografia fluida */
h1, h2, h3, p, label, a, button {
    text-rendering: optimizeLegibility;
}

/* HERO responsivo */
@media (max-width: 820px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-panel {
        margin-top: 20px;
    }
}

/* Botões 100% largura no mobile */
@media (max-width: 580px) {
    .btn-primary, .btn-outline {
        width: 100%;
    }
}

/* Cards de serviços responsivos */
@media (max-width: 720px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Seção SOBRE ajustada */
@media (max-width: 820px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Galeria totalmente responsiva */
.gallery-item {
    aspect-ratio: 1 / 1;
}

/* Formulário responsivo */
@media (max-width: 720px) {
    .form-row {
        flex-direction: column;
    }
    .budget-form {
        padding: 16px;
    }
}

/* Tabelas responsivas na área restrita */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Melhor espaçamento no mobile */
@media (max-width: 500px) {
    .section {
        padding: 30px 0;
    }
    .section-title {
        font-size: 1.4rem;
    }
}

/* Header responsivo */
@media (max-width: 900px) {
    .logo-img {
        max-height: 46px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        max-height: 40px;
    }
    .nav a {
        font-size: 0.95rem;
    }
}


/* ===============================
   V6 - Ajustes finos mobile (hero)
   =============================== */

/* Hero mais compacto no mobile e sem blocão escuro */
@media (max-width: 820px) {
    .hero {
        padding: 24px 0 32px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-text {
        text-align: left;
    }
    .hero-panel {
        margin-top: 8px;
        background: #ffffff !important;
        color: #111827;
        box-shadow: 0 10px 30px rgba(15,23,42,0.08);
        border-radius: 20px;
    }
    .hero-panel p {
        color: #4b5563;
    }
}

/* Em telas muito pequenas, limitar a largura do painel para não parecer uma faixa */
@media (max-width: 480px) {
    .hero-panel {
        margin-left: 4px;
        margin-right: 4px;
        padding: 18px 16px 20px;
    }
}

/* Garantir que o fundo geral seja claro no mobile também */
@media (max-width: 820px) {
    body {
        background: #f5f6fa;
    }
}


/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}
.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===============================
   V8 - Logo um pouco maior (Opção A)
   =============================== */

.logo-img-wrapper {
    width: 170px;
    max-height: 72px;
}

.logo-img {
    max-height: 68px;
}

@media (max-width: 900px) {
    .logo-img-wrapper {
        width: 150px;
        max-height: 64px;
    }
    .logo-img {
        max-height: 60px;
    }
}

@media (max-width: 600px) {
    .logo-img-wrapper {
        width: 135px;
        max-height: 56px;
    }
    .logo-img {
        max-height: 52px;
    }
}


/* V9 - Alinhamento correto de ícones e texto no footer */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.footer-contact-line i {
    margin-right: 0;
    display: inline-flex;
}


/* ========== V10 - Logo maior + menu menos colado à direita ========== */

/* Aumenta ainda mais a logo no mobile e desktop */
.logo-img-wrapper {
    width: 190px !important;
    max-height: 82px !important;
}
.logo-img {
    max-height: 78px !important;
}

/* Ajustes responsivos */
@media (max-width: 900px) {
    .logo-img-wrapper {
        width: 165px !important;
        max-height: 72px !important;
    }
    .logo-img {
        max-height: 68px !important;
    }
}

@media (max-width: 600px) {
    .logo-img-wrapper {
        width: 155px !important;
        max-height: 68px !important;
    }
    .logo-img {
        max-height: 64px !important;
    }
}

/* Recuar o menu hamburguer da borda direita */
.menu-toggle {
    margin-right: 12px !important;
}

@media (max-width: 600px) {
    .menu-toggle {
        margin-right: 16px !important;
    }
}

/* ========== V11 - Alinhamento do título no header mais próximo da logo ========== */

.logo {
    display: flex;
    align-items: center;
    gap: 2px; /* aproxima título da logo */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente em relação à logo */
}

.logo-title {
    margin: 0;
    line-height: 1.1;
}

.logo-subtitle {
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 600px) {
    .logo {
        gap: 2px; /* ainda mais próximo no mobile */
    }
}


/* V12 - Imagens fictícias padrão e dimensões sugeridas */

/* Hero image */
.hero-illustration {
    margin-bottom: 16px;
}
.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    max-height: 360px;
}

/* About image */
.about-photo-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    max-height: 420px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
}

/* Galeria */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}


/* V13 - Lightbox da galeria e mapa do orçamento */

.lightbox.hidden {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.lightbox-content {
    position: relative;
    z-index: 9999;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: -40px;
    right: 0;
}

.lightbox-prev {
    left: -40px;
}

.lightbox-next {
    right: -40px;
}

@media (max-width: 600px) {
    .lightbox-prev {
        left: 4px;
    }
    .lightbox-next {
        right: 4px;
    }
    .lightbox-close {
        top: 8px;
        right: 8px;
    }
}

.no-scroll {
    overflow: hidden;
}

/* Mapa na página de orçamento */
.orcamento-map-wrapper {
    margin-top: 16px;
}

.map-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.map-address {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* V15 - Mapa integrado ao grid de orçamento */
.budget-map-full {
    grid-column: 1 / -1;
}

.orcamento-map-wrapper {
    margin-top: 8px;
}


/* Orçamento - layout inspirado em card + mapa */
.orcamento-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 24px;
}

.orcamento-info-card {
    background: #f9fafb;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.orcamento-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.orcamento-info-line {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 6px;
}

.orcamento-info-list {
    margin: 14px 0 18px;
    padding-left: 18px;
    font-size: 0.9rem;
    color: #4b5563;
}

.orcamento-info-list li + li {
    margin-top: 4px;
}

.orcamento-whatsapp-btn {
    margin-top: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-inline: 24px;
}

.orcamento-map-wrapper {
    margin-top: 24px;
}

.orcamento-form-wrapper {
    margin-top: 34px;
}

.orcamento-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.orcamento-form-subtitle {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .orcamento-top-grid {
        grid-template-columns: 1fr;
    }
    .orcamento-map-wrapper {
        margin-top: 0;
    }
}


/* Layout: garantir que o footer fique sempre no final da tela */
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.section-title{
    position:relative;
    display:inline-block;
}
.section-title::after{
    content:"";
    display:block;
    height:4px;
    width:54px;
    border-radius:999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    margin-top:10px;
}


/* ===== Admin - Gerenciar Galeria (grid + modal + filtros) ===== */
.admin-filter-bar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin: 8px 0 16px;
}
.admin-filter-form{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:flex-end;
}
.admin-filter-form .field{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width: 180px;
}
.admin-filter-form label{
  font-size: .85rem;
  color: var(--text-muted);
}
.admin-filter-form input{
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 0 12px;
  background: #fff;
  color: var(--text-main);
}
.admin-filter-form .actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:nowrap;
}

/* garante que <a> com classes de botão não fique sublinhado */
.admin-filter-form .actions a.btn-primary,
.admin-filter-form .actions a.btn-outline,
.admin-filter-form .actions a.btn-ghost {
  text-decoration:none;
}
.admin-filter-meta{
  display:flex;
  gap:16px;
  align-items:center;
  font-size:.9rem;
  color: var(--text-muted);
}

.admin-gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:16px;
  margin-top: 10px;
}

.admin-gallery-card{
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  min-height: 260px;
}

.admin-gallery-card .thumb{
  height: 160px;
  background: #f2f4f8;
  overflow:hidden;
}
.admin-gallery-card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.admin-gallery-card .card-body{
  padding: 12px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
}
.admin-gallery-card .title{
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.admin-gallery-card .meta{
  font-size: .82rem;
  color: var(--text-muted);
}
.admin-gallery-card .card-actions{
  margin-top:auto;
  display:flex;
  gap:8px;
}
.btn-sm{
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: .85rem;
}
.btn-outline{
  background: #fff;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}
.btn-outline:hover{
  border-color: rgba(0,0,0,0.18);
}
.btn-ghost{
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}
.btn-ghost:hover{
  background: rgba(0,0,0,0.03);
}
.is-disabled{
  opacity: .45;
  pointer-events:none;
}

.admin-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 6px;
}
.admin-pagination .pages{
  display:flex;
  gap:8px;
  align-items:center;
}
.admin-pagination .page{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  text-decoration:none;
  font-size: .9rem;
  background: #fff;
}
.admin-pagination .page.is-active{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
  font-weight:700;
}

/* Modal Visualizar */
body.modal-open{ overflow:hidden; }
.cw-modal{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.65);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 16px;
  z-index: 9999;
}
.cw-modal.open{ display:flex; }
.cw-modal-content{
  width: min(980px, 100%);
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}
.cw-modal-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cw-modal-body{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 18px 14px;
  background: radial-gradient(circle at top left, #1b2335 0%, #ffffff 55%, #f6f7fa 100%);
}
.cw-modal-img{
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
}
.cw-modal-nav{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.cw-modal-footer{
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border-soft);
}
.cw-modal-title{
  font-weight:800;
  color: var(--text-main);
  margin-bottom: 2px;
}
.cw-modal-meta{
  color: var(--text-muted);
  font-size: .9rem;
}

@media (max-width: 600px){
  .admin-filter-form .field{ min-width: 150px; }
  .cw-modal-body{ padding: 12px 10px; }
  .cw-modal-nav{ width: 42px; height: 42px; }
}

/* =========================
   LOGIN (área restrita)
   ========================= */
.login-wrap{
  min-height: calc(100vh - 140px); /* header+footer aproximado */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 36px 16px 60px;
}

.login-card{
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--border-soft, #e6e9f0);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  padding: 18px 18px 16px;
}

.login-card h1{
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.1;
}

.login-card p{
  margin: 0 0 14px;
  color: #6b7280;
}

.login-form{
  display: grid;
  gap: 12px;
}

.login-field label{
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.login-field input{
  width: 100%;
  display: block;
  height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-soft, #e6e9f0);
  background: #fff;
  color: #111827;
  outline: none;
}

.login-field input:focus{
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.login-actions{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.login-actions button{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
}

.login-tip{
  margin-top: 10px;
  font-size: 0.92rem;
  color: #6b7280;
}


/* =====================
   Dashboard (Área restrita)
   ===================== */
.dash-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin: 8px 0 18px;
}
.dash-title{margin:0; font-size:1.6rem;}
.dash-sub{margin:6px 0 0; color: var(--text-soft);} 
.dash-actions{display:flex; gap:10px; flex-wrap:wrap;}

.dash-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap:16px;
}
@media (max-width: 900px){
  .dash-grid{grid-template-columns: repeat(2, minmax(220px, 1fr));}
}
@media (max-width: 560px){
  .dash-grid{grid-template-columns: 1fr;}
}

.dash-card{
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
}
.dash-card-top{display:flex; align-items:center; justify-content:space-between; gap:12px;}
.dash-card-title{margin:0; font-size:1.05rem;}
.dash-card-count{font-weight:800; font-size:1.1rem; color: var(--accent);} 
.dash-card-desc{margin:10px 0 14px; color:var(--text-soft); font-size:0.92rem;}
.dash-card-actions{display:flex; gap:10px; flex-wrap:wrap;}

.btn.btn-outline{
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}
.btn.btn-outline:hover{
  background: rgba(15, 23, 42, 0.04);
}

/* =========================
   ADMIN (Área restrita)
   ========================= */

.page-wrapper { width: 100%; }
.section-padding { padding: 28px 0 50px; }

.page-header-admin{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.page-header-admin h1{ margin:0; font-size:2rem; }
.page-header-admin p{ margin:6px 0 0; color:#6b7280; }
.link-voltar{ color:#2563eb; text-decoration:none; font-weight:600; }
.link-voltar:hover{ text-decoration:underline; }

.admin-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow:0 14px 30px rgba(15,23,42,.08);
  overflow:hidden;
}

.admin-card-header{
  padding:16px 18px;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:linear-gradient(180deg, rgba(59,130,246,.10), rgba(255,255,255,0));
}
.admin-card-header h2{ margin:0; font-size:1.1rem; }

.admin-card-body{ padding:18px; }

.admin-form{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 16px;
}
.admin-form .form-row{ display:flex; flex-direction:column; gap:6px; }
.admin-form .form-row label{ font-weight:600; color:#111827; font-size:.92rem; }

.admin-form input,
.admin-form textarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.14);
  outline:none;
  background:#fff;
  font-size:.95rem;
}
.admin-form textarea{ resize:vertical; min-height:92px; }

.admin-form input:focus,
.admin-form textarea:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow:0 0 0 4px rgba(59,130,246,.18);
}

.admin-form .form-row:last-of-type{
  grid-column: 1 / -1; /* observações ocupa duas colunas */
}

.btn-primary{
  grid-column: 1 / -1;
  justify-self:flex-start;
  background:#1d4ed8;
  color:#fff;
  border:none;
  padding:11px 16px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(29,78,216,.25);
}
.btn-primary:hover{ filter:brightness(1.05); }

.table-responsive{ width:100%; overflow:auto; }
.admin-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
}
.admin-table thead th{
  background:rgba(15,23,42,.04);
  text-align:left;
  padding:12px 12px;
  font-size:.9rem;
  color:#111827;
  border-bottom:1px solid rgba(15,23,42,.10);
  white-space:nowrap;
}
.admin-table tbody td{
  padding:12px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
  color:#111827;
  vertical-align:top;
}
.admin-table tbody tr:hover{ background:rgba(59,130,246,.06); }
.admin-table tbody tr:last-child td{ border-bottom:none; }

.btn-link{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  color:#1d4ed8;
  font-weight:700;
  text-decoration:none;
  margin-right:10px;
}
.btn-link:hover{ text-decoration:underline; }
.btn-danger{ color:#dc2626; }

.alert{
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(220,38,38,.25);
  background:rgba(220,38,38,.08);
  color:#7f1d1d;
}

/* Responsivo */
@media (max-width: 840px){
  .page-header-admin{ align-items:flex-start; flex-direction:column; }
  .admin-form{ grid-template-columns:1fr; }
  .btn-primary{ width:100%; text-align:center; }
}

/* Marca do topo (logo + textos) */
.brand{
  display:flex;
  align-items:center;
  gap:10px;              /* <- aproxima texto da logo */
  text-decoration:none;
}

.brand-logo{
  height:44px;           /* ajuste se quiser */
  width:auto;
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;      /* deixa mais “colado” */
  margin:0;              /* garante sem afastamento */
  padding:0;
}

.brand-title{
  margin:0;
  padding:0;
}

.brand-subtitle{
  margin:2px 0 0;        /* bem pequeno */
  padding:0;
  opacity:.75;
  font-size:.9rem;
}

.brand,
.brand-text{
  margin-left:0 !important;
}


/* =========================
   FIX: Aproximar texto da logo (Calhas Werner)
   - remove “espaçamento fantasma” causado por largura fixa no wrapper
   ========================= */
.topbar .logo{
  gap: 8px !important; /* ajuste fino: diminui distância entre logo e textos */
}

.topbar .logo-img-wrapper{
  width: auto !important;       /* remove largura fixa que empurrava o texto */
  max-width: none !important;
  max-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.topbar .logo-img{
  height: 44px !important;      /* mantém proporcional e alinhado */
  width: auto !important;
  display: block !important;
}

@media (max-width: 768px){
  .topbar .logo-img{ height: 40px !important; }
}



.dash-groups{display:grid; gap:24px;}
.dash-group{background:#fff; border:1px solid rgba(15,23,42,.08); border-radius:22px; padding:22px; box-shadow:0 10px 30px rgba(15,23,42,.06);}
.dash-group-head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid rgba(15,23,42,.08);}
.dash-group-head h2{margin:0; font-size:1.15rem; color:var(--text);}
.dash-group-head p{margin:6px 0 0; color:var(--text-soft); font-size:.95rem;}


/* Dashboard visual */
.dashboard-hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 55%, #38bdf8 100%);
    color:#fff;
    border-radius:24px;
    padding:28px;
    margin-bottom:24px;
    box-shadow:var(--shadow-lg);
}
.dashboard-hero h2{font-size:1.8rem;margin:8px 0;}
.dashboard-hero p{max-width:680px;color:rgba(255,255,255,.88);}
.dashboard-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    font-size:.82rem;
    font-weight:600;
}
.dashboard-hero-actions{display:flex;gap:12px;flex-wrap:wrap;}
.btn-secondary{
    display:inline-flex;align-items:center;justify-content:center;
    border:1px solid rgba(255,255,255,.35);
    color:#fff;text-decoration:none;border-radius:14px;
    padding:12px 18px;background:rgba(255,255,255,.08);font-weight:600;
}
.btn-secondary:hover{background:rgba(255,255,255,.14);}

.stats-color-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:16px;
    margin-bottom:24px;
}
.stats-color-card{
    padding:22px;
    border-radius:22px;
    color:#fff;
    box-shadow:var(--shadow-md);
    position:relative;
    overflow:hidden;
}
.stats-color-card::after{
    content:"";
    position:absolute;
    inset:auto -20px -30px auto;
    width:120px;height:120px;border-radius:50%;
    background:rgba(255,255,255,.10);
}
.stats-color-card.blue{background:linear-gradient(135deg,#2563eb,#38bdf8);}
.stats-color-card.green{background:linear-gradient(135deg,#16a34a,#4ade80);}
.stats-color-card.orange{background:linear-gradient(135deg,#ea580c,#fb923c);}
.stats-color-card.purple{background:linear-gradient(135deg,#7c3aed,#a78bfa);}
.stats-color-icon{font-size:1.5rem;margin-bottom:12px;}
.stats-color-number{font-size:2rem;font-weight:700;line-height:1;}
.stats-color-label{margin-top:8px;font-size:1rem;font-weight:600;}
.stats-color-card small{display:block;margin-top:6px;color:rgba(255,255,255,.86);}

.dashboard-main-grid{
    display:grid;
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:18px;
}
.dashboard-panel{
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:24px;
    padding:22px;
    box-shadow:var(--shadow-md);
    min-height:220px;
}
.span-12{grid-column:span 12;}
.span-7{grid-column:span 7;}
.span-5{grid-column:span 5;}
.panel-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:flex-start;
    margin-bottom:18px;
}
.panel-head h3{margin:0 0 4px 0;font-size:1.15rem;}
.panel-head p{color:var(--text-muted);font-size:.92rem;}
.panel-chip{
    background:rgba(29,78,216,.08);
    color:var(--accent);
    border-radius:999px;
    padding:8px 12px;
    font-size:.78rem;
    font-weight:700;
    white-space:nowrap;
}
.panel-chip.warm{background:rgba(234,88,12,.08);color:#c2410c;}

.os-day-board{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
}
.os-day-card{
    border:1px solid var(--border-soft);
    border-radius:18px;
    padding:16px;
    background:#f8fbff;
}
.os-day-top{
    display:flex;
    justify-content:space-between;
    gap:8px;
    margin-bottom:10px;
}
.os-day-card h4{margin:0 0 8px;font-size:1rem;}
.os-day-card p{margin:0 0 6px;color:var(--text-muted);font-size:.92rem;}
.os-day-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px;}
.os-day-actions a,.next-item{
    text-decoration:none;
}
.status-badge{
    display:inline-flex;align-items:center;justify-content:center;
    border-radius:999px;padding:6px 10px;font-size:.72rem;font-weight:700;
}
.status-os{background:rgba(22,163,74,.12);color:#166534;}

.next-list{display:flex;flex-direction:column;gap:10px;}
.next-item{
    display:flex;justify-content:space-between;gap:14px;
    border:1px solid var(--border-soft);
    border-radius:16px;padding:12px 14px;background:#fbfdff;color:var(--text-main);
}
.next-item strong{display:block;}
.next-item span,.next-item small{color:var(--text-muted);}
.empty-state-small{
    border:1px dashed var(--border-soft);
    border-radius:18px;
    padding:18px;
    color:var(--text-muted);
    background:#fbfdff;
}

.mini-calendar-header,
.mini-calendar-grid{
    display:grid;
    grid-template-columns:repeat(7,minmax(0,1fr));
    gap:10px;
}
.mini-calendar-header{margin-bottom:10px;}
.mini-calendar-header div{
    text-align:center;font-weight:700;color:var(--text-muted);font-size:.85rem;
}
.mini-day{
    min-height:94px;
    border:1px solid var(--border-soft);
    border-radius:18px;
    padding:10px;
    text-decoration:none;
    color:var(--text-main);
    background:#fbfdff;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.mini-day:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);}
.mini-day.empty{background:transparent;border-style:dashed;pointer-events:none;}
.mini-day.today{border-color:var(--accent);box-shadow:0 0 0 3px rgba(29,78,216,.12);}
.mini-day.has-events{background:linear-gradient(180deg,#eff6ff 0%, #ffffff 100%);}
.mini-day-number{font-weight:700;font-size:1rem;}
.mini-day-count{font-size:.8rem;color:var(--accent);font-weight:600;}
.mini-day-count.muted{color:var(--text-muted);font-weight:500;}

@media (max-width: 980px){
    .span-7,.span-5,.span-12{grid-column:span 12;}
    .dashboard-hero{flex-direction:column;align-items:flex-start;}
}
@media (max-width: 640px){
    .mini-calendar-header,.mini-calendar-grid{gap:6px;}
    .mini-day{min-height:78px;padding:8px;border-radius:14px;}
    .dashboard-panel{padding:16px;border-radius:18px;}
    .stats-color-card{padding:18px;border-radius:18px;}
    .dashboard-hero{padding:20px;border-radius:18px;}
}


.stats-color-card.teal{background:linear-gradient(135deg,#0f766e,#2dd4bf);}
.panel-chip.success{background:rgba(22,163,74,.10);color:#166534;}

.dashboard-alert{
    background:linear-gradient(135deg,#fff7ed 0%, #ffedd5 100%);
    border:1px solid rgba(234,88,12,.20);
    border-radius:22px;
    padding:20px;
    margin-bottom:22px;
    box-shadow:var(--shadow-md);
}
.dashboard-alert-head{
    display:flex;
    justify-content:space-between;
    gap:16px;
    align-items:flex-start;
    margin-bottom:14px;
}
.dashboard-alert-head strong{display:block;margin-bottom:4px;color:#9a3412;}
.dashboard-alert-head p{color:#9a3412;opacity:.9;}
.dashboard-alert-count{
    background:#ea580c;
    color:#fff;
    border-radius:999px;
    padding:8px 12px;
    font-size:.8rem;
    font-weight:700;
}
.dashboard-alert-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:12px;
}
.dashboard-alert-item{
    display:flex;
    justify-content:space-between;
    gap:14px;
    align-items:center;
    text-decoration:none;
    color:var(--text-main);
    background:rgba(255,255,255,.76);
    border:1px solid rgba(234,88,12,.16);
    border-radius:16px;
    padding:12px 14px;
}
.dashboard-alert-item span,
.dashboard-alert-item small{color:#9a3412;}

.chart-wrap{
    position:relative;
    min-height:260px;
}
.ranking-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.ranking-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    border:1px solid var(--border-soft);
    background:#fbfdff;
    border-radius:16px;
    padding:12px 14px;
}
.ranking-left{
    display:flex;
    align-items:center;
    gap:12px;
}
.ranking-pos{
    width:32px;
    height:32px;
    border-radius:999px;
    background:rgba(29,78,216,.10);
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex:0 0 32px;
}
.ranking-left strong{display:block;}
.ranking-left small{color:var(--text-muted);}
.ranking-value{
    font-weight:700;
    color:var(--text-main);
}
.os-day-board.compact{
    grid-template-columns:1fr;
}


/* Perfis de acesso */
.access-layout{display:grid;grid-template-columns:280px 1fr;gap:20px;align-items:start;}
.access-sidebar{position:sticky;top:16px;}
.profile-list{display:flex;flex-direction:column;gap:8px;}
.profile-list-item{display:flex;justify-content:space-between;gap:10px;align-items:center;text-decoration:none;color:var(--text-main,#111827);border:1px solid #d8dfeb;border-radius:14px;padding:12px;background:#fff;}
.profile-list-item.active{border-color:#1d4ed8;background:#eff6ff;}
.profile-list-item small{color:#64748b;}
.form-grid-2{display:grid;grid-template-columns:1fr 220px;gap:16px;align-items:end;}
.checkline{display:flex;align-items:center;gap:8px;border:1px solid #d8dfeb;border-radius:12px;padding:11px 12px;background:#fff;}
.permission-table-wrap{overflow:auto;border:1px solid #e2e8f0;border-radius:16px;}
.permission-table{min-width:920px;}
.permission-table input[type="checkbox"]{width:18px;height:18px;}
.btn-danger{display:inline-flex;align-items:center;justify-content:center;border:0;border-radius:12px;padding:11px 16px;background:#dc2626;color:#fff;text-decoration:none;font-weight:700;cursor:pointer;}
.btn-danger:hover{background:#b91c1c;}
@media(max-width:900px){.access-layout{grid-template-columns:1fr}.access-sidebar{position:static}.form-grid-2{grid-template-columns:1fr}}


/* ===== Área restrita: navegação moderna ===== */
.admin-topbar{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.96);backdrop-filter:blur(16px);border-bottom:1px solid #e5e7eb;box-shadow:0 8px 30px rgba(15,23,42,.06)}
.cw-admin-site>.public-topbar{position:sticky;top:0;z-index:1200;display:block!important}
.cw-admin-site>.public-topbar .header-content{min-height:76px}
.admin-secondarybar{position:sticky;top:76px;z-index:1150;display:block!important;border-top:1px solid #eef2f7;background:#f8fafc}
.admin-secondary-content{min-height:64px!important;justify-content:center;position:relative}.admin-secondarybar .admin-nav{justify-content:center}.admin-secondarybar .admin-user-menu{margin-left:18px}.admin-menu-toggle{width:auto!important;gap:8px;color:#334155;font:600 14px Poppins,sans-serif}
.profile-card{padding:0!important;overflow:visible}.profile-form{padding:30px 32px 32px}.profile-fields{display:grid;grid-template-columns:1fr;gap:20px}.profile-field{display:flex;flex-direction:column;gap:8px}.profile-field label{font-weight:700;color:#1e293b;font-size:.94rem}.profile-field input{display:block;width:100%;min-height:48px;padding:11px 14px;border:1px solid #cbd5e1;border-radius:12px;background:#fff;color:#0f172a;font:inherit;box-sizing:border-box;transition:.2s ease}.profile-field input:disabled{background:#f1f5f9;color:#64748b}.profile-field input:focus{outline:0;border-color:#38bdf8;box-shadow:0 0 0 4px rgba(56,189,248,.16)}.profile-password-section{margin-top:30px;padding-top:26px;border-top:1px solid #e2e8f0}.profile-password-section h2{margin:0 0 7px;font-size:1.45rem}.profile-password-section>p{margin:0 0 22px;color:#64748b}.profile-actions{display:flex;margin-top:30px;padding-top:24px;border-top:1px solid #eef2f7}.profile-actions .btn-primary{display:inline-flex;align-items:center;gap:9px;min-height:46px;padding:12px 20px;text-decoration:none;cursor:pointer}
.admin-backbar{padding-top:16px}.admin-back-button{display:inline-flex;align-items:center;gap:8px;padding:9px 14px;border:1px solid #cbd5e1;border-radius:12px;background:#fff;color:#334155;text-decoration:none;font-weight:700;box-shadow:0 5px 16px rgba(15,23,42,.06);transition:.2s ease}.admin-back-button:hover{border-color:#38bdf8;color:#0369a1;transform:translateY(-1px)}
.admin-topbar .header-content{min-height:76px;gap:22px}.admin-topbar .logo{text-decoration:none;flex-shrink:0}.admin-topbar .logo-subtitle{color:#64748b}
.admin-nav{display:flex;align-items:center;justify-content:flex-end;gap:6px;flex:1}.admin-nav-link,.admin-menu-trigger{height:44px;border:0;background:transparent;border-radius:13px;padding:0 13px;display:flex;align-items:center;gap:9px;color:#334155;font:600 14px/1 Poppins,sans-serif;text-decoration:none;cursor:pointer;transition:.2s ease;white-space:nowrap}
.admin-nav-link:hover,.admin-menu-trigger:hover,.admin-nav-link.active,.admin-menu-group.active>.admin-menu-trigger{background:#eff6ff;color:#0369a1}.admin-menu-group{position:relative}.admin-menu-trigger .caret{font-size:10px;transition:transform .2s}.admin-menu-group.open>.admin-menu-trigger .caret{transform:rotate(180deg)}
.admin-submenu{position:absolute;top:calc(100% + 10px);left:0;width:290px;padding:10px;background:#fff;border:1px solid #e2e8f0;border-radius:18px;box-shadow:0 22px 55px rgba(15,23,42,.16);opacity:0;visibility:hidden;transform:translateY(-7px);transition:.18s ease;z-index:1100}
.admin-menu-group.open>.admin-submenu,.admin-menu-group:hover>.admin-submenu{opacity:1;visibility:visible;transform:translateY(0)}.admin-submenu-wide{width:620px;display:grid;grid-template-columns:1fr 1fr;gap:4px}.admin-submenu-right{left:auto;right:0;width:250px}
.admin-submenu a{display:flex;align-items:center;gap:12px;padding:11px;border-radius:13px;color:#334155;text-decoration:none;transition:.18s}.admin-submenu a:hover{background:#f0f9ff;color:#0369a1;transform:translateX(2px)}.admin-submenu a>i{width:34px;height:34px;border-radius:10px;background:#f1f5f9;display:grid;place-items:center;flex:0 0 34px}.admin-submenu a span{display:flex;flex-direction:column;gap:3px}.admin-submenu a strong{font-size:13px}.admin-submenu a small{font-size:11px;color:#64748b;font-weight:500}.admin-user-menu{margin-left:6px;padding-left:10px;border-left:1px solid #e2e8f0}.user-trigger{padding:0 8px}.user-avatar{width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(135deg,#0284c7,#0f766e);color:#fff;font-weight:800}.user-name{max-width:110px;overflow:hidden;text-overflow:ellipsis}.logout-link{color:#b91c1c!important}
.logout-form{margin:0}.logout-form .logout-link{width:100%;display:flex;align-items:center;gap:12px;padding:11px;border:0;border-radius:13px;background:transparent;text-align:left;font:inherit;cursor:pointer}.logout-form .logout-link:hover{background:#fef2f2}.logout-form .logout-link>i{width:34px;height:34px;border-radius:10px;background:#f1f5f9;display:grid;place-items:center;flex:0 0 34px}.logout-form .logout-link span{display:flex;flex-direction:column;gap:3px}.logout-form .logout-link small{font-size:11px;color:#64748b;font-weight:500}
.admin-owner-logout .logout-link{height:44px;width:auto;padding:0 13px;font:600 14px/1 Poppins,sans-serif}.admin-owner-logout .logout-link>i{width:auto;height:auto;background:transparent;display:inline}
@media(max-width:1100px){.admin-nav .admin-menu-trigger span:not(.user-avatar),.admin-nav-link span{display:none}.admin-submenu a span{display:flex!important}.admin-submenu-wide{width:560px}}
@media(max-width:820px){.cw-admin-site>.public-topbar .header-content{min-height:68px}.admin-secondarybar{top:68px}.admin-topbar .header-content{min-height:58px}.admin-topbar .menu-toggle{display:flex}.admin-nav{position:absolute;top:calc(100% + 8px);left:12px;right:12px;max-height:calc(100vh - 150px);overflow:auto;display:none;flex-direction:column;align-items:stretch;padding:12px;background:#fff;border:1px solid #e2e8f0;border-radius:20px;box-shadow:0 25px 60px rgba(15,23,42,.2)}.admin-nav.open{display:flex}.admin-nav-link,.admin-menu-trigger{width:100%;justify-content:flex-start;height:48px}.admin-owner-logout,.admin-owner-logout .logout-link{width:100%}.admin-nav .admin-menu-trigger span:not(.user-avatar),.admin-nav-link span{display:inline}.admin-menu-group,.admin-user-menu{width:100%;margin:0;padding:0;border:0}.admin-submenu,.admin-submenu-wide,.admin-submenu-right{position:static;width:100%;display:none;grid-template-columns:1fr;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;background:#f8fafc;margin-top:4px}.admin-menu-group.open>.admin-submenu{display:grid}.admin-menu-group:hover>.admin-submenu:not(:where(.admin-menu-group.open>*)){display:none}.admin-submenu a{padding-left:16px}.user-name{display:inline!important}.admin-secondary-content{justify-content:flex-end}.profile-form{padding:24px 20px}.profile-fields{gap:17px}.profile-password-section{margin-top:26px;padding-top:22px}.profile-actions{margin-top:24px;padding-top:20px}.profile-actions .btn-primary{width:100%;justify-content:center}}

/* ===== Ajustes móveis exclusivos da área administrativa ===== */
@media(max-width:640px){
  .cw-admin-site .admin-filter-bar,
  .cw-admin-site .admin-filter-form{width:100%;min-width:0;max-width:100%;align-items:stretch}
  .cw-admin-site .admin-filter-form .field{width:100%;min-width:0;max-width:100%}
  .cw-admin-site .admin-filter-form input,
  .cw-admin-site .admin-filter-form select{width:100%;max-width:100%;min-width:0;box-sizing:border-box}
  .cw-admin-site .admin-filter-form .actions{width:100%;flex-wrap:wrap}
  .cw-admin-site .admin-filter-form .actions>*{flex:1 1 120px;text-align:center;justify-content:center}
  .cw-admin-site .admin-gallery-grid,
  .cw-admin-site .dashboard-alert-list{grid-template-columns:minmax(0,1fr)}
  .cw-admin-site .dashboard-alert-head,
  .cw-admin-site .ranking-item,
  .cw-admin-site .ranking-left,
  .cw-admin-site .ranking-left>div{min-width:0}
  .cw-admin-site .ranking-left>div{overflow-wrap:anywhere}
  .cw-admin-site .table-responsive,
  .cw-admin-site .permission-table-wrap{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
}
/* JL_SOLUCOES_PUBLIC_SAAS_20260728
   Site institucional do projeto anexado, isolado das classes da área restrita. */
:root{--jl-red:#e30613;--jl-red-dark:#b6040f;--jl-ink:#111827;--jl-muted:#64748b;--jl-border:#e2e8f0;--jl-bg:#f7f8fb}
.jl-public-site{background:var(--jl-bg);color:var(--jl-ink)}
.jl-topbar{position:sticky;top:0;z-index:1100;background:#fff;border-bottom:3px solid var(--jl-red);box-shadow:0 8px 24px rgba(15,23,42,.06)}
.jl-header-content{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.jl-brand{display:flex;align-items:center;color:var(--jl-ink);text-decoration:none;min-width:310px}
.jl-brand-logo{display:block;width:310px;height:auto;max-height:68px}
.jl-main-nav{display:flex;align-items:center;gap:25px}.jl-main-nav a{color:#334155;text-decoration:none;font-size:14px;font-weight:600;transition:.2s}.jl-main-nav a:hover{color:var(--jl-red)}
.jl-main-nav .jl-restricted-link{padding:11px 17px;border-radius:12px;background:var(--jl-red);color:#fff;box-shadow:0 8px 20px rgba(227,6,19,.2)}.jl-main-nav .jl-restricted-link:hover{background:var(--jl-red-dark);color:#fff}
.jl-menu-toggle{display:none;border:1px solid var(--jl-border);background:#fff;border-radius:10px;width:44px;height:44px;font-size:20px}
.jl-hero{min-height:620px;display:grid;grid-template-columns:1.08fr .92fr;align-items:center;gap:58px;padding-top:70px;padding-bottom:70px}
.jl-eyebrow,.jl-page-hero>span,.jl-section-heading>span,.jl-cta span{display:inline-block;text-transform:uppercase;letter-spacing:.12em;font-weight:800;font-size:12px;color:var(--jl-red)}
.jl-hero-copy h1{font-size:clamp(42px,5vw,68px);line-height:1.05;letter-spacing:-.045em;margin:18px 0}.jl-hero-copy p{max-width:690px;font-size:18px;line-height:1.75;color:var(--jl-muted)}
.jl-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.jl-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:0;border-radius:999px;padding:13px 22px;text-decoration:none;font:inherit;font-weight:800;cursor:pointer}.jl-btn.primary{background:var(--jl-red);color:#fff;box-shadow:0 10px 24px rgba(227,6,19,.22)}.jl-btn.primary:hover{background:var(--jl-red-dark);color:#fff}.jl-btn.secondary{background:#fff;color:var(--jl-ink);border:1px solid var(--jl-border)}.jl-btn.light{background:#fff;color:var(--jl-ink)}
.jl-hero-card,.jl-card,.jl-form-card,.jl-contact-card{background:#fff;border:1px solid var(--jl-border);border-radius:24px;box-shadow:0 18px 50px rgba(15,23,42,.08)}
.jl-hero-card{padding:38px;border-left:7px solid var(--jl-red)}.jl-hero-card h2{font-size:30px;line-height:1.2;margin:14px 0}.jl-hero-card p{color:var(--jl-muted);line-height:1.7}.jl-hero-card ul{list-style:none;padding:0;margin:22px 0 0;display:grid;gap:12px}.jl-hero-card li{display:flex;align-items:center;gap:10px;font-weight:600}.jl-hero-card i{color:var(--jl-red)}
.jl-card-badge{display:inline-flex;padding:6px 11px;border-radius:999px;background:#fff0f1;color:var(--jl-red);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}
.jl-section{padding-top:74px;padding-bottom:74px}.jl-section-heading{max-width:680px;margin-bottom:32px}.jl-section-heading h2,.jl-page-hero h1{font-size:clamp(32px,4vw,48px);line-height:1.15;margin:10px 0}.jl-section-heading p,.jl-page-hero p{color:var(--jl-muted);font-size:17px;line-height:1.7}
.jl-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.jl-card{padding:27px}.jl-card>i{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;background:#fff0f1;color:var(--jl-red);font-size:20px}.jl-card h3{font-size:20px;margin:18px 0 9px}.jl-card p{color:var(--jl-muted);line-height:1.65}
.jl-cta{margin-top:30px;margin-bottom:80px;background:linear-gradient(135deg,#111 0%,#2b0b0e 100%);color:#fff;border-radius:28px;padding:38px 42px;display:flex;align-items:center;justify-content:space-between;gap:24px}.jl-cta h2{margin:6px 0 0;font-size:30px}.jl-cta span{color:#ff8088}
.jl-page-hero{padding-top:75px;padding-bottom:30px;max-width:900px;margin-left:auto;margin-right:auto;text-align:center}
.jl-case-list{display:grid;gap:18px;max-width:920px;margin:auto}.jl-case-list article{display:grid;grid-template-columns:70px 1fr;gap:20px;background:#fff;border:1px solid var(--jl-border);border-radius:22px;padding:28px}.jl-case-list article>span{font-size:34px;font-weight:800;color:var(--jl-red)}.jl-case-list h2{margin:0 0 8px;font-size:23px}.jl-case-list p{margin:0;color:var(--jl-muted);line-height:1.65}
.jl-contact-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:22px;padding-top:30px;padding-bottom:80px}.jl-contact-card,.jl-form-card{padding:28px}.jl-contact-card{height:max-content}.jl-contact-card h2{margin-top:0}.jl-contact-card p{color:var(--jl-muted);line-height:1.7}.jl-contact-card a{display:flex;gap:10px;align-items:center;color:var(--jl-red);font-weight:700;text-decoration:none;margin-top:18px}
.jl-form-card{display:grid;grid-template-columns:1fr 1fr;gap:16px}.jl-form-card label{display:flex;flex-direction:column;gap:7px;font-weight:700}.jl-form-card label:last-of-type,.jl-form-card .jl-alert,.jl-form-card button{grid-column:1/-1}.jl-form-card input,.jl-form-card textarea,.jl-contract-form input,.jl-contract-form select{width:100%;min-width:0;box-sizing:border-box;border:1px solid #cbd5e1;border-radius:12px;padding:12px 13px;font:inherit;background:#fff}.jl-form-card textarea{resize:vertical}.jl-alert{padding:13px 15px;border-radius:12px}.jl-alert.success{background:#dcfce7;color:#166534}.jl-alert.error{background:#fee2e2;color:#991b1b}
.jl-footer{background:#fff;border-top:3px solid var(--jl-red);padding:28px 0}.jl-footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:30px;font-size:13px}.jl-footer-grid>div{display:flex;flex-direction:column;gap:5px}.jl-footer a{color:var(--jl-red);text-decoration:none}.jl-footer span{color:var(--jl-muted)}
.jl-pricing{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;padding:30px 0 75px}.jl-plan{position:relative;background:#fff;border:1px solid var(--jl-border);border-radius:24px;padding:28px;display:flex;flex-direction:column;box-shadow:0 16px 45px rgba(15,23,42,.06)}.jl-plan.featured{border:2px solid var(--jl-red);transform:translateY(-8px)}.jl-plan-clickable{color:var(--jl-ink);text-decoration:none;cursor:pointer;transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease}.jl-plan-clickable:hover{transform:translateY(-11px) scale(1.012);border-color:var(--jl-red);box-shadow:0 26px 65px rgba(15,23,42,.16)}.jl-plan-clickable.featured:hover{transform:translateY(-13px) scale(1.012)}.jl-plan-clickable:focus-visible{outline:4px solid rgba(227,6,19,.22);outline-offset:4px;border-color:var(--jl-red)}.jl-plan-clickable .jl-btn{pointer-events:none}.jl-plan-ribbon{position:absolute;top:-13px;right:22px;background:var(--jl-red);color:#fff;border-radius:999px;padding:6px 12px;font-size:11px;font-weight:800}.jl-plan h2{font-size:25px;margin:8px 0}.jl-plan-price{font-size:40px;font-weight:800;letter-spacing:-.04em}.jl-plan-price small{font-size:13px;color:var(--jl-muted);font-weight:500}.jl-plan p{color:var(--jl-muted)}.jl-plan ul{list-style:none;padding:0;margin:20px 0 26px;display:grid;gap:11px;flex:1}.jl-plan li{display:flex;gap:9px}.jl-plan li i{color:var(--jl-red);margin-top:4px}
.jl-contract-wrap{max-width:820px;margin:38px auto 80px}.jl-contract-back-row{display:flex;justify-content:flex-start}.jl-contract-back-row .jl-product-back{margin-bottom:8px}.jl-contract-hero{padding-top:8px!important}.jl-contract-form{background:#fff;border:1px solid var(--jl-border);border-radius:24px;padding:28px;box-shadow:0 16px 45px rgba(15,23,42,.07)}.jl-contract-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.jl-contract-form label{display:flex;flex-direction:column;gap:7px;font-weight:700}.jl-contract-form .wide{grid-column:1/-1}.jl-contract-summary{background:#fff7f7;border:1px solid #fecdd3;border-radius:16px;padding:18px;margin-bottom:20px;display:flex;justify-content:space-between;gap:15px}
.cw-admin-site .admin-secondarybar{top:82px}
.jl-payment-methods{border:0;padding:0;margin:26px 0 16px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.jl-payment-methods legend{font-size:18px;font-weight:800;margin-bottom:12px}.jl-payment-option{position:relative;display:flex;align-items:center;gap:11px;text-align:left;border:1px solid #cbd5e1;border-radius:16px;background:#fff;padding:17px 15px;cursor:pointer;color:var(--jl-ink);transition:.2s}.jl-payment-option:hover,.jl-payment-option.selected{border-color:var(--jl-red);box-shadow:0 0 0 3px rgba(227,6,19,.08)}.jl-payment-option>i:first-child{font-size:22px;color:var(--jl-red)}.jl-payment-option span{display:flex;min-width:0;flex-direction:column;gap:3px}.jl-payment-option small{font-size:11px;color:var(--jl-muted)}.jl-payment-option .check{display:none;margin-left:auto;color:var(--jl-red)}.jl-payment-option.selected .check{display:block}
.jl-payment-preview{display:flex;align-items:center;gap:14px;border-radius:16px;background:#f8fafc;border:1px solid #e2e8f0;padding:16px}.jl-payment-preview>i{font-size:25px;color:var(--jl-red)}.jl-payment-preview span{display:flex;flex-direction:column;gap:4px}.jl-payment-preview small{color:var(--jl-muted);line-height:1.45}.jl-terms-line{margin-top:20px!important;display:flex!important;flex-direction:row!important;align-items:flex-start;gap:10px!important;font-weight:600!important;line-height:1.5}.jl-terms-line input{width:18px!important;height:18px;flex:0 0 18px;margin-top:2px}.jl-terms-line a{color:var(--jl-red)}
.jl-card-modal{display:none;position:fixed;inset:0;z-index:5000}.jl-card-modal.open{display:grid;place-items:center}.jl-card-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.62);backdrop-filter:blur(4px)}.jl-card-modal-panel{position:relative;z-index:1;width:min(92vw,480px);box-sizing:border-box;background:#fff;border-radius:24px;padding:30px;box-shadow:0 25px 80px rgba(15,23,42,.3)}.jl-card-modal-panel h2{margin:13px 0 7px}.jl-card-modal-panel>p{color:var(--jl-muted);line-height:1.55}.jl-modal-close{position:absolute;top:14px;right:15px;width:38px;height:38px;border:0;border-radius:50%;background:#f1f5f9;font-size:24px;cursor:pointer}.jl-card-choice{width:100%;display:flex;align-items:center;gap:13px;border:1px solid #dbe2ec;background:#fff;border-radius:15px;padding:16px;margin-top:10px;text-align:left;cursor:pointer}.jl-card-choice:hover{border-color:var(--jl-red);background:#fff7f7}.jl-card-choice>i{font-size:22px;color:var(--jl-red)}.jl-card-choice span{display:flex;flex-direction:column;gap:3px}.jl-card-choice small{color:var(--jl-muted)}
.jl-payment-result{display:block}.jl-payment-placeholder{display:flex;align-items:center;gap:20px;background:#f8fafc;border:1px solid #dbe2ec;border-radius:18px;padding:22px;margin:22px 0}.jl-payment-placeholder>i{font-size:42px;color:var(--jl-red)}.jl-payment-placeholder p{color:var(--jl-muted);margin:6px 0 0;line-height:1.55}.jl-qr-placeholder{width:118px;height:118px;flex:0 0 118px;border:2px dashed #94a3b8;border-radius:13px;display:grid;place-items:center;background:#fff}.jl-qr-placeholder i{font-size:45px;color:var(--jl-red)}.payment-waiting{background:#fff7ed;color:#9a3412;margin:18px 0}
.jl-solutions-hero{padding-top:78px;padding-bottom:42px;max-width:920px;text-align:center}.jl-solutions-hero h1{font-size:clamp(38px,5vw,62px);line-height:1.08;letter-spacing:-.04em;margin:16px 0}.jl-solutions-hero p{max-width:760px;margin:auto;color:var(--jl-muted);font-size:18px;line-height:1.7}
.jl-solutions-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding-bottom:46px}.jl-solution-card{background:#fff;border:1px solid var(--jl-border);border-radius:28px;overflow:hidden;box-shadow:0 18px 55px rgba(15,23,42,.08);transition:transform .25s,box-shadow .25s}.jl-solution-card:hover{transform:translateY(-5px);box-shadow:0 26px 70px rgba(15,23,42,.13)}.jl-solution-visual{height:190px;position:relative;display:grid;place-items:center;background:linear-gradient(135deg,#111827,#293044);color:#fff;overflow:hidden}.solution-triagem .jl-solution-visual{background:linear-gradient(135deg,#7f1d1d,#e30613)}.jl-solution-visual:after{content:"";position:absolute;width:190px;height:190px;border:35px solid rgba(255,255,255,.07);border-radius:50%;right:-55px;bottom:-95px}.jl-solution-visual>i{font-size:66px;position:relative;z-index:1}.jl-solution-number{position:absolute;left:24px;top:20px;font-size:13px;font-weight:800;letter-spacing:.14em;color:rgba(255,255,255,.7)}.jl-solution-status{position:absolute;right:20px;top:18px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.22);padding:6px 10px;border-radius:999px;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.jl-solution-content{padding:30px}.jl-solution-content h2{font-size:32px;margin:13px 0 8px}.jl-solution-content>p{color:var(--jl-muted);line-height:1.65;min-height:80px}.jl-solution-content ul{list-style:none;padding:0;margin:22px 0;display:grid;gap:11px}.jl-solution-content li{display:flex;gap:10px;font-size:14px;font-weight:600}.jl-solution-content li i{color:var(--jl-red);margin-top:4px}.jl-solution-actions{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:25px}.jl-text-link{color:var(--jl-ink);font-weight:800;text-decoration:none;font-size:13px}.jl-text-link i{margin-left:5px;color:var(--jl-red)}
.jl-solutions-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#dfe5ee;border:1px solid #dfe5ee;border-radius:23px;overflow:hidden;margin-bottom:80px}.jl-solutions-steps>div{background:#fff;padding:25px;display:grid;grid-template-columns:38px 1fr;column-gap:10px}.jl-solutions-steps span{grid-row:1/3;width:34px;height:34px;display:grid;place-items:center;border-radius:11px;background:#fff0f1;color:var(--jl-red);font-weight:800}.jl-solutions-steps strong{font-size:14px}.jl-solutions-steps small{color:var(--jl-muted);line-height:1.45;margin-top:4px}
.jl-product-hero{padding-top:55px;padding-bottom:20px;text-align:center;max-width:850px}.jl-product-back{display:inline-flex;align-items:center;gap:8px;color:var(--jl-muted);text-decoration:none;font-size:13px;font-weight:700;margin-bottom:28px}.jl-product-back:hover{color:var(--jl-red)}.jl-product-icon{width:76px;height:76px;display:grid;place-items:center;margin:0 auto 18px;border-radius:22px;background:linear-gradient(135deg,#111827,#e30613);color:#fff;font-size:31px;box-shadow:0 14px 35px rgba(227,6,19,.2)}.jl-product-hero h1{font-size:clamp(39px,5vw,58px);margin:13px 0 9px;letter-spacing:-.04em}.jl-product-hero p{color:var(--jl-muted);font-size:17px;line-height:1.7;max-width:720px;margin:auto}.jl-plan-help{margin-bottom:80px;background:#fff;border:1px solid var(--jl-border);border-radius:24px;padding:28px 32px;display:flex;align-items:center;justify-content:space-between;gap:20px}.jl-plan-help h2{margin:7px 0 0;font-size:25px}
@media(max-width:980px){.jl-main-nav{gap:14px}.jl-main-nav a{font-size:12px}.jl-hero{grid-template-columns:1fr;min-height:auto}.jl-grid-3,.jl-pricing{grid-template-columns:1fr 1fr}.jl-contact-grid{grid-template-columns:1fr}.jl-solutions-steps{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.jl-header-content{min-height:82px}.cw-admin-site .admin-secondarybar{top:82px}.jl-brand{min-width:0;max-width:calc(100% - 58px)}.jl-brand-logo{width:min(285px,100%);max-height:62px}.jl-menu-toggle{display:block;flex:0 0 44px}.jl-main-nav{display:none;position:absolute;left:0;right:0;top:82px;background:#fff;border-bottom:3px solid var(--jl-red);padding:16px 5%;flex-direction:column;align-items:stretch;gap:5px;box-shadow:0 16px 25px rgba(15,23,42,.12)}.jl-main-nav.open{display:flex}.jl-main-nav a{font-size:15px;padding:11px}.jl-main-nav .jl-restricted-link{text-align:center}.jl-hero{padding-top:48px;padding-bottom:45px;gap:30px}.jl-hero-copy h1{font-size:40px}.jl-hero-card{padding:25px}.jl-section{padding-top:50px;padding-bottom:50px}.jl-grid-3,.jl-pricing,.jl-form-card,.jl-contract-grid,.jl-payment-methods{grid-template-columns:1fr}.jl-plan.featured{transform:none}.jl-cta{margin:10px 12px 55px;padding:28px;flex-direction:column;align-items:flex-start}.jl-footer-grid{grid-template-columns:1fr}.jl-contact-grid{padding-left:12px;padding-right:12px}.jl-form-card label:last-of-type,.jl-form-card .jl-alert,.jl-form-card button,.jl-contract-form .wide{grid-column:auto}.jl-contract-summary{flex-direction:column}.jl-contract-form{padding:20px}.jl-payment-placeholder{align-items:flex-start;flex-direction:column}.jl-qr-placeholder{width:100%;height:180px;flex-basis:180px}}
@media(max-width:760px){.jl-solutions-hero{padding-top:50px}.jl-solutions-grid{grid-template-columns:1fr}.jl-solution-content>p{min-height:0}.jl-solutions-steps{grid-template-columns:1fr}.jl-solution-actions,.jl-plan-help{align-items:stretch;flex-direction:column}.jl-product-hero{padding-top:38px}}
@media(max-width:420px){.jl-header-content{min-height:76px}.cw-admin-site .admin-secondarybar{top:76px}.jl-brand-logo{width:min(238px,100%);max-height:54px}.jl-main-nav{top:76px}.jl-solution-content{padding:24px}.jl-solution-visual{height:165px}.jl-solutions-hero h1{font-size:36px}}
