/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p {
  font-size: 20px;
}

body {
  font-family: 'Urbanist', sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500; /* peso base para texto normal */
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800; /* título forte */
  letter-spacing: -0.5px; /* opcional: para visual mais moderno */
}

h2 {
    font-size: 6.0rem;
}

/* Botões e chamadas à ação */
button,
.cta-button,
.btn {
  font-weight: 600; /* ligeiramente mais forte que o texto, sem ser exagerado */
  font-family: 'Urbanist', sans-serif;
  text-transform: uppercase; /* opcional para look mais técnico */
  letter-spacing: 0.5px;
}

/* Layout geral */
header,
section {
  padding: 60px 20px;
  width: 100vw;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}


p {
  margin-bottom: 15px;
}

a {
  color: #0a3d62;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #1e90ff;
}

/* Navegação */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* Secções com destaques */
#intro {
  background-color: #f8f9fa;
  text-align: center;
}

#intro h1 {
  font-size: 2.8rem;
}


/* Certificações e formação */
.certificacao,
.nivel-formacao,
.imagem-item {
  background: #fff;
  border-left: 4px solid #0a3d62;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Lista de benefícios */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}





/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('../assets/images/bg-eva-network.jpg') top center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: absolute;
  bottom: 110px;
  right: 400px;
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 600px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
  font-size: 5.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-align: center;
}


/* Logo */

.logo-top-left {
  position: absolute;
  top: 100px;
  left: 200px;
  z-index: 10;
}

.logo-top-left img {
  height: 15vh;
  width: auto;
  object-fit: contain;
}

.logo-top-right {
  position: absolute;
  top: 175px;
  right: 200px;
  z-index: 10;
  text-align: center;
}

.logo-top-right img {
  height: 65px;
  width: auto;
  margin-bottom: 5px;
}

.blink-text {
  display: inline-block;
  height: 10vh;
  width: auto;
  padding: 4px 8px;
  animation: blink 1.2s infinite;

}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}



.parallax-section-1 {
  height: 50vh;
  width: 100vw;
  background-image: url('../assets/images/parallax1.jpg'); 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-section-2 {
  height: 50vh;
  width: 100vw;
  background-image: url('../assets/images/parallax2.jpg'); 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.bg-dark-section {
  background-color: #000;
  color: white;
  width: 100vw;
  padding: 160px 50px;
  text-align: center;
}

.bg-dark-section h1 {
  color: #fff; 
  font-size: 2rem;
}

.bg-dark-section h2 {
  color: #00a7e1; /* Azul EVA */
}

.bg-dark-section p {
  color: white;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  gap: 20px;
  padding: 20px 40px 120px;
  width: 100%;
  justify-content: center;     /* centra as colunas na horizontal */
  align-content: center;       /* centra o conteúdo verticalmente se necessário */
  justify-items: center;       /* centra os cards nas células */
}



.card {
  perspective: 1000px;
  width: 250px;
  height: 300px;
  margin-bottom: 140px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}


.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Frente com imagem a preencher */
.card-front {
  background-color: #ddd;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Verso com texto */
.card-back {
  background-color: #0a3d62;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
}
.card-back p {
    font-size: 1rem;
}

.card-back img {
  max-height: 60px;
  width: auto;
  margin-top: 20px;
}

.card h3 {
  margin-bottom: 16px; /* Espaço entre o título e o cartão */
  font-size: 1.2rem;
  text-align: center;
  color: white; /* ou o que preferires */
}

.card h4 {
  margin-top: 16px; /* Espaço entre o cartão e o subtítulo */
  font-size: 1rem;
  text-align: center;
  color: #ccc; /* opcional para contraste */
}


.bg-light-section {
  background-color: #fff;
  color: black;
  width: 100vw;
  padding: 160px 50px;
  text-align: center;
}

.bg-light-section h1 {
  color: black; 
  font-size: 2rem;
}

.bg-light-section h2 {
  color: #00a7e1; /* Azul EVA */
}

.bg-light-section p {
  color: black;
}

/* Imagem do mapa */
.bg-light-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* opcional, para cantos arredondados */
}

.cta-button {
  display: inline-block;
  background-color: #00a7e1; /* Azul EVA */
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #006688; 
  color: white;
}

.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 70%;
  margin: 0 auto;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/*Carousel*/

/* Carousel Container */
#carousel {
  max-width: 70%;
  height: 33vh; /* 1/3 of the screen height */
  display: flex;
  align-items: center; /* Centers images vertically */
  overflow: hidden;
  margin: 0 auto;
  justify-content: center;
}

/* Spacing between images */
#carousel .slick-slide {
  padding: 0 10px; /* Adds spacing between images */
  display: flex;
  justify-content: center; /* Centers image horizontally */
}

/* Ensure images show fully without cropping */
#carousel img {
  width: auto; /* Maintain aspect ratio */
  height: 100%; /* Fill available height */
  object-fit: contain; /* Ensures full image is shown without cropping */
  max-height: 33vh; /* Prevents images from exceeding carousel height */
  border-radius: 10px; /* Optional rounded corners */
}


.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.language-switcher img {
  width: 30px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding-left: 10px;
}

.language-switcher img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .logo-top-left {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    text-align: center;
  }

  .logo-top-left img {
    max-width: 70vw;
  }

  .logo-top-right {
    display: none;

  }

  .logo-top-right img {
    max-width: 25vw;
  }

  .hero-content {
    bottom: 40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90vw;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .bg-light-section {
    padding: 80px 20px;
  }

  .bg-light-section h1 {
    font-size: 1.5rem;
  }

  .bg-light-section h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  
}

/* Ajuste adicional para ecrãs muito pequenos */
@media (max-width: 480px) {
  .bg-light-section {
    padding: 60px 15px;
  }

  .bg-light-section h1,
  .bg-light-section h2 {
    font-size: 1.25rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .bg-light-section {
    padding: 60px 15px;
  }

  .bg-light-section h2 {
    font-size: 1.25rem;
  }

  .bg-light-section img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
  }
}

@media (max-width: 1440px) {
  .logo-top-right {
    display: none;

  }
  .hero-content {
    bottom: 40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90vw;
    padding: 0 10px;
  }
}


.parallax-container {
  position: relative;
  height: 50vh;
  width: 100vw;
  overflow: hidden;
}

.parallax-bg {
  min-height: 150vh;
  position: absolute;
  top: -200%; /* empurra a imagem para cima para cobrir espaço extra durante o scroll */
  left: 0;
  width: 100%;
  height: 150%; /* altura aumentada */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  will-change: transform;
}

@media (max-width: 576px){
  .parallax-bg {
    min-height: 180vh;
    top:-230%
  }
}




.service-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-list {
  list-style: none;
  padding: 0;
  flex: 1 1 250px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  color: #ccc;
}

.service-list li:hover {
  background-color: #111;
  color: #fff;
}

.service-list li.active {
  background-color: #00a7e1;
  color: #000;
  font-weight: bold;
}

.service-list li i {
  font-size: 1.5rem;
  margin-right: 12px;
}

.service-list li.active i {
  color: #000;
}

.service-list img {
  width: 24px;
  height: 24px;
}

.service-content {
  flex: 2 1 500px;
  background-color: #00a7e1;
  color: #000;
  padding: 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

/* IMAGEM COM FLOAT À ESQUERDA */
.service-content img {
  float: left;
  width: 240px;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 24px;
}

/* ZONA DE TEXTO COM CENTRAGEM INTERNA */
.text-box {
  height: 100%;
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  text-align: center;
}

/* TEXTO NORMAL */
.text-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
  margin: 0;
  max-width: 100%;
}

/*Responsivo*/
@media (max-width: 991px) {
  .service-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }

  .service-content {
    flex: 1 1 100%;
    padding: 16px;
    min-height: auto;
  }

  .service-content img {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 16px 0;
  }

  .text-box {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .text-box p {
    text-align: left !important;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }
}


@media (max-width: 576px) {
  .service-list li {
    font-size: 0.95rem;
    padding: 10px 12px;
    gap: 12px;
  }

  .service-list li i {
    font-size: 1.2rem;
  }
}


.section-title {
  padding-bottom: 60px;
}


.image-card-section {
  padding: 80px 50px;
  background-color: #000;
  text-align: center;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #00a7e1;
  text-align: center;
  color: white;
}

.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* legenda */
.image-card p {
  margin: 12px 0;
  font-size: 1rem;
  color: #000;
}


/* Efeito hover opcional */
.image-card:hover img {
  transform: scale(1.05);
}

.section-description {
  text-align: center;
  margin-top: 50px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.text-block {
  flex: 1 1 500px;
}



.subtitle {
  font-size: 1.25rem;
  margin-bottom: 60px;
  font-weight: 400;
}

.topic {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.topic i {
  font-size: 2.5rem;
  color: #00a7e1; /* azul EVA */
  flex-shrink: 0;
}
.topic-text {
  text-align: left;
}

.topic-text h5 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.topic-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #ccc;
  max-width: 400px;
}

.image-block {
  flex: 1 1 400px;
  text-align: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.9); /* transparent overlay */
      color: white;
      padding: 15px 30px;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      margin: 0 10px;
    }
.navbar-brand img {
  max-height: 30px; /* Adjust height as needed */
  width: auto; /* Maintains aspect ratio */
}