@charset "UTF-8";
/* =================================
   Variáveis de Cor e Fonte
   ================================= */
@font-face {
  font-family: "RobotoN";
  src: url("/assets/fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf"), url("/assets/fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf");
}
/* =================================
   Reset e Estilos Globais
   ================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "RobotoN", sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 5rem 0;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: #f5f5f5;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

p {
  color: #f5f5f5;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #5170ff;
  transition: color 0.3s ease;
}
a:hover {
  color: #519cff;
}

/* =================================
   Animações de Scroll
   ================================= */
.fade-in,
.slide-in-left,
.slide-in-right,
.slide-in-up {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-up {
  opacity: 0;
  transition: opacity 0.6s ease-in, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left {
  transform: translateX(-100px);
}

.slide-in-right {
  transform: translateX(100px);
}

.slide-in-up {
  transform: translateY(100px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
  transform: translateY(0);
}

/* =================================
   Animação Carrossel
   ================================= */
@keyframes carousel-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* =================================
   Header e Navegação
   ================================= */
.site-header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #333;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 10px;
}
.site-header .logo h1 {
  font-size: 1.2rem;
  margin: 0;
  color: #f5f5f5;
}
.site-header .logo h1 span {
  font-size: 1.8rem;
  color: #519cff;
}
.site-header .menu-principal {
  list-style: none;
  display: flex;
}
.site-header .menu-principal li {
  margin-left: 2rem;
}
.site-header .menu-principal a {
  color: #f5f5f5;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  color: black;
}
.site-header .menu-principal a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #519cff;
  transition: width 0.3s ease;
}
.site-header .menu-principal a:hover::after, .site-header .menu-principal a.active::after {
  width: 100%;
}
.site-header .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: black !important;
}
.site-header .menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #5170ff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.site-footer {
  background-color: #1e1e1e;
  color: #aaa;
  padding: 4rem 0 1.5rem 0;
  border-top: 1px solid #333;
  font-size: 0.95rem;
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.site-footer .footer-col h2, .site-footer .footer-col h3 {
  color: #f5f5f5;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.site-footer .footer-col h2::after, .site-footer .footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #5170ff;
}
.site-footer .footer-col p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #aaa;
}
.site-footer .footer-col.footer-about .logo h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.site-footer .footer-col.footer-about .logo h2::after {
  display: none;
}
.site-footer .footer-col.footer-about .logo h2 span {
  color: #5170ff;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}
.site-footer .footer-col ul li i {
  color: #5170ff;
  margin-right: 0.8em;
  font-size: 1.1em;
  width: 20px;
  text-align: center;
  margin-top: 0.15em;
}
.site-footer .footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-col ul li a:hover {
  color: #519cff;
}
.site-footer .footer-col ul li span {
  flex: 1;
}
.site-footer .footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer .footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgb(144.5, 144.5, 144.5);
}
.site-footer .footer-bottom .credits a {
  color: rgb(144.5, 144.5, 144.5);
  text-decoration: none;
  font-weight: 600;
}
.site-footer .footer-bottom .credits a:hover {
  color: #aaa;
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer .footer-content .footer-col h2::after, .site-footer .footer-content .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-footer .footer-content .footer-col ul li {
    justify-content: center;
    text-align: left;
  }
  .site-footer .footer-content.footer-about .logo {
    display: inline-block;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
  }
}

.goToBack {
  opacity: 0;
  transition: 0.5s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: none;
  border-radius: 50%;
  padding: 10px 12.5px;
  z-index: 20;
  cursor: pointer;
}

.goToBack:hover {
  background: #519cff;
  color: white;
}

.goToBack svg {
  width: 1.2rem;
  height: 1.2rem;
}

.activeBTop {
  background: #5170ff;
  opacity: 1;
  transition: 0.3s ease;
  color: white;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  padding: 80px 0 0 0;
  background-color: #121212;
  margin: 0 auto;
  max-width: 1500px;
  display: flex;
  align-items: center;
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 50%;
  padding: 2rem 5%;
}
.hero-section .hero-content h2 {
  font-size: 3.5rem;
  text-align: left;
  line-height: 1.2;
  color: #f5f5f5;
}
.hero-section .hero-content p {
  font-size: 1.2rem;
  color: #aaa;
  margin: 2rem 0;
}
.hero-section .hero-content .cta-button {
  background: #5170ff;
  color: #f5f5f5;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  align-self: flex-start;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-section .hero-content .cta-button:hover {
  background-color: #519cff;
  transform: translateY(-3px);
}
.hero-section .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-section .video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, #121212 10%, rgba(18, 18, 18, 0.7) 30%, rgba(18, 18, 18, 0) 60%);
}
.hero-section .video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  object-fit: cover;
}
.hero-section #texto-rotativo {
  display: inline-block;
  min-width: 1px;
  min-height: 1em;
}
.hero-section #texto-rotativo::after {
  content: "|";
  display: inline-block;
  margin-left: 3px;
  opacity: 1;
  animation: blink 0.7s infinite;
  color: #5170ff;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh;
  }
  .hero-section .hero-content {
    max-width: 100%;
    padding: 2rem;
    text-align: center;
  }
  .hero-section .hero-content h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
    color: white;
  }
  .hero-section .hero-content .cta-button {
    align-self: center;
  }
  .hero-section .video-container::before {
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.6) 50%, rgba(18, 18, 18, 0.4) 100%);
  }
}
.quem-somos .container {
  max-width: 800px;
  text-align: center;
  padding: 15px;
}
.quem-somos .container h2 {
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  border-image-slice: 1;
  padding-bottom: 5px;
  margin-bottom: 2.5rem;
}

.servicos-diferenciais {
  position: relative;
  width: 100%;
  min-height: 300px;
  padding: 40px 0;
  overflow: hidden;
}
.servicos-diferenciais::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url("/assets/images/bg-quem-somos-2.png");
}
@media (max-width: 768px) {
  .servicos-diferenciais::before {
    background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url("/assets/images/bg-quem-somos-2-mob.png");
  }
}
.servicos-diferenciais::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.servicos-diferenciais .container.overlay-parallax {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.servicos-diferenciais .colunas-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.servicos-diferenciais .coluna-servicos,
.servicos-diferenciais .coluna-diferenciais {
  background: #1e1e1e;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #333;
}
.servicos-diferenciais .coluna-servicos h2,
.servicos-diferenciais .coluna-diferenciais h2 {
  text-align: left;
  font-size: 2rem;
  margin-top: 0;
  border-bottom: 2px solid #519cff;
  padding-bottom: 0.5rem;
  display: inline-block;
}
.servicos-diferenciais .coluna-servicos ul,
.servicos-diferenciais .coluna-diferenciais ul {
  list-style: none;
  padding-left: 0;
}
.servicos-diferenciais .coluna-servicos ul li,
.servicos-diferenciais .coluna-diferenciais ul li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #aaa;
}
.servicos-diferenciais .coluna-servicos ul li::before,
.servicos-diferenciais .coluna-diferenciais ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #519cff;
  font-weight: 700;
  font-size: 1.2rem;
}

.para-seu-negocio {
  text-align: center;
  padding: 35px 20px;
}
.para-seu-negocio .container {
  max-width: 700px;
}
.para-seu-negocio .container h2 {
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  border-image-slice: 1;
  padding-bottom: 5px;
  margin-bottom: 1.5rem;
}
.para-seu-negocio .coluna-para-seu-negocio {
  background: #1e1e1e;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid #333;
}
.para-seu-negocio .coluna-para-seu-negocio ul {
  list-style: none;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}
.para-seu-negocio .coluna-para-seu-negocio ul li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f5f5f5;
  text-align: left;
}
.para-seu-negocio .coluna-para-seu-negocio ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #519cff;
  font-weight: 700;
  font-size: 1.2rem;
}
.para-seu-negocio p {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .para-seu-negocio .container {
    max-width: 90%;
  }
  .para-seu-negocio p {
    font-size: 1rem;
  }
}

.portfolio {
  background: white;
  background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url("/assets/images/logo.JPG");
}
@media (max-width: 768px) {
  .portfolio {
    background-color: white;
    background-image: none;
  }
}
.portfolio {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
}
.portfolio h2 {
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  border-image-slice: 1;
  padding-bottom: 5px;
  margin-bottom: 5.5rem;
}
@media (max-width: 768px) {
  .portfolio h2 {
    color: black;
  }
}
.portfolio .filtros-portfolio {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .portfolio .filtros-portfolio {
    display: flex;
    overflow-x: auto;
    padding: 0.5rem 1rem;
    margin-bottom: 2.5rem;
  }
  .portfolio .filtros-portfolio::-webkit-scrollbar {
    display: none;
  }
  .portfolio .filtros-portfolio {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.portfolio .filtros-portfolio .filtro-btn {
  background: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  color: #f5f5f5;
  border: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 0.7rem 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .portfolio .filtros-portfolio .filtro-btn {
    flex-shrink: 0;
  }
}
.portfolio .filtros-portfolio .filtro-btn:hover, .portfolio .filtros-portfolio .filtro-btn.active {
  background: #51bfff;
  color: #f5f5f5;
}
.portfolio .galeria-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.portfolio .galeria-portfolio .item-portfolio {
  max-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}
.portfolio .galeria-portfolio .item-portfolio:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.portfolio .galeria-portfolio .item-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio .galeria-portfolio .item-portfolio.item-hidden {
  display: none;
}
@media (max-width: 768px) {
  .portfolio .galeria-portfolio .item-portfolio {
    margin: 15px;
  }
}
.portfolio .load-more-container {
  text-align: center;
  margin-top: 2.5rem;
}
.portfolio .load-more-container #load-more-btn {
  cursor: pointer;
  background: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  color: #f5f5f5;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.portfolio .load-more-container #load-more-btn:hover {
  background-color: #519cff;
  transform: translateY(-3px);
}

/* =================================
   Clientes / Setores Atendidos (Atualizado)
   ================================= */
.clientes {
  background-color: #1e1e1e;
  padding: 4rem 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  overflow: hidden;
}
.clientes h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #f5f5f5;
  text-align: center;
}
.clientes .carousel-clientes {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clientes .carousel-wrapper {
  display: flex;
  width: max-content;
  animation: carousel-slide 30s linear infinite;
}
.clientes .carousel-wrapper:hover {
  animation-play-state: paused;
}
.clientes .slide-cliente {
  flex-shrink: 0;
  width: 280px;
  margin: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #121212;
  border-radius: 8px;
  border: 1px solid #333;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.clientes .slide-cliente i {
  font-size: 2.5rem;
  color: #5170ff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.clientes .slide-cliente h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.4;
}
.clientes .slide-cliente:hover {
  transform: translateY(-5px);
  background-color: rgb(30.75, 30.75, 30.75);
}
.clientes .slide-cliente:hover i {
  color: #519cff;
}

.catalogo-section {
  background-color: #1e1e1e;
  padding: 5rem 0;
  text-align: center;
}
.catalogo-section h2 {
  display: inline-block;
  border-bottom: 2px solid transparent;
  border-image-source: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  border-image-slice: 1;
  padding-bottom: 5px;
  margin-bottom: 3.5rem;
}
.catalogo-section p {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.catalogo-section .catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.catalogo-section .catalogo-item {
  background-color: #121212;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #333;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.catalogo-section .catalogo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.catalogo-section .catalogo-preview {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  border: 1px solid #333;
}
.catalogo-section .catalogo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
}
.catalogo-section h3 {
  color: #f5f5f5;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.catalogo-section .download-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  width: 350px;
  background: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%);
  color: #f5f5f5;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .catalogo-section .catalogo-grid {
    gap: 1.5rem;
  }
  .catalogo-section .catalogo-item {
    padding: 1rem;
  }
}
.formulario-contato {
  background-color: white;
}
.formulario-contato h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: #5170ff;
}
.formulario-contato p {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.formulario-contato .contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
.formulario-contato .contato-imagem {
  width: 100%;
  height: auto;
  max-height: none;
}
.formulario-contato .contato-imagem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formulario-contato .contato-imagem iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  border-radius: 8px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.formulario-contato .contato-formulario form {
  background: #1e1e1e;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.formulario-contato .contato-formulario form .form-group {
  margin-bottom: 1.5rem;
}
.formulario-contato .contato-formulario form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #f5f5f5;
}
.formulario-contato .contato-formulario form .form-group input[type=text],
.formulario-contato .contato-formulario form .form-group input[type=email],
.formulario-contato .contato-formulario form .form-group input[type=tel],
.formulario-contato .contato-formulario form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 5px;
  background: #121212;
  color: #f5f5f5; /* correção: removido caractere extra */
  font-size: 1rem;
}
.formulario-contato .contato-formulario form .form-group input[type=text]:focus,
.formulario-contato .contato-formulario form .form-group input[type=email]:focus,
.formulario-contato .contato-formulario form .form-group input[type=tel]:focus,
.formulario-contato .contato-formulario form .form-group textarea:focus {
  outline: none;
  border-color: #5170ff;
  box-shadow: 0 0 0 3px rgba(81, 112, 255, 0.3);
}
.formulario-contato .contato-formulario form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.formulario-contato .contato-formulario form button[type=submit] {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, rgb(81, 112, 255) 0%, rgb(81, 156, 255) 100%); /* correção: removido caractere extra */
  color: #f5f5f5;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.formulario-contato .contato-formulario form button[type=submit]:hover {
  background-color: #519cff;
}
@media (max-width: 992px) {
  .formulario-contato .contato-formulario form {
    box-shadow: none;
  }
  .formulario-contato .contato-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .formulario-contato .contato-imagem {
    order: 2;
    display: block;
    height: auto;
  }
  .formulario-contato .contato-imagem iframe {
    min-height: 400px;
  }
}

/* =================================
   Responsividade (Mobile)
   ================================= */
@media (max-width: 768px) {
  .site-header .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }
  .site-header .menu-principal {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    background: #1e1e1e;
    flex-direction: column;
    padding-top: calc(80px + 2rem);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
  }
  .site-header .menu-principal li {
    margin: 0;
    width: 100%;
  }
  .site-header .menu-principal a {
    display: block;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: white;
  }
  .site-header .menu-principal a:hover {
    background-color: #333;
  }
  .site-header.menu-aberto .menu-principal {
    transform: translateX(0);
  }
  .site-header.menu-aberto .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header.menu-aberto .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-aberto .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .hero-section .hero-content {
    padding: 3rem 5%;
    order: 2;
  }
  .hero-section .hero-content h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-content .cta-button {
    align-self: center;
  }
  .hero-section .video-container {
    order: 1;
    min-height: 60vh;
  }
  .hero-section .video-container::before {
    background: linear-gradient(to top, #121212 0%, rgba(18, 18, 18, 0.5) 30%, rgba(18, 18, 18, 0) 70%);
  }
  .servicos-diferenciais .colunas-wrapper {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
