:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
/* === MENU RESPONSIVO === */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 5px;
    transition: .3s;
}

/* Estado animado do hambúrguer */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* MENU MOBILE */
#nav-menu {
    transition: .3s ease;
}

@media (max-width: 900px) {
    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #fff;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-left: 30px;
        box-shadow: -3px 0 10px rgba(0,0,0,0.3);
        z-index: 9999;
    }

    header nav a {
        font-size: 1.4rem;
        color: #333;
        text-transform: none;
    }

    .hamburger {
        display: flex;
    }

    /* NAV ABERTO */
    #nav-menu.active {
        right: 0;
    }
    
    .hero .container h1{
        font-size: 2rem
    }
    .hero .container p {
        font-size: 1.3rem;
    }
    .sobre .container h2 {
        font-size: 2rem;
    }

    .sobre-text {
        flex-direction: column;
        
    }
    .sobre .container .sobre-text p {
        font-size: 1.2rem;
    }
    .grid-container {
        padding: 20px;
    }
    .nossas-solucoes .container {
        padding: 20px;
    }
    .links-container {
        
    }
}

/* Overlay escuro (quando o menu abre) */
.menu-overlay {
    display: none;
}

.menu-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

header {
    
    flex-direction: column;
    display: flex;
    
}
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light);
    border-bottom: #343a40 1px 3px 1px;
    padding: 15px 4%;

}
header nav {
    display: flex;
    gap: 1rem;
}
header nav a {
    text-decoration: none;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 1.2rem;

}
header .logo img {
    max-width: 60px;
}

.hero {
    background-image: url(./assets/images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 20px 4%;
    height: 70vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero::before {
     content:"";
  position:absolute;
  left:0; top:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.55); /* intensidade do sombreado */
  z-index:0;
}
.hero h1, .hero p {
    color: #f8f9fa;
    
}
.hero .container {
    z-index: 999;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}
.hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    
}
.hero p {
    font-size: 1.7rem;
}
.sobre {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px;
}
.sobre img {
    max-width: 300px;
}
.sobre h2 {
    font-size: 2.5rem;
    color: #007bff;
    line-height: 1;
    text-transform: uppercase;
}
.sobre-text {
    display: flex;
    gap: 2rem;
    font-size: 20px;
    align-items: center;
}
.experience {
    background-color: #007bff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: right;
}
.experience-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
}
.experience h2, .experience p {
    color: #f8f9fa;
}
.experience h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-transform: uppercase;
}
.experience p {
    font-size: 20px;
}
section {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.area-grid {
  background: #333; /* fundo cinza escuro igual da imagem */
  padding: 40px 0;
}

.grid-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-item {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.grid-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.grid-item span {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  z-index: 2;
}

.grid-item:hover {
  filter: brightness(0.8);
}
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-item {
    height: 180px;
  }
}
.nossas-solucoes {
  padding: 60px 0;
  background: #fff;
}

.nossas-solucoes h2 {
  font-size: 2.2rem;
  color: #0094f5;
  margin-bottom: 10px;
  font-weight: 700;
}

.nossas-solucoes .descricao {
  max-width: 800px;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.solucao-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}

.solucao-item h4 {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
}

.solucao-item p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .solucoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solucoes-grid {
    grid-template-columns: 1fr;
  }
}
#footer {
    border-top: #007bff 1px solid;
  padding: 50px 0;
  color: #007bff;
  font-family: "Arial", sans-serif;
}

#footer .footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

#footer .footer-info p {
  margin: 5px 0;
  line-height: 1.5;
  font-size: 1.2rem;
}

#footer .empresa {
  font-weight: 600;
  font-size: 1rem;
}

#footer .whatsapp a {
  color: #0094f5;
  text-decoration: none;
  font-weight: 600;
}
#footer .whatsapp a:hover {
  text-decoration: underline;
}

#footer .direitos {
  color: #007bff;
}

#footer .footer-logo img {
  width: 130px;
  filter: brightness(1) invert(0); /* garante boa visibilidade em fundo escuro */
  opacity: 0.95;
  transition: 0.3s;
}

#footer .footer-logo img:hover {
  opacity: 1;
  transform: scale(1.02);
}
.policy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    
}
.policy a {
    text-decoration: none;
    color: #555;
}

/* RESPONSIVO */
@media (max-width: 700px) {
  #footer .footer-container {
    flex-direction: column;
    text-align: center;
  }

  #footer .footer-logo img {
    margin-top: 20px;
  }
}
#links-rapidos {
  background: #007bff;
  padding: 60px 0 40px;
  border-top: 1px solid #dedede;
}

#links-rapidos .links-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

#links-rapidos h4 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

#links-rapidos ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#links-rapidos ul li {
  margin-bottom: 8px;
}

#links-rapidos ul li a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #f8f9fa;
  transition: 0.2s;
}

#links-rapidos ul li a:hover {
  color: #0094f5;
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 500px) {
  #links-rapidos .links-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

