/* ============================================================
       VARIÁVEIS
       ============================================================ */
    :root {
      --blue-dark:   #003F7F;
      --blue-mid:    #003E79;
      --gold:        #B2997A;
      --text-grey:   #666666;
      --white:       #ffffff;
      --off-white:   #f7f5f2;
      --border:      #BD9F7B;
      --footer-top:  #003E79;
      --footer-bot:  #003264;
      --teal:        #1a8a8a;   /* fundo seção corte cloud */
      --brown:       #b08060;   /* fundo seção móveis soltos */
      --cinza:       #666666;
    
      --font:        'Red Hat Display', sans-serif;
      --nav-h:       77px;
      --max-w:       1386px;
      --r-lg:        16px;
      --r-pill:      50px;
      --t:           0.28s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); font-size: 18px; color: var(--text-grey); background: var(--white); overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: var(--font); }
    ul { list-style: none; }

    /* ============================================================
       HEADER — pill flutuante 77px
       ============================================================ */
    .header {
      position: fixed; top: 14px; left: 50%;
      transform: translateX(-50%); z-index: 1000;
      background: var(--blue-dark); height: var(--nav-h);
      display: flex; align-items: center; padding: 0 28px;
      border-radius: var(--r-pill);
      box-shadow: 0 6px 36px rgba(0,30,80,0.45);
      width: calc(100% - 48px); max-width: var(--max-w);
    }
    .header__inner { width: 100%; display: flex; align-items: center; gap: 16px; }
    .header__logo { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
    .header__logo img {
        margin-top: 20px;
    }
    .logo-badge {
      width: 44px; height: 44px; border: 2px solid var(--gold); border-radius: 50%;
      background: rgba(255,255,255,0.05);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .logo-badge span { font-size: 15px; font-weight: 700; color: var(--gold); letter-spacing: -0.5px; }
    .logo-text { font-size: 9px; font-weight: 700; color: var(--white); letter-spacing: 2.5px; text-transform: uppercase; line-height: 1.4; }

    .header__nav { flex: 1; display: flex; justify-content: center; }
    .nav__list { display: flex; gap: 28px; align-items: center; }
    .nav__item { position: relative; }
    .nav__link {
      font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.88);
      position: relative; padding-bottom: 3px;
      transition: color var(--t); white-space: nowrap;
      display: flex; align-items: center; gap: 5px;
    }
    .nav__link::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left; transition: transform var(--t);
    }
    .nav__link:hover, .nav__link--active { color: var(--white); }
    .nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
    .nav__arrow { width: 10px; height: 10px; opacity: 0.7; transition: transform var(--t); }
    .nav__item:hover .nav__arrow { transform: rotate(180deg); }

    .nav__dropdown {
      position: absolute; top: calc(100% + 18px); left: 0;
      min-width: 220px; background: var(--blue-dark);
      border-radius: 10px; padding: 8px 0;
      box-shadow: 0 8px 32px rgba(0,20,60,0.35);
      opacity: 0; visibility: hidden; transform: translateY(-6px);
      transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 100;
    }
    .nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav__dropdown li { border-bottom: 1px solid rgba(255,255,255,0.10); }
    .nav__dropdown li:last-child { border-bottom: none; }
    .nav__dropdown a {
      display: block; padding: 13px 22px;
      font-size: 16px; font-weight: 400;
      color: rgba(255,255,255,0.80); transition: color var(--t), background var(--t);
    }
    .nav__dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

    .header__social { display: flex; gap: 14px; flex-shrink: 0; }
    .header__social a {
      display: flex; align-items: center; justify-content: center;
      color: var(--white); background: none; border: none;
      transition: color var(--t);
    }
    .header__social a:hover { color: var(--gold); }
    .header__social svg { width: 26px; height: 26px; fill: currentColor; }

    .hamburger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }
    .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.is-open span:nth-child(2) { opacity: 0; }
    .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ============================================================
       HERO SLIDER — fullscreen, text positioned per slide
       ============================================================ */
    .hero {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 505px;
      overflow: hidden;
    }
    .hero__track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.7s cubic-bezier(0.77,0,0.18,1);
    }
    .hero__slide {
      flex-shrink: 0;
      width: 100%;
      height: 100%;
      position: relative;
    }
    .hero__slide img {
      width: 100%; height: 100%;
      object-fit: contain; object-position: center;
      display: block;
      background: #0a0f1e;
    }
    .hero__overlay {
      position: absolute; inset: 0;
      
    }

    /* Content — base */
    .hero__content {
      position: absolute; z-index: 2;
      top: 50%; transform: translateY(-50%);
      padding: 0 60px;
      color: var(--white);
      max-width: 640px;
    }
    .hero__content--right {
      right: 5%;
      left: auto;
      text-align: right;
    }
    .hero__content--left {
      left: 5%;
      right: auto;
      text-align: left;
    }
    .hero__subtitle {
      font-size: 16px; font-weight: 400;
      letter-spacing: 2px; text-transform: uppercase;
      opacity: 0.88; margin-bottom: 12px;
    }
    .hero__title {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 700; line-height: 1.15;
      text-shadow: 0 2px 24px rgba(0,0,0,0.45);
      text-transform: uppercase;
    }

    /* Arrows */
    .hero__btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 3; width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.30);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); transition: background var(--t);
    }
    .hero__btn:hover { background: rgba(255,255,255,0.28); }
    .hero__btn--prev { left: 24px; }
    .hero__btn--next { right: 24px; }
    .hero__btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* Dots */
    .hero__dots {
      position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: 8px;
    }
    .hero__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.45);
      transition: background var(--t), transform var(--t);
    }
    .hero__dot.is-active { background: var(--white); transform: scale(1.3); }

    /* ============================================================
       SEÇÃO: MOBILIÁRIOS POR SEGMENTOS
       ============================================================ */
    .seg-home {
      background: var(--white);
      padding: 64px 24px 56px;
    }
    .seg-home__inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .section-title {
      font-size: 32px; font-weight: 900;
      color: var(--cinza);
      text-align: center;
      margin-bottom: 36px;
    }

    /* Slider wrapper */
    .seg-slider {
      position: relative;
    }
    .seg-slider__track-wrap {
      overflow: hidden;
      border-radius: var(--r-lg);
    }
    .seg-slider__track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
    }
    .seg-slide {
      flex-shrink: 0;
      width: 100%;
      display: grid;
      grid-template-columns: 45% 27.5% 27.5%;
      gap: 8px;
      height: 480px;
    }

    /* Col-A */
    .seg-col-a {
      display: flex; flex-direction: column; gap: 8px;
      height: 480px; max-height: 480px; overflow: hidden;
    }
    .seg-info-box {
      padding: 28px 28px 20px;
      background: var(--white);
      border: 1.5px solid #CCCCCC;
      border-radius: var(--r-lg);
      flex: 1; min-height: 0; max-height: 272px;
      overflow: hidden;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .seg-info-box__name {
      font-size: 30px; font-weight: 900;
      color: var(--blue-dark); line-height: 1.4; margin-bottom: 4px;
    }
    .seg-info-box__segment {
      font-size: 32px; font-weight: 900;
      color: var(--text-grey); margin-bottom: 12px;
    }
    .seg-info-box__desc {
      font-size: 17px; line-height: 1.4;
      color: var(--text-grey);
    }
    .seg-info-box__btn-wrap { display: flex; justify-content: flex-end; margin-top: 14px; }
    .btn-ver-projeto {
      display: inline-flex; align-items: center;
      font-family: var(--font); font-size: 16px; font-weight: 500;
      color: #999999; background: var(--white);
      border: 1.5px solid #CCCCCC; border-radius: 40px;
      padding: 7px 20px; text-decoration: none; white-space: nowrap;
      transition: border-color var(--t), color var(--t);
    }
    .btn-ver-projeto:hover { border-color: var(--blue-dark); color: var(--blue-dark); }

    .seg-fotos-2 {
      display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
      flex-shrink: 0; height: 200px; max-height: 200px;
    }
    .seg-fotos-2 .foto { border-radius: var(--r-lg); overflow: hidden; height: 200px; max-height: 200px; }
    .seg-fotos-2 .foto img { width: 100%; height: 200px; max-height: 200px; object-fit: cover; display: block; transition: transform 0.4s; }
    .seg-fotos-2 .foto:hover img { transform: scale(1.04); }

    /* Col-B foto alta */
    .seg-col-b { border-radius: var(--r-lg); overflow: hidden; height: 480px; max-height: 480px; }
    .seg-col-b img { width: 100%; height: 480px; max-height: 480px; object-fit: cover; display: block; transition: transform 0.5s; }
    .seg-col-b:hover img { transform: scale(1.04); }

    /* Col-C 2 fotos empilhadas */
    .seg-col-c { display: flex; flex-direction: column; gap: 8px; height: 480px; max-height: 480px; overflow: hidden; }
    .seg-col-c .foto { flex: 1; border-radius: var(--r-lg); overflow: hidden; min-height: 0; max-height: 236px; }
    .seg-col-c .foto img { width: 100%; height: 100%; max-height: 236px; object-fit: cover; display: block; transition: transform 0.4s; }
    .seg-col-c .foto:hover img { transform: scale(1.04); }

    /* Arrows do slider de segmentos */
    .seg-slider__btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 4; width: 44px; height: 44px; border-radius: 50%;
      background: var(--white); border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.12);
      transition: border-color var(--t), box-shadow var(--t);
    }
    .seg-slider__btn:hover { border-color: var(--blue-dark); box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
    .seg-slider__btn svg { width: 18px; height: 18px; fill: none; stroke: var(--blue-dark); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .seg-slider__btn--prev { left: -22px; }
    .seg-slider__btn--next { right: -22px; }

    /* Tags de segmento abaixo do slider */
    .seg-tags {
      display: flex; gap: 16px; justify-content: center;
      margin-top: 20px; flex-wrap: wrap;
    }
    .seg-tag {
      font-size: 22px; font-weight: 900;
      color: #999999;
      border: 1.5px solid #cccccc;
      border-radius: 10px;
      padding: 14px 40px;
      background: var(--white);
      cursor: pointer;
      transition: border-color var(--t), color var(--t);
      text-decoration: none;
    }
    .seg-tag:hover { border-color: var(--blue-dark); color: var(--blue-dark); }
    .seg-tags{
        display: flex;
        width: 100%;
        gap: 20px; /* opcional */
    }

    .seg-tags .seg-tag{
        flex: 1;
        text-align: center;
    }

    /* ============================================================
       SEÇÃO: MOBILIÁRIOS POR AMBIENTES — fundo azul escuro
       ============================================================ */
    .amb-home {
      background: var(--blue-dark);
      padding: 56px 24px 56px;
    }
    .amb-home__inner { max-width: var(--max-w); margin: 0 auto; }
    .amb-home .section-title { color: var(--white); }

    .amb-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-bottom: 32px;
    }
    .amb-card {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      aspect-ratio: 3/4.8;   /* +50px altura equivalente */
      cursor: pointer;
      display: block; text-decoration: none;
    }
    .amb-card img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .amb-card__overlay {
      position: absolute; inset: 0;
      background: rgba(0,25,65,0.62);
      transition: background 0.4s ease;
    }
    .amb-card:hover .amb-card__overlay { background: rgba(0,25,65,0.25); }
    .amb-card:hover img { transform: scale(1.06); }
    /* Label: borda branca + texto branco normal; fundo branco no hover */
    .amb-card__label {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: transparent;
      border: 1.5px solid var(--white);
      border-radius: 40px;
      padding: 8px 18px;
      font-size: 18px; font-weight: 600;
      color: var(--white);
      white-space: nowrap;
      transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
      pointer-events: none;
    }
    .amb-card:hover .amb-card__label {
      background: rgba(255,255,255,0.8);
      color: #333;
      border-color: transparent;
      transform: translate(-50%, -50%) scale(1.05);
    }

    /* Botão "Ver todos os ambientes" */
    .amb-home__btn-wrap { display: flex; justify-content: center; }
    .btn-ver-todos {
      font-family: var(--font); font-size: 22px; font-weight: 900;
      color: #999999; background: #EBEBEB;
      border-radius: 20px;
      padding: 16px 38px; text-decoration: none;
      transition: border-color var(--t), color var(--t);
    }
    .btn-ver-todos:hover { border-color: var(--blue-dark); color: var(--blue-dark); }

    /* ============================================================
       SEÇÃO: MOBILIÁRIOS SOLTOS — estilo produtos.html (fundo azul escuro)
       ============================================================ */
    .soltos-home {
      background: #93715A;
      padding: 64px 24px 75px;
    }
    .soltos-home__inner {
      max-width: var(--max-w); margin: 0 auto;
    }
    section#produtos .prod-card-info__title{
      text-align: center;
      font-size: 32px;font-weight: 700px;
    }
    section#produtos .prod-card-info__desc {
      text-align: center;
      font-size: 25px;line-height: 1.2;
    }

    /* Grid linha 1: info + 3 produtos = 4 colunas */
    .prod-grid-3 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .prod-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    @media (max-width: 1100px) { .prod-grid-3, .prod-grid-4 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px)  { .prod-grid-3, .prod-grid-4 { grid-template-columns: 1fr; } }

    /* Card info — texto branco no fundo marrom */
    .prod-card-info {
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 8px;
      min-height: 280px;
    }
    .prod-card-info__title {
      font-size: 30px; font-weight: 800; line-height: 1.2;
      color: var(--white); margin-bottom: 16px;
    }
    .prod-card-info__desc {
      font-size: 16px; font-style: italic; font-weight: 400;
      color: rgba(255,255,255,0.85); line-height: 1.7;
    }

    /* Card produto — foto + label pill na base */
    .prod-card {
      position: relative; border-radius: 14px;
      overflow: hidden; aspect-ratio: 3/4.8;
      background: rgba(0,0,0,0.08);
      cursor: pointer;
      display: block; text-decoration: none;
    }
    .prod-card:hover { transform: translateY(-4px); }
    .prod-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
    .prod-card:hover img { transform: scale(1.05); }
    .prod-card__btn {
      position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
      z-index: 2; white-space: nowrap;
      background: rgba(255,255,255,0.7);
      color: #666666;
      font-family: var(--font);
      font-size: 18px; font-weight: 600;
      padding: 15px 22px; border-radius: 20px;
      pointer-events: none;
      max-width: calc(100% - 24px);
      text-align: center;
      transition: background var(--t);
    }
    .prod-card:hover .prod-card__btn {  }

    /* ============================================================
       SEÇÃO: CORTE CLOUD — fundo teal sólido, imagem de ferramentas à direita
       ============================================================ */
    .corte-cloud-home {
      background: #028EB0;
      padding: 64px 24px;
      overflow: hidden;
      position: relative;
    }
    .corte-cloud-home__inner {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; align-items: center;
      gap: 40px;
      position: relative; z-index: 2;
      min-height: 260px;
    }
    .corte-cloud-text {
      flex-shrink: 0;
      width: 300px; z-index: 2;
    }
    .corte-cloud-text__title {
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900; line-height: 1.2;
      color: var(--white); margin-bottom: 28px;
    }
    .btn-saiba-mais {
      display: inline-flex; align-items: center;
      font-family: var(--font); font-size: 22px; font-weight: 700;
      color: var(--white); background: #003E79;
      border-radius: 10px; padding: 17px 32px;
      text-decoration: none;
      transition: background var(--t);
    }
    .btn-saiba-mais:hover { background: #004080; }

    .corte-cloud-image {
      flex: 1; display: flex; justify-content: flex-end; align-items: center;
      position: relative;
    }
    .corte-cloud-image img {
      max-width: 100%; width: 700px; max-height: 300px;
      object-fit: contain; display: block;
      filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
    }

    .mapa {
    margin-bottom: -5px;
}

    /* ============================================================
       FOOTER
       ============================================================ */
    .footer { background: var(--footer-top); color: rgba(255,255,255,0.80);padding-top: 30px; }
    .footer__nav-bar { background: var(--footer-top); padding: 24px; }
    .footer__nav-bar ul {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 6px 36px; justify-content: left;
    }
    .footer__nav-bar a { font-size: 18px; font-weight: normal; color: rgba(255,255,255); transition: color var(--t); white-space: nowrap; }
    .footer__nav-bar a:hover { color: var(--gold); }

    .footer__main {
      background: var(--footer-top); max-width: var(--max-w); margin: 0 auto;
      padding: 40px 24px 60px;
      display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 32px 40px; align-items: start;
    }
    .footer__brand { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; }
    .footer__gm-badge {
      width: 163px; flex-shrink: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: flex-start; line-height: 1;margin-top: 10px;
    }
    .gm-big { font-size: 32px; font-weight: 900; color: var(--gold); letter-spacing: -1px; }
    .gm-sub { font-size: 6.5px; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
    .footer__brand-info { display: flex; flex-direction: column; gap: 4px; padding-top: 4px;margin-bottom: 20px; }
    .footer__brand-name { font-size: 18px; font-weight: normal; color: var(--white); line-height: 1.5; }
    .footer__cnpj { font-size: 18px; color: rgba(255,255,255); }

    .footer__info { display: flex; flex-direction: column; gap: 20px; }
    .footer__row { display: flex; gap: 14px; align-items: flex-start; }
    /* Ícones de contato — sem círculo, ícone aumentado */
    .footer__ico {
      flex-shrink: 0;
      width: 36px;
      display: flex; align-items: center; justify-content: center; margin-top: 1px;
      background: none; border: none;
    }
    .footer__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.8; }
    .footer__row span, .footer__row a { font-size: 18px; color: var(--white); }
    @media screen and (min-width: 1200px) {
      .footer__row span, .footer__row a, .footer__cnpj {white-space: nowrap;}
    }
    .footer__row a:hover { color: var(--gold); }

    /* Social icons — sem círculo */
    .footer__social { display: flex; gap: 16px; align-items: flex-start; padding-top: 4px; }
    .footer__social a {
      display: flex; align-items: center; justify-content: center;
      color: var(--white); background: none; border: none;
      transition: color var(--t);
    }
    .footer__social a:hover { color: var(--gold); }
    .footer__social svg { width: 26px; height: 26px; fill: currentColor; }

    .footer__bottom { background: var(--footer-bot); padding: 16px 24px; }
    .footer__bottom-inner {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
    }
    .footer__bottom p { font-size: 13px; color: var(--white); }

    /* Float buttons */
    .float-btn {
      position: fixed; right: 20px; z-index: 999;
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform var(--t);
    }
    .float-btn:hover { transform: scale(1.1); }
    .float-btn--wp  { bottom: 20px; background: #25D366; color: var(--white); }
    .float-btn--top { bottom: 78px; background: var(--gold); color: var(--white); }
    .float-btn svg  { width: 20px; height: 20px; fill: currentColor; }
    .float-btn--top svg { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 900px) {
      .header { width: calc(100% - 20px); padding: 0 18px; height: 60px; top: 10px; }
      .header {left: 50%;}
      .header__nav { display: none; position: fixed; top: 80px; left: 10px; right: 10px; background: var(--blue-dark); border-radius: var(--r-lg); padding: 24px; flex-direction: column; box-shadow: 0 8px 36px rgba(0,20,60,0.40); z-index: 999; }
      .header__nav.is-open { display: flex; }
      .nav__list { flex-direction: column; gap: 16px; text-align: center; }
      .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.06); border-radius: 8px; margin-top: 8px; box-shadow: none; display: none; }
      .nav__item.is-open .nav__dropdown { display: block; }
      .hamburger { display: flex; }
      .header__social { display: none; }

      .hero__content { padding: 0 32px; }
      .hero__title { font-size: clamp(22px, 5vw, 36px); }

      .seg-slide { grid-template-columns: 1fr; height: auto; }
      .seg-col-b, .seg-col-c { display: none; }
      .seg-col-a { height: auto; max-height: none; overflow: visible; }
      .seg-info-box { max-height: none; min-height: 200px; }
      .seg-fotos-2 { height: 160px; max-height: 160px; }
      .seg-slider__btn { display: none; }

      .amb-grid { grid-template-columns: repeat(3, 1fr); }

      .soltos-home__inner { flex-direction: column; gap: 24px; }
      .soltos-intro { width: 100%; }
      .soltos-grid { grid-template-columns: repeat(2, 1fr); }
      .soltos-grid__row2 { grid-template-columns: repeat(2, 1fr); }

      .corte-cloud-home__inner { flex-direction: column; }
      .corte-cloud-text { width: 100%; }

      .footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer__social { justify-content: flex-start; }
    }
    @media (max-width: 600px) {
      .amb-grid { grid-template-columns: repeat(2, 1fr); }
      .footer__main { grid-template-columns: 1fr; gap: 24px; }
      .footer__nav-bar ul { gap: 10px 20px; }
      .footer__bottom-inner { flex-direction: column; text-align: center; gap: 6px; }
      .footer__brand { flex-direction: column; }
      .seg-tags { flex-direction: column; align-items: center; }
    }
/* ============================================================
   PÁGINAS INTERNAS — hero, galeria, filtros, contato etc.
   ============================================================ */

/* PAGE HERO */
.page-hero {
  position: relative; width: 100%;
  height: 418px; margin-top: 0px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.page-hero--sm { height: 240px; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.page-hero__overlay { position: absolute; inset: 0; /* background: linear-gradient(to bottom, rgba(0,20,60,0.60) 0%, rgba(0,20,60,0.35) 100%); */ }
.page-hero__content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; margin-top: 50px;}
.page-hero__eyebrow { font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.page-hero__title { font-size: clamp(28px, 4vw, 45px); font-weight: 900; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,0.40); }
.page-hero__subtitle { font-size: 20px; margin-top: 10px; }

/* QUEM SOMOS */
.quem-somos { padding: 72px 24px 80px; }
.qs-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.qs-empresa { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.qs-empresa__image { min-height: 300px; overflow: hidden; }
.qs-empresa__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qs-empresa__text { border: 1.5px solid var(--border);border-radius: var(--r-lg);padding: 48px 48px 48px 48px;background: var(--white); }
.qs-empresa__title { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; }
.qs-empresa__divider { width: 100%; height: 1.5px; background: var(--border); margin-bottom: 22px; }
.qs-empresa__desc p { font-size: 16px; line-height: 1.5; color: var(--text-grey); margin-bottom: 20px; }

.qs-fundador { position: relative; display: grid; grid-template-columns: 1.30fr .60fr; align-items: center; }
.qs-fundador__box { border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 48px 100px 48px 48px; background: var(--white); }
.qs-fundador__titulo { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; }
.qs-fundador__texto p { font-size: 16px; line-height: 1.5; color: var(--text-grey); margin-bottom: 20px; }
.qs-fundador__photo { position: relative; right: 20px; bottom: 0; width: 400px; height: 100%; }
.qs-fundador__photo img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; display: block; }

/* PROCESSO */
/* .processo-blocos { padding: 64px 24px; background: var(--off-white); }
.processo-blocos__grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.processo-bloco { border-radius: var(--r-lg); overflow: hidden; background: var(--white); border: 1.5px solid var(--border); }
.processo-bloco__img { aspect-ratio: 16/9; overflow: hidden; }
.processo-bloco__img img { width: 100%; height: 100%; object-fit: cover; }
.processo-bloco__text { padding: 28px 32px; }
.processo-bloco__text h3 { font-size: 18px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.processo-bloco__desc p { font-size: 14px; line-height: 1.8; color: var(--text-grey); }

.processo-fases { padding: 64px 24px; }
.processo-fases__grid { max-width: var(--max-w); margin: 28px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.processo-fase__card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 36px 28px; text-align: center; }
.processo-fase__num { font-size: 48px; font-weight: 900; color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
.processo-fase__icon { width: 52px; height: 52px; margin: 0 auto 14px; }
.processo-fase__icon img { width: 100%; height: 100%; object-fit: contain; }
.processo-fase__titulo { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.processo-fase__desc p { font-size: 13px; line-height: 1.8; color: var(--text-grey); } */
/* ============================================================
       PROCESSO PRODUTIVO — CORPO
       ============================================================ */
    .processo { background: var(--white); padding: 80px 24px 0; }
    .processo__inner {
      max-width: var(--max-w); margin: 0 auto;
      display: flex; flex-direction: column; gap: 64px;
    }

    /* ── Bloco padrão: Imagem + Texto (alternados) ── */
    .pp-bloco {
      display: grid;
      gap: 48px;
      align-items: stretch;
    }
    /* Bloco 1: imagem esq, texto dir */
    .pp-bloco--img-left  { grid-template-columns: 480px 1fr; }
    /* Bloco 2: texto esq, imagem dir */
    .pp-bloco--img-right { grid-template-columns: 1fr 510px; }
    .pp-bloco--img-right .pp-bloco__image { order: 2; }
    .pp-bloco--img-right .pp-bloco__text  { order: 1; }

    /* Wrapper da imagem com decoradores de canto */
    .pp-bloco__image {
      position: relative;
      border-radius: var(--r-lg);
      overflow: visible;
      min-height: 380px;
    }
    .pp-bloco__image img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;display: block;
    }

    /* Decoradores de canto — quadradinhos do layout */
    .pp-bloco__corner {
      position: absolute;
      width: 64px; height: 64px;
      border-radius: 10px;
      z-index: 3;
    }
    /* Bloco img-left: canto superior esq (branco) e inferior dir (azul) */
    .pp-bloco--img-left .pp-bloco__corner--a {
      top: -14px; left: -14px;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    .pp-bloco--img-left .pp-bloco__corner--b {
      bottom: -14px; right: -14px;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    

    /* Caixa de texto — com borda arredondada */
    .pp-bloco__text {
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 60px 60px;
      display: flex; flex-direction: column; justify-content: flex-start;
      background: var(--white);
    }
    .pp-bloco__text h3{color: var(--blue-mid); font-size:29px;font-size: 29px;font-style: italic;font-weight: 900;}

    /* Título do bloco — itálico dourado (Bloco 1) */
    .pp-bloco__title--italic {
      font-family: var(--font);
      font-size: 22px; font-weight: 700; font-style: italic;
      color: var(--gold);
      margin-bottom: 16px; line-height: 1.3;
    }

    /* Título do bloco — normal azul (Bloco 2) */
    .pp-bloco__title {
      font-family: var(--font);
      font-size: 22px; font-weight: 700; font-style: normal;
      color: var(--blue-dark);
      margin-bottom: 16px; line-height: 1.3;
    }

    .pp-bloco__text p {
      font-family: var(--font); font-size: 16px; line-height: 1.85;
      color: var(--text-grey); margin-bottom: 12px;
    }
    .pp-bloco__text p:last-child { margin-bottom: 0; }

    /* Lista de equipamentos */
    .pp-bloco__list {
      margin: 16px 0 20px;
      list-style: none;
    }
    .pp-bloco__list li {
      font-family: var(--font); font-size: 16px; font-weight: 700;
      color: var(--blue-dark); line-height: 2;
    }

    /* Citação em destaque — dourado */
    .pp-bloco__quote {
      font-family: var(--font); font-size: 16px; font-weight: 700;
      color: var(--gold); line-height: 1.75; margin-top: 6px;
    }

    .processo-bloco__desc{margin-top: 20px;}

    .processo-bloco__desc p {
        font-size: 18px;
        line-height: 1.4rem;
    }
    .processo-bloco__desc h3 {
        color: #666666;
        font-size: 18px;
        font-style: normal;
        line-height: 1.4rem;
    }

    /* ============================================================
       FASES DO PROCESSO — seção de cards
       ============================================================ */
    .fases {
      background: var(--white);
      padding: 72px 24px 84px;
    }
    .fases__inner { max-width: var(--max-w); margin: 0 auto; }

    .fases__title {
      font-family: var(--font); font-size: 35px; font-weight: 900;
      color: var(--gold); text-align: center; margin-bottom: 48px;
    }

    /* Grid de cards — linha 1: 3 cards, linha 2: 2 cards centralizados */
    .fases__row {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .fases__row:last-child { margin-bottom: 0; }

    .fase-card {
      flex: 0 0 calc(33.333% - 16px);
      max-width: 455px;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 36px 32px 32px;
      background: var(--white);
      display: flex; flex-direction: column;
    }
    /* Linha 2: 2 cards — ~50% width */
    .fases__row--2 .fase-card {
      flex: 0 0 calc(50% - 12px);
      max-width: 440px;
    }

    .fase-card__head {
      display: flex; align-items: center; gap: 18px; margin-bottom: 16px;justify-content:center
    }
    .fase-card__icon {
      flex-shrink: 0;
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
    }
    .fase-card__icon svg {
      width: 52px; height: 52px;
    }
    .fase-card__name {
      font-family: var(--font); font-size: 30px; font-weight: 900;
      color: var(--text-grey); line-height: 1.2;
    }
    .fase-card__desc {
      font-family: var(--font); font-size: 15px; line-height: 1.75;
      color: var(--text-grey);
    }
    .fase-card__icon img{
      width: 56px;
      height: 56px;
      object-fit: contain;
      display: block;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .pp-bloco--img-left  { grid-template-columns: 400px 1fr; }
      .pp-bloco--img-right { grid-template-columns: 1fr 400px; }
    }
    @media (max-width: 900px) {
      .pp-bloco--img-left,
      .pp-bloco--img-right { grid-template-columns: 1fr; gap: 56px; }
      .pp-bloco--img-right .pp-bloco__image { order: 1; }
      .pp-bloco--img-right .pp-bloco__text  { order: 2; }
      .pp-bloco__image { min-height: 280px; }
      .fase-card { flex: 0 0 calc(50% - 12px); }
      .fases__row--2 .fase-card { flex: 0 0 calc(50% - 12px); }
    }
    @media (max-width: 600px) {
      .processo { padding: 56px 16px 0; }
      .pp-bloco__text { padding: 32px 24px; }
      .fase-card, .fases__row--2 .fase-card { flex: 0 0 100%; max-width: 100%; }
      .fases { padding: 56px 16px 64px; }
    }

/* PROJETOS / PRODUTOS LISTA */
.projetos-lista, .produtos-lista { padding: 56px 24px; }
.inner-wrap { max-width: var(--max-w); margin: 0 auto; }

.filtros-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filtro-btn {
  font-family: var(--font); font-size: 15px; font-weight: 500;
  color: var(--text-grey); background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-pill);
  padding: 10px 28px; cursor: pointer; transition: border-color var(--t), color var(--t);
}
.filtro-btn:hover, .filtro-btn.is-active { border-color: var(--blue-dark); color: var(--blue-dark); }

.projetos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.projeto__card { display: block; border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; text-decoration: none; }
.projeto__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.projeto__card:hover img { transform: scale(1.05); }
.projeto__card-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,20,60,0.85)); padding: 40px 20px 18px; color: var(--white); }
.projeto__cat-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.projeto__card-info h3 { font-size: 17px; font-weight: 700; }

/* PRODUTO CARDS */
.prod-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* PRODUTO DETALHE */
.produto-detalhe { padding: 60px 24px; }
.produto-detalhe__inner { max-width: 1000px; margin: 0 auto; }
.produto-detalhe__texto { font-size: 15px; line-height: 1.85; color: var(--text-grey); margin-bottom: 28px; }
.produto-detalhe__acoes { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.produto__btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--r-pill); font-family: var(--font); font-size: 14px; font-weight: 600; text-decoration: none; transition: transform var(--t); }
.produto__btn:hover { transform: translateY(-2px); }
.produto__btn--ml { background: #FFE600; color: #333; }
.produto__btn--pdf { background: var(--blue-dark); color: var(--white); }

/* GALERIA INTERNA */
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.galeria__item { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.galeria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.galeria__item:hover img { transform: scale(1.06); }

/* PROJETO DETALHE */
.projeto-detalhe { padding: 60px 24px; }
.projeto-detalhe__inner { max-width: 1000px; margin: 0 auto 28px; }
.projeto-detalhe__texto { font-size: 15px; line-height: 1.85; color: var(--text-grey); margin-bottom: 28px; }

/* CATÁLOGO */
.catalogo-section { padding: 56px 24px; }
.catalogo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.catalogo__card { background: var(--white); border-radius: var(--r-lg); border: 1.5px solid var(--border); overflow: hidden; }
.catalogo__card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.catalogo__card-placeholder { aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; background: var(--off-white); font-size: 48px; color: var(--gold); }
.catalogo__card-info { padding: 20px; }
.catalogo__card-info h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.catalogo__card-info p { font-size: 13px; color: var(--text-grey); line-height: 1.6; margin-bottom: 14px; }
.catalogo__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: var(--blue-dark); color: var(--white); border-radius: var(--r-pill); font-family: var(--font); font-size: 13px; font-weight: 600; text-decoration: none; transition: background var(--t); }
.catalogo__btn:hover { background: var(--blue-mid); }

/* CORTE CLOUD INTERNO */
/* .cortecloud-galeria { padding: 56px 24px; background: var(--off-white); }
.cortecloud__galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.cortecloud-videos { padding: 56px 24px; }
.cortecloud__videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
.video__card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); }
.video__embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video__nome { padding: 14px 16px; font-size: 14px; font-weight: 600; color: var(--blue-dark); } */
.cc-galeria{background:var(--white);padding:56px 24px 0}.cc-galeria__inner,.cc-videos__inner{max-width:1200px;margin:0 auto}.cc-galeria__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}@media(max-width:1024px){.cc-galeria__grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:700px){.cc-galeria__grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:440px){.cc-galeria__grid{grid-template-columns:1fr}}.cc-galeria__item{position:relative;overflow:hidden;border-radius:4px;cursor:pointer;background:var(--off-white);aspect-ratio:3/3.6;border:2px solid var(--border)}.cc-galeria__item img,.cc-video-card img{width:100%;height:100%;object-fit:cover;transition:transform .38s ease;display:block}.cc-galeria__item:hover img,.cc-video-card:hover img{transform:scale(1.05)}.cc-galeria__item:after{content:'';position:absolute;inset:0;background:rgba(0,30,80,0);transition:background var(--t);border-radius:4px}.cc-galeria__item:hover:after{background:rgba(0,30,80,.18)}.zoom-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(.5);opacity:0;transition:opacity var(--t),transform var(--t);z-index:2;width:40px;height:40px;background:rgba(255,255,255,.9);border-radius:50%;display:flex;align-items:center;justify-content:center}.cc-galeria__item:hover .zoom-icon{opacity:1;transform:translate(-50%,-50%) scale(1)}.zoom-icon svg{width:20px;height:20px}.cc-cta{background:var(--white);padding:44px 24px 52px;text-align:center}.cc-cta p{font-size:18px;color:var(--text-grey);margin-bottom:24px}.cc-cta p strong{color:var(--blue-dark)}.cc-cta__link{display:inline-flex;align-items:center;gap:10px;background:var(--blue-dark);color:var(--white);font-size:17px;font-weight:700;letter-spacing:.3px;padding:16px 42px;border-radius:var(--r-pill);transition:background var(--t),transform var(--t),box-shadow var(--t);box-shadow:0 4px 20px rgba(0,50,100,.22)}.cc-cta__link:hover{background:var(--blue-mid);transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,50,100,.32)}.cc-cta__link svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.cc-videos{background:#1565a0;padding:56px 24px 64px}.cc-videos__heading{font-size:22px;font-weight:700;color:var(--white);text-align:center;letter-spacing:.2px;margin-bottom:36px;text-transform:uppercase}.cc-videos__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}@media(max-width:1024px){.cc-videos__grid{grid-template-columns:repeat(3,1fr)}}@media(max-width:700px){.cc-videos__grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:440px){.cc-videos__grid{grid-template-columns:1fr}}.cc-video-card{position:relative;border-radius:10px;overflow:hidden;cursor:pointer;background:rgba(0,0,0,.25);aspect-ratio:9/16}.cc-video-card__overlay{position:absolute;inset:0;background:rgba(0,0,0,0);transition:background var(--t)}.cc-video-card:hover .cc-video-card__overlay{background:rgba(0,30,80,.18)}.lightbox,.yt-popup{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity .28s ease,visibility .28s ease}.lightbox{z-index:9000;background:rgba(0,20,60,.92)}.lightbox.is-open,.yt-popup.is-open{opacity:1;visibility:visible}.lightbox__img-wrap{position:relative;max-width:min(90vw,1100px);max-height:88vh;display:flex;align-items:center;justify-content:center}.lightbox__img{max-width:100%;max-height:88vh;object-fit:contain;border-radius:8px;box-shadow:0 8px 64px rgba(0,0,0,.6);transition:opacity .2s ease;display:block}.lightbox__close,.lightbox__nav,.yt-popup__close{display:flex;align-items:center;justify-content:center;color:var(--white);cursor:pointer;transition:background var(--t)}.lightbox__close{position:fixed;top:20px;right:24px;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.12);font-size:22px;z-index:2;border:1px solid rgba(255,255,255,.2)}.lightbox__close:hover,.lightbox__nav:hover,.yt-popup__close:hover{background:rgba(255,255,255,.24)}.lightbox__nav{position:fixed;top:50%;transform:translateY(-50%);width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);z-index:2}.lightbox__nav--prev{left:20px}.lightbox__nav--next{right:20px}.lightbox__nav svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}.lightbox__counter{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.65);font-size:14px;font-weight:500;background:rgba(0,0,0,.35);padding:6px 18px;border-radius:20px}.yt-popup{z-index:9100;background:rgba(0,20,60,.92)}.yt-popup__inner{position:relative;width:min(90vw,980px)}.yt-popup__ratio{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:10px;box-shadow:0 8px 64px rgba(0,0,0,.6)}.yt-popup__ratio iframe{position:absolute;inset:0;width:100%;height:100%;border:none}.yt-popup__close{position:absolute;top:-48px;right:0;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);font-size:22px}

/* CONTATO */
.contato { background: var(--off-white); padding: 72px 24px 80px; } .contato__inner { margin: 0 auto; } /* Título da seção */ .contato__heading { font-family: var(--font); font-size: 35px; font-weight: 900; color: var(--gold); text-align: center; margin-bottom: 52px; } /* ── Grid linha 1: 3 cards ── */ .contato__row { display: grid; gap: 20px; margin-bottom: 20px; } .contato__row--3 { grid-template-columns: repeat(3, 1fr); } .contato__row--2 { grid-template-columns: repeat(2, 1fr); max-width: 650px; margin-left: auto; margin-right: auto; justify-content: center;margin-top: 50px;} /* Card base */ .contact-card { border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px 28px 28px 28px; display: flex; flex-direction: column; gap: 0; } /* Cabeçalho do card: ícone + título */ .contact-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; } .contact-card__icon { flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; } .contact-card__icon svg { width: 34px; height: 34px; } .contact-card__title { font-family: var(--font); font-size: 25px; font-weight: 900; color: var(--cinza); line-height: 1.2; } /* Corpo do card */ .contact-card__body { font-family: var(--font); font-size: 18px; line-height: 1.00; color: var(--cinza); } .contact-card__body a { color: var(--cinza); transition: color var(--t); } .contact-card__body a:hover { color: var(--gold); } /* Label negrito dentro do WhatsApp card */ .contact-card__body strong { font-weight: 700; color: var(--blue-dark); } .contact-card__body p { margin-bottom: 4px; } .contact-card__body p:last-child { margin-bottom: 0; } /* Responsive contato */ @media (max-width: 760px) { .contato__row--3 { grid-template-columns: 1fr; } .contato__row--2 { grid-template-columns: 1fr; max-width: 100%; } } @media (max-width: 500px) { .contato { padding: 52px 16px 64px; } }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: rgba(0,10,30,0.92); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; border-radius: var(--r-lg); }
.lightbox__close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); border: none; cursor: pointer; font-size: 18px; transition: background var(--t); }
.lightbox__close:hover { background: rgba(255,255,255,0.30); }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); border: none; cursor: pointer; transition: background var(--t); }
.lightbox__btn:hover { background: rgba(255,255,255,0.30); }
.lightbox__btn--prev { left: -56px; }
.lightbox__btn--next { right: -56px; }
.lightbox__btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__counter { position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%); font-size: 13px; color: rgba(255,255,255,0.70); }

/* VOLTAR */
.btn-voltar { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border: 1.5px solid var(--blue-dark); border-radius: var(--r-pill); color: var(--blue-dark); font-family: var(--font); font-size: 14px; font-weight: 500; text-decoration: none; transition: all var(--t); margin-top: 28px; }
.btn-voltar:hover { background: var(--blue-dark); color: var(--white); }

/* SECTION TITLE INTERNO */
.section-title--interno { font-size: 24px; font-weight: 700; color: var(--blue-dark); text-align: center; margin-bottom: 36px; }

/* LISTA VAZIA */
.lista-vazia { text-align: center; color: var(--text-grey); padding: 60px 0; font-size: 16px; }

/* RESPONSIVE PÁGINAS INTERNAS */
@media (max-width: 900px) {
  .qs-empresa { grid-template-columns: 1fr; }
  .qs-empresa__image { min-height: 240px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .qs-empresa__text { border: 1.5px solid var(--border); border-top: none; border-radius: 0 0 var(--r-lg) var(--r-lg); padding: 32px 28px; }
  .qs-fundador { grid-template-columns: 1fr; }
  .qs-fundador__box { padding: 36px 28px; }
  .qs-fundador__photo { position: relative; right: auto; bottom: auto; width: 100%; height: 240px; }
  .processo-blocos__grid { grid-template-columns: 1fr; }
  .processo-fases__grid { grid-template-columns: repeat(2, 1fr); }
  .projetos__grid { grid-template-columns: repeat(2, 1fr); }
  .catalogo__grid { grid-template-columns: repeat(2, 1fr); }
  .cortecloud__galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .cortecloud__videos-grid { grid-template-columns: 1fr; }
  .contato__inner { grid-template-columns: 1fr; }
  .prod-grid-full { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__btn--prev { left: -44px; }
  .lightbox__btn--next { right: -44px; }
}
@media (max-width: 600px) {
  .page-hero { height: 200px; }
  .processo-fases__grid { grid-template-columns: 1fr; }
  .projetos__grid { grid-template-columns: 1fr; }
  .catalogo__grid { grid-template-columns: 1fr; }
  .prod-grid-full { grid-template-columns: 1fr; }
  .cortecloud__galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__btn--prev { left: 8px; }
  .lightbox__btn--next { right: 8px; }
}


/* ============================================================
   ANIMAÇÕES DE SCROLL-REVEAL
   Inspirado em agr.sc.gov.br — fade + slide suaves via
   IntersectionObserver. GPU-friendly (opacity + transform).
   ============================================================ */

/* --- Estado inicial: invisível e levemente deslocado --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* --- Variantes de direção --- */
.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}
.reveal--scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.60s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.60s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Atrasos escalonados para grids/cards --- */
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }
.reveal--d5 { transition-delay: 0.40s; }

/* --- Estado ativo: visível --- */
.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* -------- Hero content: slide + fade ao entrar no slide -------- */
.hero__slide.is-active .hero__content {
  animation: heroContentIn 0.80s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(22px) translateY(-50%); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* -------- Section title: linha decorativa animada -------- */
.section-title {
  position: relative;
  display: inline-block;
}
/* Linha dourada abaixo do título das seções */
.section-title::after {
  /* content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.30s; */
}
/* texto tem text-align:center, envolveremos em wrapper */
.section-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.section-title-wrap .section-title {
  margin-bottom: 0;
}
.section-title-wrap.is-visible .section-title::after {
  width: 60px;
}

/* -------- Prod-card: lift + borda dourada sutil -------- */
.prod-card {
}
.prod-card:hover {
}

/* -------- Amb-card: entrada escalonada -------- */
.amb-card {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.42s ease;
}
.amb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 20, 60, 0.28);
}

/* -------- Seg-tags: pulse no hover -------- */
.seg-tag {
  transition: border-color 0.28s ease, color 0.28s ease,
              transform 0.22s ease, box-shadow 0.22s ease;
}
.seg-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 50, 100, 0.12);
}

/* -------- Corte Cloud: parallax-like shift suave -------- */
.corte-cloud-home {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  /* desativa parallax no mobile — evita glitch */
  .corte-cloud-home { background-attachment: scroll; }
}

/* -------- Btn saiba mais: pulse de entrada -------- */
.btn-saiba-mais.is-visible {
  animation: btnPulse 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--scale,
  .hero__slide.is-active .hero__content {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .section-title::after { transition: none; width: 60px; }
}

/* ---- Header: entrada suave ao carregar a página ---- */
.header {
  animation: headerSlideIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes headerSlideIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-18px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   MOBILE FOOTER — OVERRIDES (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {

  /* ── Nav bar: 2 colunas ── */
  .footer__nav-bar ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    justify-items: start;
    padding: 0 8px;
  }

  /* ── Main: coluna única, sem gap excessivo ── */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px 24px;
  }

  /* ── Brand: badge + texto na mesma linha ── */
  .footer__brand {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .footer__gm-badge {
    width: 100px;
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gm-big { font-size: 22px; }
  .gm-sub { font-size: 5.5px; letter-spacing: 1px; }

  .footer__brand-info {
    padding-top: 0;
    gap: 2px;
  }

  .footer__brand-name {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .footer__cnpj {
    font-size: 11.5px;
    line-height: 1.65;
  }

  /* ── Info: sem separação de coluna, flui normalmente ── */
  .footer__info {
    gap: 16px;
  }

  .footer__row {
    align-items: flex-start;
    gap: 12px;
  }

  .footer__row span,
  .footer__row a {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ── Social: centralizado ── */
  .footer__social {
    justify-content: center;
    padding-top: 0;
  }

  /* ── Bottom bar ── */
  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .footer__bottom p { font-size: 12px; }
  .hero {min-height: 350px;}
  .section-title {font-size: 28px;}
  .seg-info-box__name, .seg-info-box__segment {font-size: 22px;}
  .seg-info-box {min-height: auto;display: inline-table;}
  .seg-tag, .btn-ver-todos {font-size: 20px;}
  .amb-grid {grid-template-columns: repeat(1, 1fr);}
  .corte-cloud-home__inner {padding: 0px 24px;flex-direction: row;}
  .corte-cloud-home {padding: 30px 24px 0px 24px;}
  .footer__nav-bar ul {display: block;justify-items: center;}
  .footer__nav-bar a {padding: 5px 5px;display: block;}
  .footer__main {justify-self: center;}
}

@media (max-width: 600px) {
.qs-fundador__box {
    padding: 48px 48px 48px 48px;
    margin-right: 0px;}
}