/* Reset Geral */

body {
  margin: 0;
  padding: 0;
  background-color: #000;
}

body, html {
  font-family: Arial, sans-serif;
  height: 100%;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Cabeçalho */

/* Estilo base */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 99999999;
  padding: 15px 0px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  width: 100px;
  height: auto;
}

.logo {
  width: 120px;
  margin-left: 15px;
  flex: 1;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  padding-right: 50px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-family: sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ffa500;
}

.btn-login {
  background-color: #ffa500;
  padding: 10px 15px;
  margin-right: 15px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 20px;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background-color: #e69500;
}

/* Botão do menu (hambúrguer) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #002f4f;
    padding: 10px 0;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn-login {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .navbar {
    align-items: flex-start;
  }
}

.hero {
  position: relative;
  height: 100vh;
  background: #000;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-text h1 {
  color: #fff;
  font-size: 3rem;
}

.hero-text p {
  color: #fff;
  font-size: 1.2rem;
  margin: 10px 0;
}

.btn-cta {
  background-color: #f60;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Seções */
.quem-somos,
.servicos,
.contactos {
  padding: 50px 0;
  background-color: #f4f4f4;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.product-list {
  display: flex;
  justify-content: space-between;
}

.product {
  width: 30%;
  padding: 20px;
  background-color: #fff;
  text-align: center;
}

.product h3 {
  font-size: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

/* .carousel-button:hover {
      background: rgba(0, 0, 0, 0.7);
    }

    .carousel-button.prev {
      left: 20px;
    }

    .carousel-button.next {
      right: 20px;
    } */

.servicos {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.servicos h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product {
  position: relative;
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.product:hover {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product:hover .overlay {
  opacity: 1;
}

.quem-somos {
  background-color: #f5f5f5;
  padding: 80px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.quem-somos .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.quem-somos h2 {
  font-size: 2.5rem;
  color: #0a2c4d;
  margin-bottom: 40px;
  position: relative;
}

.quem-somos h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #f7931e;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.quem-somos p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  padding: 0 10px;
}

.empresa-blocos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.linha {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.bloco {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 25px;
  flex: 1 1 400px;
  max-width: 480px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bloco h3 {
  font-size: 1.5rem;
  color: #0a2c4d;
  margin-bottom: 15px;
  border-left: 4px solid #f7931e;
  padding-left: 10px;
}

.bloco p,
.bloco li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.bloco ul {
  padding-left: 20px;
}

.bloco li {
  list-style: none;
  position: relative;
  padding-left: 20px;
}

.bloco li::before {
  content: "✔";
  color: #f7931e;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.footer {
  background-color: #001f3f; /* azul escuro tipo petróleo */
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #f7931e; /* laranja vibrante da 4F */
}

.footer-logo p {
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.6;
}

.social-links a {
  margin-right: 15px;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #f7931e); /* brilho suave laranja no hover */
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a i {
  font-size: 1.5rem;
}

.social-links a:hover {
  color: #f7931e;
  transform: scale(1.05);
}

/*Text*/
