/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F4F6FA;
  color: #333;
  line-height: 1.6;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Base header (desktop) */
header {
  background-color: #1f1f1f;
  padding: 12px 0;
  color: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 300px;
}

.logo img {
  width: 200px;
  display: block;
}

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

/* Menu principal */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav ul li {
  position: relative;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 8px 6px;
  font-size: 1rem;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 6px;
  display: inline-block;
  cursor: pointer;
}

nav a:hover,
nav a.active {
  color: #8a6cff;
  background-color: rgba(138, 108, 255, 0.15);
}

/* Submenu desktop */
nav ul li ul.submenu {
  position: absolute;
  top: 38px;
  left: 0;
  background-color: #292929;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  list-style: none;
  padding: 10px 0;
  display: flex;
  flex-direction: column; /* ← faz os itens ficarem um abaixo do outro */
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  z-index: 1000;
}

/* Mostrar submenu no hover desktop */
@media (hover: hover) and (pointer: fine) {
  nav ul li.has-submenu:hover > ul.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Itens do submenu */
nav ul li ul.submenu li a {
  padding: 10px 20px;
  font-size: 0.95rem;
  color: #ddd;
  display: block;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 8px;
}

nav ul li ul.submenu li a:hover {
  background-color: #8a6cff;
  color: #fff;
}

/* Seta ao lado de Serviços */
.has-submenu > a .arrow {
  margin-left: 6px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: inline-block;
}


/* MENU MOBILE */

/* Esconder menu e submenu inicialmente */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s linear;
}

/* Mobile styles */
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav {
    order: 2;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    background-color: #1f1f1f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-radius: 0 0 10px 10px;
  }

  nav.open ul {
    max-height: 500px; /* bastante espaço para menu */
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Submenu no mobile: escondido e com transição */
  nav ul li ul.submenu {
    position: static;
    background-color: #2a2a2a;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    border-radius: 0 0 10px 10px;
  }

  /* Submenu aberto no mobile */
  nav ul li.open > ul.submenu {
    max-height: 400px; /* suficiente */
    opacity: 1;
    visibility: visible;
  }

  /* Seta rotacionada quando aberto */
  nav ul li.open > a .arrow {
    transform: rotate(180deg);
  }

  /* Mostrar menu toggle */
  .menu-toggle {
    display: flex;
  }

  /* Animação da cruz no botão hamburger ao abrir */
  nav.open + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  nav.open + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  nav.open + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/Banner-home.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}

.hero-text {
  top: 70%;
  position: absolute;
  bottom: 40px;
  right: 60px;
  color: white;
  text-align: right;
  font-size: 24px;
  max-width: 500px;
  z-index: 1;
}

.hero-text h1 {
  font-weight: 700;
  line-height: 1.2;

}

/* About Section */
.about {
  background-color: #fff;
  padding: 60px 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.about-text p {
  font-size: 16px;
  color: #444;
}

.about-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
}




/*NOSSOS SERVIÇOS*/
.servicos h2 {
  text-align: center;
  margin-top: 40px;
}

.servicos {
  padding: 60px 0;
  background-color: #f8f9fb;
}

.servicos h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f1f1f;
}

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

.card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  font-size: 20px;
  margin: 16px;
  color: #1f1f1f;
}

.card p {
  font-size: 14px;
  margin: 0 16px 16px 16px;
  color: #555;
}

.card a{
  text-decoration: none;
}

/* Responsivo */
@media (max-width: 1024px) {
  .grid-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
}

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




/*Noticias e Materias*/

.noticias {
  margin-bottom: 120px;
}


.noticias h2 {
  text-align: center;
  margin-top: 40px;
}

.noticia-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 2rem 0;
}

.noticia-item img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin: 1rem;
}

.noticia-texto {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
}

.noticia-texto h3 {
  background: linear-gradient(to right, #8251EC, #3F8CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}


@media (max-width: 768px) {
  .noticia-item {
    flex-direction: column;
    text-align: center;
  }

  .noticia-texto {
    padding: 0;
  }

  .video-grid {
    flex-direction: column;
    align-items: center;
  }


  .noticia-item {
    flex-direction: column;
    text-align: center;
  }

  .noticia-texto {
    padding: 0;
  }
}


/*SUBMIT2025*/
.websubmit-section {
  padding: 4rem 2rem;
  background-color: #E6E9F0;
}

.websubmit-section h2 {
  text-align: center;
}

.websubmit-section p {
  text-align: center;
  margin-bottom: 2rem;
}

.websubmit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.websubmit-item {
  max-width: 200px;
  text-align: center;
}

.websubmit-item img {
  width: 100%;
  border-radius: 10px;
}

.websubmit-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}




/* VIDEOS E YOUTUBE*/
.video-section {
  padding: 8rem 2rem;
  background-color: #fff;
  margin-bottom: 100px;
}

.video-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.video-title img {
  width: 40px;
  height: 40px;
}

.video-title h2 {
  font-size: 2rem;
  color: #1f2937;
  margin: 0;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.video-grid iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/*PÁGINA QUEM SOMOS*/
.hero-sobre {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/banner-sobre.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}

.titulo-h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
}

.titulo-h1 h1 {
  margin: 0;
  font-size: 3rem;
  /* opcional: tamanho do texto */
}

.titulo-h1 p {
  font-size: 20px;
}

/* About Section */
.sobre {
  margin-top: 100px;
  padding: 60px 0;
}

.sobre-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 200px;
}

.sobre-text {
  flex: 1;
  min-width: 300px;
  width: 0%;
}

.sobre-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.sobre-text p {
  font-size: 16px;
  color: #444;
}

.sobre-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sobre-img img {
  border-radius: 40px;
  max-width: 100%;
  height: auto;
}

.btn-contato {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #8251EC, #3F8CFF);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(63, 140, 255, 0.3);
  cursor: pointer;
}

.btn-contato:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(63, 140, 255, 0.5);
}


.btn-saber {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(#D6F6E7);
  cursor: pointer;
}

.btn-saber:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(#D6F6E7);
}



/*Valores*/

.valores-section {
  padding: 80px;
  background-color: #E6E9F0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

}

.valores-text,
.valores-img {
  flex: 1;
  min-width: 300px;
}

.valores-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}





/*PÁGINA ROBÓTICA E DISPOSITIVOS*/
.hero-robotica {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/robotica.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-robotica::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}



/*Inovação e Propósito*/

.proposito {
  margin: 0 auto;
  justify-content: center;
  max-width: 1200px;
  padding: 60px 0;
}

.desc-robotica {
  border-radius: 30px;
  background-color: #EEF1F9;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.proposito h1 {
  margin-bottom: 20px;
}


.desc-robotica p {
  font-size: 16px;
  color: #444;
}


/*Robótica com proposito*/

.robotica-section {
  margin-bottom: 120px;
}


.robotica h2 {
  text-align: center;
  margin-top: 40px;
}

.robotica-item {
  display: flex;
  align-items: stretch;
  /* Faz os itens filhos ocuparem mesma altura */
  gap: 2rem;
  margin: 3rem 0;
}

.robotica-item img {
  height: 100%;
  width: auto;
  max-width: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.robotica-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.robotica-texto p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}


.robotica-texto h3 {
  color: #1f1f1f;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .robotica-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .robotica-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .robotica-texto {
    padding: 1rem;
  }
}





/*PÁGINA DE DESENVOLVIMENTO E SISTEMAS*/
.hero-desenvolvimento {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/desenvolvimento.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-desenvolvimento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}


/*Sistemas desenvolvidos*/
.sitemas {
  margin-bottom: 100px;
  background-color: #F7F7F8;
  padding: 3rem 1rem;
}

.sitemas h2 {
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
  font-size: 30px;
}


.Project {
  max-width: 1200px;
  margin: 0 auto 2rem;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.detahes {
  flex: 1;
  min-width: 300px;
}

.nome-data {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 1rem;
}

.nome-data h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem 0;
  color: #4b5563;
}

.nome-data p {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  color: #1f2937;
}

.description-project h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

.description-project p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-top: 1rem;
}

.imagem-project {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-project img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;

}


@media (max-width: 768px) {
  .Project {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
  }

  .nome-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sitemas,
  .aplicativos h2 {
    font-size: 1.5rem;
  }


}





/*PÁGINA DE APLICATIVOS*/
.hero-aplicativo {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/aplicativo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-aplicativo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}



.aplicativos {
  margin-bottom: 100px;
  background-color: #F7F7F8;
  padding: 3rem 1rem;
}

.aplicativos h2 {
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: left;
  font-size: 30px;
}





/*PÁGINA DE CONSULTORIA DE PROJETO*/
.hero-consultoria {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url(/images/consultoria.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-consultoria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* opacidade da camada escura */
  z-index: 1;
}



.consultoria-section {
  margin-bottom: 200px;
  margin: 0 auto;
  justify-content: center;
  max-width: 1440px;
  padding: 60px 0;
}


.consultoria-section h2 {
  font-size: 30px;
  margin-top: 40px;
}

.consultoria-item {
  max-width: 1200px;
  margin: 4rem auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.consultoria-item img {
  flex: 1;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
}

.consultora-title {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.consultoria-texto h3 {
  margin: 0 0 0.5rem;
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
}

.consultoria-texto p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #374151;
}

.consultoria-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resultados{
  text-align: center;
}


@media (max-width: 768px) {
  .consultoria-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consultoria-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .consultoria-texto {
    padding: 1rem;
  }
}

@media (max-width: 1024px) {
  .consultoria-item {
    flex-direction: column;
    align-items: center;
  }

  .consultoria-item img,
  .consultora-title {
    flex: 1 1 100%;
    max-width: 100%;
  }
}




/*PÁGINA DE FALE COM A WEBMG*/

.contato {
  margin-bottom: 150px;
  transition: background-color 0.4s ease;
  cursor: default;
}

.fale-content {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  transition: transform 0.4s ease;
}

.contato:hover .fale-content {
  transform: translateY(-10px);
}

.fale-text {
  flex: 1;
  min-width: 300px;
  transition: color 0.4s ease;
}

.contato:hover .fale-text h1 {
  color: #6C4BC2; /* tom roxo para destaque */
  transform: translateX(15px);
  transition: color 0.4s ease, transform 0.4s ease;
}

.contato:hover .fale-text p {
  color: #666;
  transition: color 0.4s ease;
}

.fale-text h1 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #1f1f1f;
  transition: color 0.4s ease, transform 0.4s ease;
}

.fale-text p {
  max-width: 420px;
  font-size: 25px;
  color: #444;
  transition: color 0.4s ease;
}

.fale-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contato:hover .fale-img {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(108, 75, 194, 0.4);
  border-radius: 16px;
}

.fale-img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  transition: inherit;
}


/*Formulário*/
.form-social-section {
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #8251EC, #6C4BC2);
  color: #fff;
}

.form-section, .social-section {
  flex: 1;
  min-width: 300px;
}

.form-section h3, .social-section h3 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: bold;
  
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section input,
.form-section textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}

.form-section button {
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-section button:hover {
  background: #111;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-icons img {
  width: 40px;
  height: 40px;
}

/* Inputs e textarea: foco */
.form-section input:focus,
.form-section textarea:focus {
  outline: none;
  border: 2px solid #8251EC;
  box-shadow: 0 0 8px rgba(130, 81, 236, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Botão: brilho suave no hover */
.form-section button:hover {
  background: #111; /* já tinha */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Ícones sociais: zoom e sombra */
.social-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(130, 81, 236, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media (max-width: 768px) {
  .form-social-section {
    flex-direction: column;
    padding: 2rem 1rem;
  }
}



.cuidamos {
  margin-bottom: 100px;
  margin-top: 200px;
  background-color: #E6E9F0;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  transition: background-color 0.4s ease;
  cursor: default;
}

.cuidamos:hover {
  background-color: #d4d8e3; /* tom levemente mais escuro para hover */
}

.cuidamos-section {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* para responsividade */
  transition: transform 0.4s ease;
}

.cuidamos:hover .cuidamos-section {
  transform: translateY(-10px);
}

.cuidamos-text {
  flex: 1 1 400px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.cuidamos:hover .cuidamos-text {
  color: #3b4a6b; /* muda para um azul escuro suave */
  transform: translateX(15px);
}

.cuidamos-text h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: inherit; /* para respeitar a cor do hover */
  line-height: 1.3;
  margin: 0;
  transition: inherit;
}

.cuidamos-img {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cuidamos:hover .cuidamos-img {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 74, 107, 0.25);
}

.cuidamos-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  transition: inherit;
}

/* Responsividade */

@media (max-width: 900px) {
  .cuidamos-section {
    flex-direction: column;
    text-align: center;
  }

  .cuidamos-text {
    flex: none;
    margin-bottom: 30px;
  }
  
  .cuidamos-text h2 {
    font-size: 2.2rem;
  }

  .cuidamos-img {
    flex: none;
  }
}

@media (max-width: 480px) {
  .cuidamos-text h2 {
    font-size: 1.8rem;
  }

  .cuidamos {
    padding: 40px 15px;
  }
}



/*Contato*/
.whatsapp {
  margin-bottom: 200px;
  background-color: #E6E9F0;
  max-width: 400px;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  text-align: center;
  margin: 40px auto;
  transition: transform 0.3s ease;
}

.whatsapp:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.icon-zap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.icon-zap h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  user-select: none;
}

.icon-zap img {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon-zap img:hover {
  transform: rotate(20deg) scale(1.2);
}

.whatsapp p {
  margin: 6px 0;
  font-size: 1.1rem;
  line-height: 1.4;
  user-select: none;
  transition: color 0.25s ease;
}

.whatsapp p:first-of-type {
  font-weight: 600;
  cursor: pointer;
  color: #25D366; /* verde whatsapp */
}

.whatsapp p:first-of-type:hover {
  color: #128C7E;
  text-decoration: underline;
}

/* Responsividade */

@media (max-width: 480px) {
  .whatsapp {
    max-width: 90%;
    padding: 25px 20px;
  }
  
  .icon-zap h2 {
    font-size: 1.5rem;
  }
  
  .icon-zap img {
    width: 30px;
    height: 30px;
  }
  
  .whatsapp p {
    font-size: 1rem;
  }
}
























































































/*FOOTER*/
.footer {
  background-color: #111;
  color: #ccc;
  padding: 3rem 2rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo img {
  width: 160px;
}

.footer-logo p {
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-contact div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;

}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}


.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-social a img {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;

}

.footer-social a:hover {
  color: #fff;
}



.copyright {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
  background-color: #f9fafb;
}