@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
:root {
            --primary-color: #F53838;
            --text-dark: #415464;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        html { scroll-behavior: smooth; }
        body { margin: 0; padding-top: 120px;}

        /* --- NAVBAR --- */
        .navbar-fixed {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #fff;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
			    height: 100px;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1350px;
            margin: 0 auto;
            padding: 15px 20px 5px 20px;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 15px;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            padding: 8px 16px;
            transition: 0.3s;
            font-weight: 500;
			font-family: 'Righteous', sans-serif;
        }

        .nav-menu a.active {
            
            color: #76b831 !important;
            border-radius: 4px;
        }

        .lang-selector { font-size: 14px; font-weight: bold; color: var(--text-light); }
        .lang-selector a { text-decoration: none; color: inherit; }

        /* LINHA COM QUEBRA */
        .divider-wrapper { display: flex; align-items: center; width: 100%; }
        .divider-line {
    flex: 1;
    height: 2px;
    /* Começa na cor, vai para branco a 50% (meio da linha) e volta à cor */
    background: linear-gradient(to right, #47b385 0%, #ffffff 50%, #47b385 100%);
}
       /* Ajuste do contentor da imagem */
.divider-img {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-img img {
    width: 200px; /* Ajusta conforme o teu logo */
    height: auto;
}

        /* --- SECOES --- */
        section { padding: 80px 0; scroll-margin-top: 100px; }
        .section-title { text-align: center; margin-bottom: 50px; }
		
		/* Linha da Esquerda: do Verde para o Branco */
/* LINHA DA ESQUERDA (Antes da imagem) */
.divider-line:first-child {
    flex: 1;
    height: 2px;
    /* Começa branco, vira verde a meio e termina verde */
    background: linear-gradient(to right, #47b385 0%, #ffffff 50%, #ffffff 50%, #47b385 100%);
}

/* LINHA DA DIREITA (Depois da imagem) */
.divider-line:last-child {
    flex: 1;
    height: 2px;
    /* Começa na cor verde, vira branco exatamente a meio (50%) e segue branco até ao fim */
    background: linear-gradient(to right, #47b385 0%, #ffffff 50%, #ffffff 50%, #47b385 100%);
}

/* Ajuste do contentor da imagem */
.divider-img {
    padding: 0 15px;
}

#projectsTitle{
	    color: #415464;
    font-size: 3rem;
    font-family: 'Popins', sans-serif;
	font-weight: 600;
}
#projparagraph1{
          font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: justify;  
}

#projparagraph2{
          font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: justify;  
}

#projparagraph3{
          font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: justify;  
}


.hero {
    width: 100%;
    
    height: 800px;
    margin: 0 auto;  /* Centra o hero na página */
   background-image: url('../img/back/CECOLAB_ElementosWebsite_Elemento7_TICBioIn_v2025.05.14.png');
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;
}


.hero-content {
        max-width: 75%;
    padding: 0 20px;
    margin-left: 10%;
}

.hero-content h1 {
    font-family: 'Righteous', cursive; /* A tua fonte de destaque */
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}
.hero-side-img {
    position: absolute; /* Posicionamento livre dentro do Hero */
    left: -580px;
    top: 20px;
    width: 800px;       /* Ajusta o tamanho da tua imagem esquerda */
    height: auto;
    z-index: 10;        /* Garante que fica por cima do fundo */
    
    /* Se quiseres que ela ignore o scroll e fique sempre no ecrã: */
    /* position: fixed; top: 150px; left: 20px; */
}

#descHero{
	    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 300;
}

.hero-img{
	    width: 50%;
    margin-left: 27%;
}

#herobtm{
	    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
}

.hero-btm{
	    margin-top: 10%;
    margin-left: 25%;
}

.hero-img-fundo{
	    width: 85%;
}

.prjBtn{
	max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.btn1{
	background-color:#415464;
	    height: 55px;
    width: 225px;
    border-radius: 10px;
}
#btnPrj{
	color:white;
	font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.image-container {
    position: relative; /* Define o referencial para as imagens dentro dele */
    width: 100%;        /* Ajusta ao tamanho que desejares */
    height: auto;
}

.img-base {
    width: 100%;         /* A imagem de fundo ocupa o container todo */
    display: block;
}

.img-overlay {
    position: absolute;  /* Flutua sobre a imagem base */
    top: 20px;           /* Distância do topo */
    left: 20px;          /* Distância da esquerda */
    width: 100px;        /* Tamanho da imagem que fica por cima */
    z-index: 2;          /* Garante que esta imagem fica na frente */
    
    /* Opcional: adicionar uma sombra para dar profundidade */
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
}

#ativitiesTitle{
	    color: #415464;
    font-size: 3rem;
    font-family: 'Popins', sans-serif;
    font-weight: 600;
}
#servicos{
	width: 100%;
    position: relative;
    height: 150vh;
    margin: 0 auto;  /* Centra o hero na página */
   background-image: url('../img/back/CECOLAB_ElementosWebsite_Elemento5_TICBioIn_v2025.05.14.png');
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;

}

#actividades1{
	font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: justify;
    font-size: 1.5rem;
}
.act-aux {
    padding: 20px;
    text-align: center;
    max-width: 50%;
    margin: auto;
}

.carousel-container {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
      
      
      border-radius: 2rem;
      
      
    }

    .carousel-wrapper {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 580px;
      padding: 1rem 0;
    }

    .carousel-track {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      min-height: 560px;
    }

    .carousel-card {
      position: absolute;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.5);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 460px;
      border: 2px solid rgba(255, 255, 255, 0.25);
      transform-origin: center;
      will-change: width, z-index, opacity, transform;
      left: 50%;
      transform: translateX(-50%);
    }

    .card-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 1.8rem 2rem;
      transition: background 0.3s ease;
    }

    .carousel-card:hover .card-content {
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    }
.carousel-card.style-centered .card-content {
      justify-content: center;
      padding: 2rem;
    }
    .card-title {
      font-size: 2rem;
      font-weight: 800;
      color: white;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      letter-spacing: -0.02em;
      
      backdrop-filter: blur(8px);
      padding: 0.5rem 1.5rem 0.5rem 1.2rem;
      border-radius: 60px;
      margin-bottom: 0.8rem;
    }

    .card-description {
      font-size: 1rem;
      font-weight: 500;
      color: #fef9ef;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
      max-width: 80%;
          text-align: justify;
      
      padding: 0.5rem 1.5rem;
      border-radius: 40px;
      line-height: 1.5;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      width: 56px;
      height: 56px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: bold;
      color: white;
      cursor: pointer;
      transition: all 0.25s ease;
      z-index: 100;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: translateY(-50%) scale(1.08);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .nav-left {
      left: 10px;
    }

    .nav-right {
      right: 10px;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .dot {
      width: 10px;
      height: 10px;
      background-color: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .dot.active {
      width: 32px;
      border-radius: 20px;
          background: linear-gradient(90deg, #6ac0ac, #76b831);
      box-shadow: 0 0 10px rgba(241, 39, 17, 0.5);
    }

	
	#precos{
	width: 100%;
    position: relative;
    height: 125vh;
    margin: 0 auto;  /* Centra o hero na página */
   background-image: url('../img/back/CECOLAB_ElementosWebsite_Elemento5_TICBioIn_v2025.05.14.png');
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;

}

#objectivesTitle{
	    color: #415464;
    font-size: 3rem;
    font-family: 'Popins', sans-serif;
    font-weight: 600;
}

.card-description2 {
    font-size: 1rem;
    font-weight: 500;
    color: #fef9ef;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    text-align: justify;
    backdrop-filter: blur(6px);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    line-height: 1.5;
    margin-top: 120px;
}
#sobre{
	width: 100%;
    position: relative;
    
    margin: 0 auto;  /* Centra o hero na página */
   background-image: url('../img/back/CECOLAB_ElementosWebsite_Elemento4_TICBioIn_v2025.05.14.png');
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;
	margin-top:-115px;
}
#newsTitle{
	   color: white;
    font-size: 3rem;
    font-family: 'Popins', sans-serif;
    font-weight: 600;
	    margin-top: 6%;
}

.newsp{
	color:white;
	font-family: 'Popins', sans-serif;
    font-weight: 600;
	font-size: 2rem;
}

#idea{
	width: 100%;
    position: relative;
    
    margin: 0 auto;  /* Centra o hero na página */
   
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;
	
}

.image-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* O segredo: a div que envolve as fotos */
.wrapper-fotos {
  position: relative; /* Necessário para a img-topo se basear aqui */
  width: 100%;
  margin-bottom: 20px; /* Espaço para o parágrafo que vem a seguir */
}

/* A imagem de fundo define o tamanho do bloco */
.img-base {
  width: 100%;
  height: auto;
  display: block; /* Remove espaços vazios na base da imagem */
  border-radius: 10px; /* Opcional */
}

/* A imagem que fica "dentro" ou sobreposta */
.img-topo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

/* Estilização básica para o texto e botão seguirem o fluxo */

#co1{
	margin-top: -36%;
    font-size: 3.5rem;
    color: white;
    z-index: 1;
    font-family: 'Poppins';
    font-weight: 600;
}
.btn2 {
  background-color:#415464;
	    height: 55px;
    width: 225px;
    border-radius: 10px;
	z-index: 1;
}

#btnCo{
	color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
	z-index: 1;
}

#container-regulamento {
  margin-top: 5%;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 1;
}

/* 2. Forçar a cor branca em TUDO o que estiver lá dentro */
#container-regulamento, 
#container-regulamento .texto-branco, 
#container-regulamento a {
  color: #FFFFFF !important;
  text-decoration: none; /* Remove sublinhado se não quiseres */
}

/* 3. Estilo específico do Link para ele não "desaparecer" visualmente */
#container-regulamento a {
  text-decoration: underline; /* Mantém o sublinhado só no link */
  cursor: pointer;
}

/* 4. Efeito de Hover (opcional, mas recomendado) */
#container-regulamento a:hover {
  opacity: 0.7;
}

#passos{
	background-color:#e7f4ef;
}

#copromotorestitle{
	    color: #415464;
    font-size: 3rem;
    font-family: 'Popins', sans-serif;
    font-weight: 600;
}

.row-responsiva {
  display: grid;
  /* Cria colunas de pelo menos 300px. Se não houver espaço, elas empilham. */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; /* Espaço entre as colunas */
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.coluna {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  width: 60%;
}

/* Opcional: Ajuste para ecrãs muito pequenos (mobile) */
@media (max-width: 600px) {
  .row-responsiva {
    grid-template-columns: 1fr; /* Força 1 coluna em ecrãs pequenos */
    gap: 15px;
  }
}

#contacto{
	background-color:#b8e2d2;
	color:white;
}

.divider-img-c {
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 15px;
}

.divider-img-c img {
    width: 40px; /* Ajusta conforme o teu logo */
    height: auto;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Para ser responsivo no telemóvel */
  gap: 40px;
  align-items: flex-start;
}

/* Coluna Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 50px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item .icon {
  font-size: 2rem; /* Substitui por SVGs do FontAwesome para ficar igual à imagem */
}

.info-item p {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.4rem;
}

/* Coluna Formulário */
.contact-form {
  flex: 1;
  min-width: 300px;
  margin-top: 40px;
}

.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 15px; /* Bordas arredondadas como na imagem */
  font-family: inherit;
  font-size: 1rem;
  color: #666;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

.btn-container {
  display: flex;
  justify-content: flex-end; /* Alinha o botão à direita */
}

.btn-enviar {
  background-color: #4eb085; /* Verde mais escuro do botão */
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background-color: #3e8e6b;
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info {
    padding-top: 0;
    order: 2; /* Informações passam para baixo do form no mobile se preferires */
  }
}

#ticbiofooter{
	background-image: url('../img/back/CECOLAB_ElementosWebsite_Elemento2_TICBioIn_v2025.05.14.png');
	    margin-top: -70px;
		
   
    background-size: 100% 100%; /* Força a imagem a ocupar o contentor */
    background-position: center;
}
.foot-img-fundo{
	width: 80%;
    left: 1%;
    margin-left: 12%;
    margin-top: 15%;
}