/* ================================================================
   MOBILE.CSS — Omnisblue Compliance
   Responsividade Mobile-First complementar ao style.css

   BREAKPOINTS:
   ├── Small mobile  : ≤ 374px
   ├── Mobile padrão : 375px – 575px
   ├── Large mobile  : 576px – 767px
   └── Tablet        : 768px – 1023px (leve ajuste)

   REGRAS DE PRESERVAÇÃO:
   • Não modifica style.css nem admin.css — apenas complementa
   • Novas classes usam prefixo .mob-
   • Desktop ≥ 1024px permanece intocável
   • Integrações preservadas: chat PHP, n8n/Odoo, LGPD/CMP, GTM
   • Carregado APÓS style.css
   ================================================================ */


/* ================================================================
   SEÇÃO 1 — VARIÁVEIS MOBILE
   ================================================================ */
:root {
  --m-space-xs: 0.5rem;
  --m-space-sm: 1rem;
  --m-space-md: 1.5rem;
  --m-space-lg: 2rem;
  --m-space-xl: 3rem;
}


/* ================================================================
   SEÇÃO 2 — PREVENÇÃO DE SCROLL HORIZONTAL
   ================================================================ */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

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

  /* ctahero-image tem largura fixa em px — pode vazar em mobile */
  .ctahero-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
}


/* ================================================================
   SEÇÃO 3 — HEADER E MENU MOBILE
   ================================================================ */

@media (max-width: 1023px) {
  /* Header: padding menor para dar mais espaço ao conteúdo */
  .header-content {
    padding: 0.6rem 0;
  }

  .logo img {
    width: 140px;
    height: auto;
  }

  /* Hamburger: alvo de toque mínimo */
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  /* ── MENU MOBILE: overlay deslizante ── */
  .mobile-nav {
    /* Começa logo abaixo do header sticky */
    position: fixed;
    top: 66px; /* altura do header mobile (logo ~44px + padding 0.6rem×2 + border 1px) */
    left: 0;
    right: 0;
    bottom: 0;
    /* Acima dos botões flutuantes (z-index 9999) e abaixo do header (10001) */
    z-index: 10000;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /* Entra deslizando de cima */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;

    padding: 0 0 2rem;
    display: block !important;
  }

  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Header sempre acima do overlay */
  #header {
    z-index: 10001;
  }

  /* ── HOME LINK ── */
  .mnav-home-link {
    display: flex !important;
    align-items: center;
    padding: 1rem 1.25rem !important;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue, #072AC8) !important;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    min-height: 52px;
  }

  /* ── RESET DO display:flex HERDADO DO style.css EM .mobile-nav a ── */
  /* style.css aplica display:flex em todos os <a> do mobile-nav;
     os cards precisam ser block para o layout funcionar corretamente */
  .mnav-product-card,
  .mnav-addon-item,
  .mnav-service-card,
  .mnav-avulso-link {
    display: block !important;
    min-height: unset !important;
    padding: unset !important;
    font-size: unset !important;
    align-items: unset !important;
  }

  /* Módulos mantêm flex (têm ícone + texto lado a lado) */
  .mnav-module-item {
    display: flex !important;
    align-items: center !important;
    min-height: unset !important;
    padding: unset !important;
    font-size: unset !important;
  }

  /* ── SEÇÕES (Plataforma / Serviços) ── */
  .mnav-section {
    border-bottom: 1px solid #f1f5f9;
    padding: 0.75rem 0;
  }

  .mnav-section-label {
    display: block;
    padding: 0.25rem 1.25rem 0.6rem;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
  }

  /* ── CARDS DE PRODUTO (Omnis Suite, Omnis Business) ── */
  .mnav-product-card {
    display: block;
    margin: 0 1.25rem 0.6rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #f8faff;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
  }

  .mnav-product-card:hover,
  .mnav-product-card:active {
    background: #eff4ff;
    border-color: rgba(7, 42, 200, 0.25);
  }

  .mnav-product-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
  }

  .mnav-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #072AC8;
  }

  .mnav-product-badge {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 2px 10px;
  }

  .mnav-product-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
  }

  /* ── GRUPO OMNIS ONE ── */
  .mnav-product-group {
    margin: 0 1.25rem 0.6rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }

  .mnav-product-group-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid #f1f5f9;
  }

  /* ── MÓDULOS (Privacidade, Compliance, Due Diligence) ── */
  .mnav-module-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s;
  }

  .mnav-module-item:last-of-type {
    border-bottom: none;
  }

  .mnav-module-item:hover,
  .mnav-module-item:active {
    background: #f8faff;
  }

  .mnav-module-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
  }

  .mnav-module-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #072AC8;
  }

  .mnav-module-desc {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 1px;
  }

  /* ── ADD-ON (Background Check) ── */
  .mnav-addon-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    transition: background 0.15s;
  }

  .mnav-addon-item:hover,
  .mnav-addon-item:active {
    background: #eff4ff;
  }

  .mnav-addon-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2px;
  }

  .mnav-addon-badge {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 1px 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* ── SERVIÇO CARDS (Basic, Professional, Enterprise) ── */
  .mnav-service-card {
    display: block;
    margin: 0 1.25rem 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
  }

  .mnav-service-card:hover,
  .mnav-service-card:active {
    background: #f8faff;
    border-color: rgba(7, 42, 200, 0.2);
  }

  .mnav-service-card.popular {
    border-color: rgba(7, 42, 200, 0.35);
    background: #f0f5ff;
  }

  .mnav-service-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
  }

  .mnav-service-name {
    font-size: 15px;
    font-weight: 700;
    color: #03045E;
  }

  .mnav-service-badge {
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    padding: 2px 10px;
  }

  .mnav-service-badge.outline {
    color: #6b7280;
    background: #e5e7eb;
  }

  .mnav-service-badge.popular {
    color: #072AC8;
    background: rgba(7, 42, 200, 0.12);
  }

  .mnav-service-badge.green {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
  }

  .mnav-service-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
  }

  /* ── SERVIÇOS AVULSOS ── */
  .mnav-avulsos {
    margin: 0.5rem 1.25rem 0;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
  }

  .mnav-avulso-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.15s;
  }

  .mnav-avulso-link:last-child {
    border-bottom: none;
  }

  .mnav-avulso-link:hover,
  .mnav-avulso-link:active {
    background: #f8faff;
  }

  .mnav-avulso-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #03045E;
  }

  .mnav-avulso-sub {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 1px;
  }

  /* ── LINKS GERAIS ── */
  .mnav-links {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.5rem 0;
  }

  .mnav-simple-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    min-height: 48px;
    transition: background 0.15s, color 0.15s;
  }

  .mnav-simple-link:hover,
  .mnav-simple-link:active {
    background: #f8faff;
    color: #072AC8;
  }

  /* ── CTA FINAL ── */
  .mnav-cta {
    padding: 1.25rem 1.25rem 0.5rem;
  }

  .mnav-cta .button-blue {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100% !important;
    min-height: 52px;
    border-radius: 14px !important;
    font-size: 15px;
  }

  .mnav-cta .button-blue img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }
}


/* ================================================================
   SEÇÃO 4 — TIPOGRAFIA FLUIDA (mobile)
   ================================================================ */
@media (max-width: 767px) {
  .hero h1 {
    font-size: clamp(1.75rem, 5vw + 0.25rem, 2.25rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero h2 {
    font-size: clamp(1.5rem, 4vw + 0.25rem, 2rem);
    line-height: 1.25;
  }

  .hero p {
    font-size: clamp(0.925rem, 2.5vw + 0.35rem, 1.1rem);
    margin-bottom: 1.25rem;
  }
}


/* ================================================================
   SEÇÃO 5 — HERO SECTION
   ================================================================ */
@media (max-width: 767px) {
  .hero {
    padding: 2rem 0 2.5rem;
  }
}

/* Mobile pequeno (≤ 575px): botões empilhados em coluna */
@media (max-width: 575px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--m-space-sm);
  }

  .hero-buttons .button-blue,
  .hero-buttons .button-outline-blue,
  .hero-buttons .button-blue-dark,
  .hero-buttons .button-blue-light,
  .hero-buttons a[class*="button"],
  .hero-buttons button[class*="button"] {
    width: 100%;
    min-height: 48px;
  }
}

/* Large mobile (576–767px): botões lado a lado */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-buttons {
    flex-direction: row;
    gap: var(--m-space-sm);
  }

  .hero-buttons .button-blue,
  .hero-buttons .button-outline-blue {
    flex: 1;
    min-height: 48px;
  }
}


/* ================================================================
   SEÇÃO 6 — SEÇÃO #o-que-e (card branco inline flex-row → stack)
   ================================================================ */
/* O elemento tem style="display:flex; flex-direction:row;"
   que precisa de !important para ser sobrescrito no mobile.    */
@media (max-width: 767px) {
  #o-que-e .container > div {
    flex-direction: column !important;
  }

  #o-que-e .container > div > div:first-child {
    flex: none !important;
    width: 100% !important;
    height: 200px;
    min-height: 160px;
    overflow: hidden;
  }

  #o-que-e .container > div > div:last-child {
    flex: none !important;
    padding: var(--m-space-md) !important;
  }
}


/* ================================================================
   SEÇÃO 7 — DIFERENCIAIS (home: inline style 2 colunas)
   ================================================================ */
/* O HTML usa style="grid-template-columns: repeat(2, 1fr);"
   Força 1 coluna em mobile (override de inline style).          */
@media (max-width: 767px) {
  #por-que-omnisblue .diferenciais-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ================================================================
   SEÇÃO 8 — BOTÕES GLOBAIS (touch target mínimo 48px)
   ================================================================ */
@media (max-width: 767px) {
  .button,
  .button-blue,
  .button-white,
  .button-light,
  .button-outline,
  .button-outline-blue,
  .button-outline-dark,
  .button-blue-dark,
  .button-blue-light,
  .button-blue-hiper-light,
  .button-violet,
  .button-solid-blue,
  .button-solid-outline-blue {
    min-height: 48px;
  }
}


/* ================================================================
   SEÇÃO 9 — FORMULÁRIOS (iOS: font-size ≥ 16px evita auto-zoom)
   ================================================================ */
@media (max-width: 767px) {
  /* Qualquer input/select/textarea público — mínimo 16px */
  .form-input,
  input.form-input,
  select.form-input,
  textarea.form-input,
  .newsletter-form input,
  .newsletter-form select,
  .footer-newsletter-input,
  .section-form .form-input {
    font-size: 16px !important;
    min-height: 44px;
    padding: 12px 16px;
  }

  /* Label legível */
  .form-label {
    font-size: 14px;
  }

  /* Botões de submit: largura total no mobile */
  .form-buttons button[type="submit"],
  .form-buttons .button-blue,
  .popup-form button[type="submit"] {
    width: 100%;
    min-height: 48px;
  }
}


/* ================================================================
   SEÇÃO 10 — PLANOS (pricing cards)
   ================================================================ */
@media (max-width: 767px) {
  .omnis-planos-module {
    padding-top: 1.5rem !important;
  }

  .plano-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .plano-title {
    font-size: 1.35rem;
  }

  /* Botão do plano: alvo de toque adequado */
  .plano-btn-wrap .button-solid-blue,
  .plano-btn-wrap .button-solid-outline-blue {
    min-height: 48px;
  }

  /* Popup de escopo do plano: scroll interno */
  .plano-popup {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Tabs de plano: scroll horizontal */
  .plano-tabs {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .plano-tabs::-webkit-scrollbar {
    display: none;
  }
}


/* ================================================================
   SEÇÃO 11 — TABS (plataforma e serviços)
   ================================================================ */
@media (max-width: 767px) {
  /* Tab buttons: scroll horizontal para evitar quebra irregular */
  .tab-buttons,
  .services-buttons {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
    gap: 0.5rem;
  }

  .tab-buttons::-webkit-scrollbar,
  .services-buttons::-webkit-scrollbar {
    display: none;
  }

  .tab-btn,
  .services-btn {
    flex-shrink: 0;
  }

  .services-content {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }
}


/* ================================================================
   SEÇÃO 12 — FOOTER MOBILE
   ================================================================ */
@media (max-width: 767px) {
  /* Redes sociais: área de toque adequada (≥ 44px) */
  .social-icons a {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
  }

  .social-icons li {
    margin-bottom: 4px;
  }

  /* Newsletter footer: inputs 16px (iOS zoom) */
  .footer-newsletter-input {
    font-size: 16px !important;
  }
}


/* ================================================================
   SEÇÃO 13 — POPUPS MOBILE (bottom sheet)
   ================================================================ */
@media (max-width: 767px) {
  /* Overlay se ancora na parte inferior */
  .popup-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .popup {
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 20px 16px !important;
  }

  .popup-container {
    flex-direction: column !important;
    gap: 0 !important;
  }

  /* Imagem decorativa oculta no popup mobile (ganha espaço) */
  .popup-image {
    display: none !important;
  }

  .popup-left,
  .popup-right {
    width: 100% !important;
    padding: 0 !important;
  }

  .popup-title {
    font-size: 1.35rem;
  }

  .popup-description {
    font-size: 0.95rem;
    margin: 10px 0 16px;
  }
}


/* ================================================================
   SEÇÃO 14 — LANDING PAGES DE SERVIÇOS E PLATAFORMA
   ================================================================ */
@media (max-width: 767px) {
  .servicehero {
    padding: 2rem 0;
  }

  .servicehero h2,
  .platformhero h2,
  .ctahero h2 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 1.875rem);
    line-height: 1.25;
  }

  .servicehero p,
  .platformhero p,
  .ctahero p {
    font-size: 1rem;
  }
}


/* ================================================================
   SEÇÃO 15 — NEWSLETTER FORM
   ================================================================ */
@media (max-width: 767px) {
  .newsletter-form input,
  .newsletter-form select {
    font-size: 16px !important;
    min-height: 48px;
  }

  .newsletter-form button {
    min-height: 48px;
  }
}


/* ================================================================
   SEÇÃO 16 — ACESSIBILIDADE MOBILE
   ================================================================ */

/* Foco visível em todos os elementos interativos */
@media (max-width: 1023px) {
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Menu toggle: foco extra visível */
  #menuToggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 4px;
    border-radius: 8px;
  }
}

/* Prefers-reduced-motion: remove transições no menu mobile */
@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav.active {
    transition: none !important;
  }

  .menu-toggle span {
    transition: none !important;
  }
}

/* FAQ: alvo de toque adequado */
@media (max-width: 767px) {
  .faq-question {
    min-height: 44px;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* Testimonial arrows: alvo de toque */
@media (max-width: 767px) {
  .testimonial-arrow {
    min-width: 44px;
    min-height: 44px;
  }
}


/* ================================================================
   SEÇÃO 17 — EVENTOS (listagem + single)
   ================================================================ */
@media (max-width: 767px) {
  .eventos-hero {
    padding: 2.5rem 0 2rem;
  }

  .eventos-hero-title {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2rem);
    line-height: 1.2;
  }

  .eventos-hero-subtitle {
    font-size: 1rem;
  }

  .eventos-section {
    padding: 2.5rem 0;
  }

  .eventos-section-title {
    font-size: 1.35rem;
    flex-wrap: wrap;
  }

  /* Grid: 1 coluna (style.css usa 3 colunas, já tem query p/ 640px, mas esta reforça) */
  .eventos-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .eventos-card-image {
    height: 160px;
  }

  .eventos-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .eventos-card-title {
    font-size: 1rem;
  }

  .eventos-pagination {
    gap: 0.75rem;
    justify-content: center;
  }

  .eventos-page-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  /* Single evento */
  .eventos-single {
    padding: 2rem 0 3.5rem;
  }

  .eventos-single-title {
    font-size: clamp(1.4rem, 4vw + 0.5rem, 1.875rem);
    line-height: 1.2;
  }

  .eventos-single-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .eventos-single-image {
    max-height: 240px;
    margin-bottom: 1.5rem;
  }

  .eventos-single-content {
    font-size: 1rem;
  }

  .eventos-single-cta {
    padding: 1.25rem;
    margin-top: 2rem;
  }

  .eventos-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
  }

  /* Recentes (componente no blog e home) */
  .eventos-recentes-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .eventos-recentes-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}


/* ================================================================
   SEÇÃO 18 — MATERIAIS (biblioteca)
   ================================================================ */
@media (max-width: 767px) {
  .materiais-hero {
    padding: 2.5rem 0 2rem;
  }

  .materiais-hero-title {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2rem);
  }

  .materiais-hero-subtitle {
    font-size: 1rem;
  }

  .materiais-filters-section {
    padding: 1rem 0 0;
  }

  /* Filtros: scroll horizontal (evita quebra de linha em telas pequenas) */
  .materiais-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
    gap: 0.4rem;
  }

  .materiais-filters::-webkit-scrollbar {
    display: none;
  }

  .materiais-filter-btn {
    flex-shrink: 0;
    min-height: 40px;
    padding: 0.45rem 1rem;
  }

  .materiais-library-section {
    padding: 2rem 0 3.5rem;
  }

  /* Grid: 1 coluna */
  .materiais-library-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .materiais-library-cover {
    height: 180px;
  }

  .materiais-library-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .materiais-library-title {
    font-size: 1rem;
  }

  .materiais-library-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .materiais-btn-view,
  .materiais-btn-download {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}


/* ================================================================
   SEÇÃO 19 — BLOG / POST SINGLE
   ================================================================ */
@media (max-width: 767px) {
  .post-single {
    padding: 1.5rem 1rem;
  }

  .post-single-title {
    font-size: clamp(1.4rem, 4vw + 0.5rem, 1.875rem);
    line-height: 1.2;
  }

  .post-single-excerpt {
    font-size: 1rem;
  }

  .post-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .post-share {
    flex-wrap: wrap;
  }

  .share-icon {
    width: 40px;
    height: 40px;
  }

  .post-single-content {
    font-size: 1rem;
  }

  .post-single-content blockquote {
    padding-left: 1rem;
    font-size: 0.95rem;
  }

  .post-single-image {
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

  /* Autor popup: full-width no mobile */
  .author-popup {
    width: 95% !important;
    padding: 2rem 1.25rem 1.5rem !important;
  }

  /* Botão de volta ao blog: alvo de toque */
  .back-to-blog {
    min-height: 44px;
    align-items: center;
  }
}


/* ================================================================
   SEÇÃO 20 — SMALL MOBILE (≤ 374px)
   ================================================================ */
@media (max-width: 374px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero h1 {
    font-size: 1.625rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .value-card {
    padding: 1.25rem;
  }

  .value-card h3 {
    font-size: 1.05rem;
  }

  .plano-card {
    padding: 1.75rem 1.25rem 1.25rem;
  }

  /* Botões: texto menor em telas muito pequenas */
  .button,
  .button-blue,
  .button-outline-blue {
    font-size: 13px;
    padding: 13px 18px;
  }
}


/* ================================================================
   SEÇÃO 21 — HELPERS / UTILITÁRIOS MOBILE
   ================================================================ */

/* Classe utilitária: ocultar no mobile */
@media (max-width: 767px) {
  .mob-hidden {
    display: none !important;
  }
}

/* Classe utilitária: mostrar apenas no mobile */
.mob-only {
  display: none !important;
}

@media (max-width: 767px) {
  .mob-only {
    display: block !important;
  }
}

/* Classe utilitária: texto centralizado no mobile */
@media (max-width: 767px) {
  .mob-text-center {
    text-align: center !important;
  }
}
