
      :root {
        --davinci-blue: #18889e;
        --davinci-green: #31ac9b;
		--davinci-green-claro: #4dcbb9;
        --davinci-orange: #f57f20;
        --davinci-dark: #2c3e50;
      }
      
      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
      }
      
      .hero-section {
        background: linear-gradient(rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.3)), url('/exame-ielts-ingles/img/banner-ielts.webp');
        background-size: cover;
        background-position: center;
        padding: 200px 0;
        color: white;
      }
      /* --- cor de fundo azul da faixa --- */
		.nav-section {
			background: #04B0A6;
			background: linear-gradient(90deg, rgba(4, 176, 166, 1) 0%, rgba(0, 123, 151, 1) 100%);

			position: fixed;      /* fica no topo */
			top: 0;
			left: 0;
			width: 100%;
			z-index: 1030;        /* acima do herói */
		}

		/* --- container flex para alinhar logotipo + menu --- */
		.navbar-container {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		/* --- tira bullets e põe items na horizontal --- */
		.navb-items {
			list-style: none;
			margin: 0;
			padding: 0;
			display: flex;
			gap: 1.25rem;       /* espaço entre itens */
		}

		.navb-items li { margin: 0; }

		/* --- links do menu --- */
		.menu-butao-link {
			color: #fff;          /* texto branco */
			text-decoration: none;
			font-weight: 600;
			padding: .75rem 1rem;
			border-radius: 30px;
			transition: background .25s;
		}
		
		
		
		/* 1.  menu horizontal ≥ lg (já tens, mas reforço) */
@media (min-width: 992px) {
  .navb-items          { flex-direction: row;   gap: 1.25rem; }
  .menu-butao-link.btn { border-radius: 30px;  padding: .75rem 1rem; }
}

/* 2.  menu vertical < lg  (mobile) */
@media (max-width: 991.98px) {

  /* faz o UL empilhar verticalmente */
  .navb-items {
    flex-direction: column;      /* <‑‑ muda para coluna   */
    align-items: stretch;        /* ocupa 100 % de largura */
    gap: 0;                      /* sem espaço lateral     */
    padding: .5rem 0;
    width: 100%;
  }

  /* cada LI ocupa a largura toda */
  .navb-items .nvbr-item { width: 100%; }

  /* links em bloco – botão “touch‑friendly” */
  .menu-butao-link.btn {
    display: block;
    width: 100%;
    text-align: center;          /* ou left, se preferires */
    padding: 1rem 1.5rem;
    border-radius: 0;            /* cantos rectos no mobile */
  }

  /* opcional: separador subtil entre itens */
  .navb-items .nvbr-item + .nvbr-item {
    border-top: 1px solid rgba(255,255,255,.15);
  }

  /* realces de hover / activo */
  .menu-butao-link.btn:hover,
  .menuactive {
    background: var(--davinci-green-claro);
    color: #fff !important;
  }

  /* se quiseres que o fundo do menu recolhido use o mesmo gradiente: */
  .navbar-collapse {
    background: linear-gradient(90deg, rgba(4,176,166,1) 0%, rgba(0,123,151,1) 100%);
  }
}



		#successMessage,#errorMessage{display:none}

		.menu-butao-link:hover {
			background: var(--davinci-green);
			color: #fff!important;
		}
		.menuactive{
			background: var(--davinci-green);
			color: #fff!important;
		}
      .section-title {
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
        text-align: center;
      }
      
      .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--davinci-green);
      }
      
      .card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
      }
      
      .card:hover {
        transform: translateY(-10px);
      }
      
      .card-header {
        background: var(--davinci-blue);
        color: white;
        padding: 20px;
        font-weight: 600;
      }
      
      .card-body {
        padding: 25px;
      }
      
      .process-step {
        text-align: center;
        padding: 30px 15px;
        position: relative;
      }
      
      .step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: var(--davinci-green);
        color: white;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.5rem;
        margin-bottom: 20px;
      }
      
      .benefit-box {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        height: 100%;
        border-top: 4px solid var(--davinci-green);
      }
      
      .btn-primary {
        background: var(--davinci-blue);
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
      }
      
      .btn-primary:hover {
        background: #147384;
      }
      
      .btn-secondary {
        background: var(--davinci-green);
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
      }
      
      .btn-secondary:hover {
        background: #32a191;
      }
	  
	  .btn-terceiro {
        background: var(--davinci-green-claro);
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
		color:#FFF;
      }
      
      .btn-terceiro:hover {
        background: #3bb8a6;
      }
	  
      
      .cta-box {
        background: var(--davinci-blue);
        color: white;
        padding: 40px;
        border-radius: 15px;
        margin: 60px 0;
      }
      
      .test-type {
        padding: 30px;
        border-radius: 10px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        height: 100%;
        transition: all 0.3s ease;
      }
      
      .test-type:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      }
      
      .academic-type {
        border-top: 4px solid var(--davinci-blue);
      }
      
      .general-type {
        border-top: 4px solid var(--davinci-orange);
      }
      img{
    max-width: 100%;
    height: auto;
}
      .icon-box {
        width: 70px;
        height: 70px;
        background: rgba(77, 203, 185, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }
      
      .icon-box i {
        font-size: 30px;
        color: var(--davinci-green);
      }
      
      .nav-section {
			background: #04B0A6;
			background: linear-gradient(90deg, rgba(4, 176, 166, 1) 0%, rgba(0, 123, 151, 1) 100%);

      }
      .icon-box i {font-size:32px;color:var(--davinci-green);}

      .dv-footer{background: #04B0A6;
			background: linear-gradient(90deg, rgba(4, 176, 166, 1) 0%, rgba(0, 123, 151, 1) 100%);
}
  .dv-footer hr{border-top:1px solid rgba(255,255,255,0.25);} /* separador subtil */
  .dv-footer .footer-link{color:#e8fdfd;text-decoration:none;transition:color .25s;}
  .dv-footer .footer-link:hover{color:var(--davinci-orange);} /* realce em hover */
  .dv-footer .social-link{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.15);color:#fff;font-size:1rem;transition:all .3s ease;}
  .dv-footer .social-link:hover{background:var(--davinci-green);transform:translateY(-3px);} /* efeito levantar */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #e5f5f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  font-family: sans-serif;
  z-index: 1000;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
}
.margin100{
	margin:100px;
}

.cookie-banner__icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.cookie-banner__actions button {
  margin-left: 0.5rem;
  padding: 0.5em 1em;
  border-radius: 4px;
  border: 1px solid #000;
  cursor: pointer;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #000;
}


.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #e5f5f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  font-family: sans-serif;
  z-index: 1000;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
}

.cookie-banner__icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.cookie-banner__actions button {
  margin-left: 0.5rem;
  padding: 0.5em 1em;
  border-radius: 4px;
  border: 1px solid #000;
  cursor: pointer;
}
.text-successed{
color:var(--davinci-green);	
}
.btn-primary {
  background: #000;
  color: #fff;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #000;
}