﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
:root {
    --text-color: var(--ng-color-text, #111111);
    --text-color-strong: #111111;
    --text-color-secondary: #222222;
    --text-color-muted: #333333;
    --text-color-inverse: #ffffff;
    --surface-color: #ffffff;
    --surface-inverse: #000000;
    --surface-muted: #ededed;

    --ng-color-bg: var(--surface-color);
    --ng-color-text: var(--text-color-strong);
    --ng-color-border: #d7d7d7;
    --ng-page-end-bg: var(--surface-muted);
    --page-end-bg: var(--ng-page-end-bg);
}

#vlibras-widget [vw-access-button] {
    position: fixed;
    right: 18px;
    left: auto;
    top: clamp(180px, 33vh, 360px);
    bottom: auto;
    transform: none;
    z-index: 1000;
}

@media (max-width: 991px) {
    #vlibras-widget [vw-access-button] {
        right: 12px;
        top: clamp(145px, 28vh, 290px);
    }
}

#global-footer {
    position: relative;
    background: var(--page-end-bg, var(--ng-page-end-bg));
}

#global-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    height: 80px;
    background: inherit;
    pointer-events: none;
    z-index: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

html {
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-netglobe {
  background: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1001; 
  padding: 18px 0;
}

.hn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
}

.hn-logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hn-logo {
    width: 160px;
    margin: 15px 0; 
}

.hn-menu {
  display: flex;
  align-items: center;
  margin: 0 auto 0 60px; 
}

.hn-item {
  padding: 10px 30px; 
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  justify-content: center; 
  gap: 5px;
}

.hn-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FF6300cc;
    transition: width 0.3s ease;
}

.hn-item:hover {
  color: #FF6300cc;
}

.hn-item:hover::after {
    width: 70%;
}

.hn-arrow {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hn-cta {
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.cta-orcamento {
    padding: 12px 22px;
    border-radius: 10px;
    color: var(--text-color-inverse);
    box-shadow: 0 4px 15px rgba(57, 166, 170, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 5;
    background: transparent !important;
    -webkit-font-smoothing: antialiased;
}

.cta-orcamento span {
    position: relative;
    z-index: 10;
    display: inline-block;
    pointer-events: none;
}

.cta-orcamento::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
    #00F7FF 0%,
    #39A6AA 25%,
    #00E6FF 50%,
    #39A6AA 75%,
    #00F7FF 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    opacity: 1;
    filter: saturate(1.1);
    animation: moverGradiente 10s linear infinite;
}

.cta-orcamento::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 80px;
    height: 300%;
    background: rgba(255,255,255,0.6);
    transform: rotate(25deg);
    filter: blur(10px);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cta-orcamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 166, 170, 0.6);
}

.cta-orcamento:hover::after {
    animation: feixeLuz 0.9s ease forwards;
    opacity: 1;
}

@keyframes moverGradiente {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

@keyframes feixeLuz {
    0% {
    left: -40%;
    opacity: 0;
    transform: rotate(25deg) translateX(0);
  }
  40% {
    opacity: 1;
  }
  100% {
    left: 140%;
    opacity: 0;
    transform: rotate(25deg) translateX(0);
  }
}

.hn-dropdown {
    position: absolute;
    top: 100%;
    left: 0; 
    width: 100%; 
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px); 
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.823), rgba(255, 255, 255, 0.551));
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 60px 0; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    z-index: 999; 
}

.has-dropdown:hover > .hn-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
}

.hn-item.menu-open > .hn-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    max-width: 1200px;
    padding: 0 30px;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: start;
}

.dropdown-main-title {
    font-size: 2.2rem; 
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
    padding-right: 60px;
    display: flex; 
    align-items: center; 
    align-self: stretch;
    border-right: 6px solid #0000005c; 
}

.dropdown-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr)); 
    gap: 15px 50px; 
    margin-top: 10px; 
}

.dropdown-links-wrapper a {
    font-size: 1.1rem;
    color: var(--text-color); 
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.dropdown-links-wrapper a:hover {
    color: #FF6300;
    text-shadow: 0 0 8px rgb(255, 255, 255);
    transform: translateX(4px);
    opacity: 1;
}

.footer-netglobe {
    position: relative;
    z-index: 1;
    background: var(--surface-color);
    padding: 95px 40px 30px;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.35);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col.brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
  width: 200px;
  margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact .fc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s ease;
    color: var(--text-color-muted);
    user-select: text;
    -webkit-user-select: text;
}

.footer-contact .fc-item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-color-inverse);
    background: var(--surface-inverse);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.footer-contact .fc-item:hover {
    color: #FF6300cc;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin: 0 0 25px; 
  font-weight: 700;
  color: var(--text-color-muted);
}

.footer-col h3 + a:first-of-type {
    margin-top: 25px;
}

.footer-col a {
  display: block;
  margin: 4px 0 18px 0; 
  color: var(--text-color-muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.footer-col a:hover,
.footer-contact .fc-item:hover {
  color: #FF6300cc;
  transform: translateX(4px);
  opacity: 1;
  cursor: pointer;
}

.footer-contact .fc-item.phone,
.footer-contact .fc-item.phone:hover {
  color: var(--text-color-muted);
  transform: none;
  opacity: 1;
  cursor: default;
}

.footer-copy {
  text-align: center;
  margin-top: 45px;
  font-size: 0.85rem;
  color: #444;
  opacity: 0.9;
}

.rd-whatsapp-anchor {
    position: fixed;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 1002;
}

.rd-whatsapp-anchor > * {
    pointer-events: auto;
}

body.menu-open .rd-whatsapp-anchor {
    display: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[role="button"]:focus,
[tabindex]:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #FF6300cc;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.5);
}

@media (max-width: 1165px) {

    .hn-container {
        margin-right: 10%;
    }

    .hn-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        align-items: stretch;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 0 0 25px 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        gap: 20px;
        overflow-y: auto;
        height: calc(100vh - 80px);
        z-index: 9999;
        animation: menuFadeDown .35s ease forwards;
    }
    
    @keyframes menuFadeDown {
        0% { opacity: 0; transform: translateY(-12px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    .hn-mobile-btn {
        width: 32px;
        height: 26px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 10000;
    }

    .hn-mobile-btn span {
        width: 100%;
        height: 4px;
        background: var(--text-color-secondary);
        border-radius: 5px;
        transition: all 0.35s ease;
        transform-origin: center;
    }

    .hn-mobile-btn.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hn-mobile-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hn-mobile-btn.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hn-cta {
        display: none;
    }       

    .hn-item.menu-open .hn-dropdown {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hn-menu.open {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
        width: 100vw;
        top: 12%;        
        margin: 0;
        padding: 20px 0;
    }

    .hn-item {
        width: 100%;
        position: relative;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-color-secondary);
        padding: 14px 0;
        text-align: center;
        transition: color .25s ease, background .25s ease;
    }

    .hn-item:hover {
        color: #FF6300;
    }

    .hn-item.has-dropdown {
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .hn-item {
        border-radius: 12px;
    }

    .hn-item.menu-open {
        backdrop-filter: blur(8px);
    }

   .hn-item .hn-arrow {
        transition: transform 0.28s ease;
        display: inline-block;
    }

    .hn-item.menu-open .hn-arrow {
        transform: rotate(180deg);
    }

    .hn-dropdown {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height .35s ease, opacity .25s ease;
    }

    .hn-item.menu-open .hn-dropdown {
        max-height: 1000px; 
        opacity: 1;
        visibility: visible;
    }

    .dropdown-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0 30px;
    }

    .dropdown-main-title {
        display: none;
    }

    .dropdown-links-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dropdown-links-wrapper a {
        display: block;
        padding: 12px 0;
        font-size: 1.05rem;
        color: #444;
        transition: color .2s ease, background .2s ease, transform .2s ease;
        border-radius: 8px;
    }

    .dropdown-links-wrapper a:hover {
        color: #FF6300;
        text-shadow: 0 0 8px rgb(255, 255, 255);
        transform: translateX(4px);
        opacity: 1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 20px;
    }

}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col {
      text-align: center;
      padding: 10px;
    }

    .footer-col h3 {
        font-size: 1.4rem;
    }

    .footer-col a {
        font-size: 1.2rem;
    }

    .footer-col.brand {
      align-items: center;
    }
    
    .footer-contact {
        margin-left: 20px;
    }
    
    .footer-contact .fc-item {
      justify-content: flex-start;
      font-size: 1.2rem;
    }

    .hn-container {
        padding: 0 15px;
    }

    .rd-whatsapp-anchor {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
    }
}










