body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #2c3e50;
  color: #fff;
  padding: 0px 20px 0px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.topo {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  /*background-color: #223344;*/
  text-align: center;
}

.logo-wrapper {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  }

.menu-wrapper {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}

.titulo-header {
  grid-column: 1 / span 2;
  grid-row: 2;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.logo {
  max-width: 80%;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
}

nav {
  text-align: center;
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f39c12;
}

section {
  padding: 40px 20px;
  text-align: center;
  background-color: #ecf0f1;
}

section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

section p {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 40px;
}

section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  font-size: 16px;
  color: #2c3e50;
}

section ul li {
  margin: 15px 0;
  font-weight: bold;
  transition: color 0.3s ease;
}

section ul li:hover {
  color: #f39c12;
}


.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.image-box {
  width: 250px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.image-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}


.image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #34495e;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVO */
@media screen and (max-width: 600px) {
	
	.image-box {
	  width: 100%;
	  background-color: #fff;
	  border-radius: 12px;
	  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	  padding: 10px;
	  box-sizing: border-box;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 10px;
	  text-align: center;
	  overflow: hidden;
	}	

	h1 {
		margin: 0 0 0 30px!important;
		font-size: 32px;
	}
	
  .topo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
  }

  .logo-wrapper {
    justify-self: center;
	margin-right: -60px;
	margin-bottom:-30px;
  }

  .menu-wrapper {
    justify-self: end;
	margin-top: -40px;
  }

  .logo {
    max-height: 200px;
  }

  .menu-toggle {
    display: block;
    margin-top: 15px;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 20px;
    background-color: #2c3e50;
    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }

  .image-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 601px) {
	
	.espaco_topo{
		margin-bottom:-40px;
	}	
	
  .topo {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 0px 100px 0px 100px;
    /*background-color: #223344;*/
  }

  .logo-wrapper {
    flex: 0 0 auto;
    padding-center: 10px; /* reduzido para aproximar da esquerda */
  }

  .logo {
    max-height: 220px;
    width: auto;
    display: block;
  }
  

  .titulo-header {
    flex: 1;
    text-align: center;
    padding-right: 250px; /* garante um respiro na direita */
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .menu-wrapper {
    display: none;
  }

  nav {
    padding: 0 20px 10px 20px;
    text-align: center;
  }

  nav ul {
    justify-content: flex-end;
  }
}

  #whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  #whatsapp-float img {
    width: 100%;
    height: 100%;
    padding: 10px;
  }

  #whatsapp-float:hover {
    background-color: #128C7E;
  }

    /* Estilos para o modal */
    #modal-whatsapp {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.7);
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .modal-content {
      background-color: #28a745;
      padding: 20px;
      border-radius: 8px;
      width: 300px;
      text-align: center;
      color: #fff;
      position: relative;
    }

    .modal-content h2 {
      margin-bottom: 15px;
    }

    .modal-content button.close-btn {
      background-color: #ffffff;
      color: #28a745;
      border: none;
      padding: 5px 10px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 4px;
      position: absolute;
      top: 10px;
      right: 10px;
    }

    .modal-content input {
      width: 90%;
      margin-bottom: 10px;
      padding: 10px;
      border-radius: 4px;
      border: none;
    }

    .modal-content button.enviar-btn {
      background-color: #ffffff;
      color: #28a745;
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 4px;
      margin-top: 10px;
    }

    #whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }

    #whatsapp-float img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
    }
	
	/* Estilos para o botão Scroll to Top */
	#scrollTopBtn {
		position: fixed;
		bottom: 15px;  /* Distância do botão Scroll to Top */
		right: 85px;
		background-color: #007bff;
		color: white;
		border: none;
		border-radius: 50%;
		width: 50px;
		height: 50px;
		font-size: 24px;
		cursor: pointer;
		display: none;  /* Inicialmente escondido */
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	/* Efeito de hover */
	#scrollTopBtn:hover {
		background-color: #0056b3;
	}
	
	