/*
Theme Name: Ormac
Author: JVCorrea.dev
Description: Theme for Ormac website
Version: 1.0
*/

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
   :root {
    /* Cores principais */
    --blue-dark: #0E0E1B;
    --bg: #323061;
    --bg-2: #111642;
    --paper: #f3f5f9;
    --ink: #0b0e1a;
    --muted: #6b6f80;
    --brand: #323061;
    --accent: #dbe1ff;
    --primary: #ffffff;
    --cta: #C2B988;
    --cta-light: #d4c47a;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Tipografia */
    --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --font-heading: Outfit, Inter, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.05rem;
    --font-size-xl: 1.15rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    
    /* Bordas e sombras */
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 999px;
    --shadow: 0 10px 30px rgba(17, 22, 66, 0.12);
    --shadow-lg: 0 16px 40px rgba(17, 22, 66, 0.16);
    --shadow-xl: 0 20px 60px rgba(17, 22, 66, 0.2);
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.4s ease;
  }
  
  /* ============================================
     RESET E BASE
     ============================================ */
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
  }
  
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 70px; /* Compensar header fixo */
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 0;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* ============================================
     ANIMAÇÕES
     ============================================ */
  .page-enter {
    opacity: 0;
    transform: translateY(10px);
    animation: enter 0.6s ease forwards;
  }
  
  @keyframes enter {
    to {
      opacity: 1;
      transform: none;
    }
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  
  /* ============================================
     LAYOUT E GRID
     ============================================ */
  .container {
    width: min(1120px, 92vw);
    margin-inline: auto;
  }
  
  .grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .vcenter {
    align-items: center;
  }
  
  .vstart {
    align-items: start;
  }
  
  .gap-xl {
    gap: 56px;
  }

  .mb-3{
    margin-bottom: 3rem;
  }
  
  /* ============================================
     UTILITÁRIOS
     ============================================ */
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  /* ============================================
     HEADER E NAVEGAÇÃO
     ============================================ */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: saturate(1.2) blur(6px);
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(16, 16, 40, 0.08);
  }
  
  .nav-wrap {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    padding: 14px 0;
    position: relative;
  }
  
  /* G Translate Language Selector Integration */
  .nav-wrap .gtranslate_wrapper,
  .nav-wrap .gt_container,
  .nav-wrap > .gtranslate_wrapper {
    display: inline-flex;
    align-items: center;
    order: 6;
    margin-left: 0.5rem;
  }
  
  .nav-wrap .gt_selector,
  .nav-wrap a.gt_selector {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    border: 1px solid rgba(16, 16, 40, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    color: var(--brand);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
  }
  
  .nav-wrap .gt_selector:hover,
  .nav-wrap a.gt_selector:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--brand);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  
  .nav-wrap .gt_flag,
  .nav-wrap img.gt_flag {
    width: 12px;
    height: 9px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .nav-wrap .gt_current_lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  .nav-wrap .gt_float_switcher {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid rgba(16, 16, 40, 0.15);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 6px 0;
    min-width: 140px;
    z-index: 100;
    margin-top: 4px;
  }
  
  .nav-wrap .gt_float_switcher a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: var(--ink);
    text-decoration: none;
    transition: background var(--transition-base);
    font-size: 0.85rem;
  }
  
  .nav-wrap .gt_float_switcher a:hover {
    background: var(--paper);
  }
  
  /* Agrupar seletor de idioma e botão Portal do Cliente */
  .nav-wrap .gtranslate_wrapper + .btn.btn-outline,
  .nav-wrap .gt_container + .btn.btn-outline {
    margin-left: 0;
  }
  
  /* Ajustar ordem dos elementos no header */
  .nav-wrap .brand {
    order: 1;
  }

  .nav-menu-panel {
    order: 2;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: auto;
    flex: 1;
    justify-content: flex-end;
  }

  .nav-wrap .main-nav {
    margin-left: 0;
  }

  .nav-menu-panel .nav-panel-btn {
    order: 4;
  }

  .nav-menu-panel .social-links {
    order: 5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
  }

  .nav-menu-panel .nav-panel-gtranslate {
    order: 6;
  }

  
  .nav-wrap .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--brand);
    transition: all var(--transition-base);
  }
  
  .nav-wrap .social-link:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-1px);
  }
  
  .nav-wrap .social-link svg {
    width: 16px;
    height: 16px;
  }
  
  .nav-wrap .nav-toggle {
    order: 7;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  
  .brand-symbol {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
  }
  
  .main-nav {
    margin-left: auto;
    display: flex;
    gap: 1.2rem;
    font-size: var(--font-size-sm);
  }
  
  .nav-link {
    position: relative;
    text-decoration: none;
    color: #2a2a44;
    font-weight: 500;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width 0.25s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
  }
  
  .nav-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: var(--transition-base);
  }
  
  .nav-toggle span:nth-child(1) {
    top: 12px;
  }
  
  .nav-toggle span:nth-child(2) {
    top: 20px;
  }
  
  .nav-toggle span:nth-child(3) {
    top: 28px;
  }
  
  /* ============================================
     BOTÕES
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform var(--transition-fast), background var(--transition-base), border-color var(--transition-base);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .btn:active {
    transform: translateY(0);
  }
  
  .btn-primary {
    background: var(--blue-dark);
    color: #fff;
  }
  
  .btn-primary:hover {
    background: var(--cta);
    color: var(--blue-dark);
    border-color: var(--cta);
  }
  
  .btn-outline {
    border-color: var(--brand);
    color: white;
    background: var(--brand);
  }
  
  .btn-outline:hover {
    background: var(--cta);
    color: var(--blue-dark);
    border-color: var(--cta);
  }
  
  .btn-outline-light {
    border-color: var(--cta);
    color: #fff;
    background: transparent;
  }
  
  .btn-outline-light:hover {
    background: var(--cta);
    color: var(--brand);
    border-color: var(--cta);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--brand);
  }
  
  .btn-light {
    background: #fff;
    border-color: #fff;
    color: var(--brand);
  }
  
  .btn-sm {
    padding: 0.65rem 1rem;
    font-size: var(--font-size-sm);
  }
  
  /* ============================================
     BADGES
     ============================================ */
  .badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: white;
    color: var(--blue-dark);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .badge:hover {
    background: var(--cta);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* ============================================
     CARDS
     ============================================ */
  .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
  
  .card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
  }
  

  .cards h3{
    color: var(--brand);
  }

  .card-lg {
    padding: 32px;
  }
  
  .card-hover {
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  }
  
  .card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .card img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    max-height: 130px;
  }
  
  .card .icon {
    font-size: 28px;
  }
  
  /* Card com ícone de serviço */
  .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--cta), var(--cta-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .service-icon svg {
    color: var(--blue-dark);
    width: 32px;
    height: 32px;
  }
  
  /* Card de serviço */
  .service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-card h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 12px;
    color: var(--brand);
  }
  
  .service-card p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
  }
  
  .service-card .list {
    margin-top: 20px;
  }
  
  .service-card .list li {
    margin-bottom: 8px;
    color: var(--ink);
  }
  
  /* Card de benefício */
  .benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border-top: 4px solid var(--cta);
    box-shadow: var(--shadow);
  }
  
  .benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--brand);
  }
  
  .benefit-card p {
    color: var(--muted);
    line-height: 1.7;
  }
  
  /* ============================================
     LISTAS
     ============================================ */
  .list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
  }
  
  .list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cta);
    font-weight: 700;
  }
  
  .list-plain li::before {
    display: none;
    padding-left: 0;
  }
  
  /* ============================================
     SEÇÕES
     ============================================ */
  .section {
    padding: 72px 0;
  }
  
  .section-head {
    margin-bottom: 3rem;
  }
  
  .section-head h2 {
    font-size: var(--font-size-4xl);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .section-intro {
    max-width: 70ch;
    color: var(--muted);
    margin-bottom: 2.5rem;
    font-size: var(--font-size-lg);
  }
  
  .section-head-services {
    text-align: center;
  }
  
  .section-head-services h2 {
    color: var(--brand);
  }
  
  /* ============================================
     HERO
     ============================================ */
  .hero {
    color: #fff;
  }
  
  /* Hero Carousel com Swiper */
  .hero-carousel {
    position: relative;
    overflow: hidden;
  }
  
  .hero-swiper {
    width: 100%;
    height: 600px;
  }
  
  .hero-swiper .swiper-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }
  
  .hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .hero-swiper .swiper-slide .container {
    position: relative;
    z-index: 2;
    width: min(1120px, 92vw);
    margin-inline: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }
  
  /* Swiper Pagination Customizada */
  .hero-swiper .swiper-pagination {
    bottom: 30px;
    z-index: 10;
  }
  
  .hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
  }
  
  /* Swiper Navigation Customizada */
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .hero-swiper .swiper-button-prev:hover,
  .hero-swiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .hero-swiper .swiper-button-prev::after,
  .hero-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
  }
  
  .hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 1.1rem + 3.5vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 10px;
  }
  
  .hero-copy .accent {
    color: var(--cta);
  }
  
  .hero-copy p {
    color: #ffffff;
    max-width: 60ch;
  }
  
  .cta-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 18px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  
  .hero-visual .img-placeholder {
    height: 360px;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    color: #fff;
  }
  
  /* ============================================
     FEATURES
     ============================================ */
  .features .section-head h2 {
    color: var(--brand);
  }
  
  .group-ormac-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
  }
  .group-ormac-logo {
    flex-shrink: 0;
  }
  .group-ormac-logo img {
    width: 200px;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .group-ormac-content h2{
    margin-top: 0;
  }
  
  /* ============================================
     SERVICES
     ============================================ */
  .services {
    background: var(--brand);
  }
  
  .services .section-head h2 {
    color: var(--cta);
  }
  
  .services .section-head p {
    color: #fff;
  }
  
  .services-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
  
  /* ============================================
     NUMBERS
     ============================================ */
  .numbers {
    background: #fff;
  }
  
  .numbers .section-head h2 {
    color: var(--brand);
  }
  
  .counters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  
  .counter {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    text-align: center;
  }
  
  .counter .num {
    font-size: clamp(2rem, 1rem + 3vw, 3rem);
    font-weight: 700;
    color: var(--cta);
    display: block;
  }
  
  .counter .label {
    color: var(--muted);
    font-size: 0.95rem;
  }
  
  /* ============================================
     BLOG
     ============================================ */
  
  /* Lista de posts (blog) */
  .post-list{display:flex; flex-direction:column; gap:16px; margin-top: 1.5rem;}
  .post-list-item{background:#fff; border-radius:var(--radius); box-shadow:var(--shadow); padding:20px; display:flex; gap:18px; align-items:flex-start;}
  .post-list-thumb{flex:0 0 220px; max-width:220px;}
  .post-list-thumb img{width:100%; height:140px; object-fit:cover; border-radius:var(--radius-sm);}
  .post-list-body{flex:1; min-width:0;}
  .post-list-title{font-size:1.35rem; margin:0 0 8px; color:var(--brand);}
  .post-list-title a{color:inherit;}
  .post-list-meta{font-size:0.9rem; color:var(--muted); margin-bottom:10px;}
  .post-list-excerpt{color:var(--ink); line-height:1.7; margin-bottom:12px;}
  
  .pagination .nav-links{display:inline-flex; gap:10px; flex-wrap:wrap; justify-content:center;}
  .pagination .page-numbers{display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; border-radius:999px; border:1px solid rgba(50,48,97,.2); color:var(--brand); background:#fff;}
  .pagination .page-numbers.current{background:var(--brand); color:#fff; border-color:var(--brand);}
  .pagination .page-numbers:hover{border-color:var(--brand);}
  
  .blog .section-head h2 {
    color: var(--brand);
  }
  
  .blog .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .blog .card {
    display: flex;
    flex-direction: column;
  }
  
  .blog .card .btn {
    margin-top: auto;
    align-self: flex-start;
  }
  
  /* ============================================
     STRIP CTA
     ============================================ */
  .strip-cta {
    background: linear-gradient(90deg, var(--brand), #182164);
    color: #fff;
  }
  
  .strip-cta-dark {
    background: linear-gradient(135deg, var(--brand), #1a1f4a);
  }
  
  .strip {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  
  .strip-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .strip-actions-column {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .strip-content {
    max-width: 600px;
  }
  
  .strip-content h3 {
    font-size: var(--font-size-5xl);
    margin-bottom: 16px;
    color: #fff;
  }
  
  .strip-content p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  .strip-btn {
    font-size: var(--font-size-base);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
  }
  
  /* Seção DUIMP (ênfase no novo processo de importação) – fundo igual Nossos números */
  .section-duimp {
    background: #fff;
  }
  .duimp-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .duimp-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .duimp-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .section-duimp .section-head-duimp h2 {
    color: var(--brand);
    margin-bottom: 1rem;
  }
  .section-duimp .section-duimp-intro {
    font-size: var(--font-size-lg);
    line-height: 1.75;
    color: var(--ink);
    max-width: 72ch;
    margin-bottom: 1.5rem;
  }
  .section-duimp .section-duimp-intro strong {
    color: var(--brand);
  }
  .section-duimp .strip-btn {
    margin-top: 0.25rem;
  }
  
  /* ============================================
     PAGE HERO
     ============================================ */
  .page-hero {
    background: linear-gradient(180deg, #10163b, var(--brand));
    color: #fff;
    padding: 64px 0;
  }
  
  .page-hero h1 {
    margin: 0;
  }
  
  .page-hero p {
    font-size: var(--font-size-base);
    max-width: 100%;
  }
  
  .page-hero-quem-somos h1 {
    color: var(--cta);
  }
  
  /* ============================================
     INSTITUCIONAL
     ============================================ */
  .prose p {
    max-width: 70ch;
    margin-bottom: 1.25rem;
  }
  
  .prose h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .history-image {
    display: flex;
    align-items: stretch;
    min-height: 100%;
  }
  
  .history-image img {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  .gallery {
    background: #fff;
  }
  
  .gallery h2 {
    color: var(--brand);
    margin-bottom: 1rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .locations {
    background: var(--paper);
  }
  
  .locations h2 {
    color: var(--brand);
    margin-bottom: 1rem;
  }
  
  .locations .text-center p,
  .locations .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 2rem;
  }
  
  .location-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
  }
  
  .location-card h3 {
    color: var(--brand);
    margin: 0 0 8px;
    font-size: var(--font-size-2xl);
  }
  
  .location-city {
    color: var(--cta);
    font-weight: 600;
    margin: 0 0 12px;
    font-size: var(--font-size-base);
  }
  
  .location-card p {
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
  }
  
  .map-container {
    margin-top: auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .map-container iframe {
    display: block;
    width: 100%;
  }
  
  /* ============================================
     FORMULÁRIOS
     ============================================ */
  .form {
    padding: 24px;
    box-shadow: var(--shadow-xl);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .form-grid label {
    display: grid;
    gap: 6px;
    font-size: 0.95rem;
  }
  
  .form-grid input,
  .form-grid textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid #d7dcff;
    background: #fff;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
  }
  
  .form-grid .span-2 {
    grid-column: 1 / -1;
  }
  
  .form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }
  
  .form-actions button {
    cursor: pointer;
  }
  
  .form-note {
    font-size: var(--font-size-sm);
    color: var(--muted);
  }
  
  .alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid;
  }
  
  .alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
  }
  
  .alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
  }
  
  /* ============================================
     BLOG POST
     ============================================ */
  .blog-post {
    background: var(--paper);
  }
  
  .post-hero {
    background: linear-gradient(180deg, #10163b, #121945);
    color: #fff;
    padding: 64px 0 48px;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color var(--transition-base);
  }
  
  .back-link:hover {
    color: var(--cta);
  }
  
  .post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .post-category {
    background: var(--cta);
    color: var(--blue-dark);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
  }
  
  .post-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .post-title {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #fff;
  }
  
  .post-excerpt {
    font-size: var(--font-size-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 70ch;
    margin: 0;
  }
  
  .post-featured-image {
    width: 100vw;
    max-width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--paper);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  
  .post-featured-image img {
    width: 100%;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  
  .post-content {
    padding: 64px 0;
    background: #fff;
  }
  
  .post-body {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .post-body h2 {
    font-size: var(--font-size-3xl);
    line-height: 1.3;
    margin: 2.5rem 0 1rem;
    color: var(--brand);
  }
  
  .post-body h3 {
    font-size: var(--font-size-2xl);
    line-height: 1.4;
    margin: 2rem 0 0.75rem;
    color: var(--brand);
  }
  
  .post-body p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--ink);
  }
  
  .post-body ul,
  .post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
  }
  
  .post-body li {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--ink);
  }
  
  .post-body strong {
    font-weight: 600;
    color: var(--brand);
  }
  
  .post-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .post-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .tags-label {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.9rem;
  }
  
  .tag {
    display: inline-block;
    background: var(--paper);
    color: var(--brand);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background var(--transition-base), color var(--transition-base);
    border: 1px solid rgba(50, 48, 97, 0.2);
  }
  
  .tag:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
  }
  
  .post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .share-label {
    font-weight: 600;
    color: var(--muted);
    font-size: 0.9rem;
  }
  
  .share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--brand);
    text-decoration: none;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
    border: 1px solid rgba(50, 48, 97, 0.2);
  }
  
  .share-link:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--brand);
  }
  
  .related-posts {
    padding: 64px 0;
    background: var(--paper);
  }
  
  .related-title {
    font-size: var(--font-size-3xl);
    color: var(--brand);
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .related-posts .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .post-meta-small {
    font-size: var(--font-size-sm);
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  .site-footer {
    background: #0f1433;
    color: #d2d6ff;
    padding: 40px 0 24px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 24px;
  }
  
  .site-footer h4 {
    color: #fff;
    margin: 0 0 8px;
  }
  
  .site-footer a {
    color: #e2e6ff;
    text-decoration: none;
  }
  
  .footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e2e6ff;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .footer-social-link:hover {
    background: var(--cta);
    color: #fff;
    transform: translateY(-2px);
  }
  .footer-cta {
    margin-top: 1rem;
  }
  
  .madeby {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .madeby small:first-child {
    text-align: left;
  }
  
  .madeby small:last-child {
    text-align: right;
  }
  
  @media (max-width: 600px) {
    .madeby {
      flex-direction: column;
      text-align: center;
    }
    
    .madeby small:first-child,
    .madeby small:last-child {
      text-align: center;
    }
  }

  .valores-empresa .card h3{
    color: var(--brand);
  }
  
  /* ============================================
     WHATSAPP FLOAT BUTTON
     ============================================ */
  .whatsapp-button {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 100;
  }
  
  .whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 100;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(11, 233, 116, 0.25), 0 1.5px 4px rgba(16, 28, 34, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: box-shadow 0.18s, transform 0.16s;
    font-size: 2rem;
  }
  
  .whatsapp-float:hover,
  .whatsapp-float:focus {
    box-shadow: 0 8px 24px rgba(11, 233, 116, 0.19), 0 3px 10px rgba(16, 28, 34, 0.13);
    transform: translateY(-2px) scale(1.08);
    color: #fff;
    background: #1ebc5b;
  }
  
  /* ============================================
     IMG PLACEHOLDER
     ============================================ */
  .img-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
  }
  
  .img-placeholder img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    max-height: 130px;
  }
  
  /* ============================================
     UTILITÁRIOS
     ============================================ */
  .bg-paper {
    background: var(--paper);
  }
  
  .bg-brand {
    background: var(--brand);
  }
  
  .mt-3 {
    margin-top: 3rem;
  }
  
  .mb-2 {
    margin-bottom: 2rem;
  }
  
  .flex-end {
    display: flex;
    justify-content: flex-end;
  }
  
  .nowrap {
    white-space: nowrap;
  }
  
  .form-wrapper {
    max-width: 700px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
  }
  
  .form-wrapper.text-center {
    text-align: center;
  }
  
  .form-wrapper.text-center .form {
    text-align: left;
  }
  
  .form-wrapper.text-center .form-actions {
    justify-content: center;
  }
  
  .page-hero-padding {
    padding-bottom: 80px;
  }
  
  .section-no-padding {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .pagination {
    text-align: center;
    margin-top: 3rem;
  }
  
  .empty-state {
    text-align: center;
    padding: 4rem 0;
  }

/* =========================================================
   GTRANSLATE – COMPACTO / SOMENTE BANDEIRAS
   ========================================================= */

   .gt_switcher_wrapper{
    margin-top: 12px;
   }

  /* ============================================
     MEDIA QUERIES
     ============================================ */
  @media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 920px) {
    .grid-2,
    .duimp-grid,
    .group-ormac-wrap {
      grid-template-columns: 1fr;
	  gap: 16px;
    }
    .group-ormac-logo {
      justify-self: start;
    }
    
    .grid-3 {
      grid-template-columns: 1fr;
    }
    
    .counters {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .cards,
    .blog .cards {
      grid-template-columns: 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .nav-toggle {
      display: block;
      order: 2;
    }

    .nav-menu-panel {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      height: calc(100vh - 70px);
      min-height: calc(100vh - 70px);
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(8px);
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding: 24px;
      margin: 0;
      display: none;
      z-index: 40;
      overflow-y: auto;
      overflow-x: hidden;
      gap: 0;
      -webkit-overflow-scrolling: touch;
    }

    .site-header.menu-open .nav-menu-panel {
      display: flex;
    }

    .nav-menu-panel .main-nav {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      margin-bottom: 1rem;
    }

    .nav-menu-panel .main-nav .nav-link {
      padding: 12px 0;
      font-size: 0.95rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu-panel .nav-panel-btn {
      align-self: flex-start;
      margin-bottom: 1rem;
    }

    .nav-menu-panel .social-links {
      margin-bottom: 1rem;
    }

    .nav-menu-panel .nav-panel-gtranslate {
		display: none;  
	}

    body.menu-open {
      overflow: hidden;
    }

    .post-list-item {
      flex-direction: column;
      align-items: stretch;
    }
    .post-list-thumb {
      flex: none;
      max-width: 100%;
      width: 100%;
    }
    .post-list-thumb img {
      height: 200px;
      object-fit: cover;
    }

    .hero-swiper {
      height: 580px;
    }
  
    .hero-swiper .swiper-slide {
      height: 580px;
    }
  
    .hero-swiper .swiper-pagination {
      bottom: 20px;
    }
  
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
      width: 36px;
      height: 36px;
    }
  
    .hero-swiper .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
    }
  
    .hero-swiper .swiper-pagination-bullet-active {
      width: 20px;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .locations-grid {
      grid-template-columns: 1fr;
    }
    
    .services-cards {
      grid-template-columns: 1fr !important;
    }
    
    .post-footer {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .related-posts .cards {
      grid-template-columns: 1fr;
    }
    
    .post-body h2 {
      font-size: 1.75rem;
    }
    
    .post-body h3 {
      font-size: 1.35rem;
    }
    
    .strip {
      flex-direction: column;
      gap: var(--spacing-lg);
    }
    
    .strip-content h3 {
      font-size: var(--font-size-3xl);
    }
  }
  
  @media (max-width: 700px) {
    .whatsapp-float {
      right: 16px;
      bottom: 16px;
      width: 48px;
      height: 48px;
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 600px) {
    .post-hero {
      padding: 48px 0 32px;
    }
    
    .post-title {
      font-size: 1.75rem;
    }
    
    .post-excerpt {
      font-size: var(--font-size-base);
    }
    
    .post-content {
      padding: 48px 0;
    }
    
    .post-body {
      font-size: var(--font-size-base);
    }
    
    .post-body h2 {
      font-size: var(--font-size-2xl);
    }
    
    .post-body h3 {
      font-size: 1.25rem;
    }
    
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-swiper {
      height: 520px;
    }
  
    .hero-swiper .swiper-slide {
      height: 520px;
    }
  }
  