:root {
  --cor-primaria: #00bcd4;
  --cor-secundaria: #28596a;
  --cor-tercearia: #59949b;
}

body {
  margin: 0;
  padding: 0;
}

/* FONTE GLOBAL DO SITE */
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
  font-size: 17px;
}

/* HEADER BASE */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
}

/* HEADER QUANDO ROLA */
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo img,
.navbar-brand img {
  height: 60px;
  transition: all 0.3s ease;
}

/* MENU */
.nav-link {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
  font-size: 18px;
}

/* COR DO TEXTO NO HOVER (ANTES DO SCROLL) */
.header .nav-link:hover {
  color: #ffffff;
}

/* LINHA ANIMADA */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--cor-primaria);
  transition: width 0.3s ease;
}

/* HOVER */
.nav-link:hover::after {
  width: 100%;
}

/* LINK ATIVO */
.nav-link.active::after {
  width: 100%;
}

/* QUANDO HEADER SCROLLA */
.header.scrolled .nav-link {
  color: #000;
}

/* HERO / BANNER COM IMAGEM */
.hero {
  position: relative;
  height: 100vh;

  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY COM GRADIENTE */
.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.3) 100%
  );
}

/* HERO / BANNER COM IMAGEM */
.hero {
  position: relative;
  height: 100vh;

  /* DESKTOP */
  background-image: url("/assets/images/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

/* OVERLAY */
.hero .overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.50) 40%,
    rgba(0,0,0,.30) 100%
  );
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 700px;

  color: #fff;

  transform: translateY(-20px);
  margin-left: 310px;

  text-align: left !important;
}

/* Garante alinhamento */
.hero-content h1,
.hero-content p {
  text-align: left !important;
}

/* TÍTULO */
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* TEXTO */
.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
}

/* BOTÃO */
.hero .btn {
  padding: 10px 25px;
  font-weight: 500;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 900px) {

  .hero {

    /* MOBILE */
    background-image: url("/assets/images/banner-home-mobile.png");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    height: 100svh;
    align-items: center;
  }
 
  .hero-content {
    margin-left: 0;
    padding: 0 24px;
    transform: translateY(-40px);
    max-width: 100%;
    text-align: center !important;
    margin-bottom: 312px;
  }

  .hero h1 {
    font-size: 1.6rem; /* ↓ diminui o título */
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: center !important;
  }

  .hero p {
    font-size: 0.9rem; /* ↓ diminui o texto */
    line-height: 1.5;
    margin-bottom: 0;
  }

  /* BOTÃO */
  .hero-content .cta-btn {

    /* ↑ ALTERE ESTE VALOR para aproximar ou afastar o botão do texto */
    margin-top: 30px !important;

    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .descricao-header{
    display: none;
  }

}

/* ========================= */
/* 🔽 MOBILE NAVBAR AJUSTES */
/* ========================= */

/* BOTÃO MENU ( */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ÍCONE DO MENU */
.navbar-toggler i {
  transition: color 0.3s ease;
}

/* MENU MOBILE */
@media (max-width: 991px) {

  /* CAIXA DO MENU */
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
  }

  /* LINKS NO MOBILE */
  .nav-link {
    color: #000 !important;
    padding: 10px 0;
    font-size: 16px;
  }

  /* REMOVE LINHA ANIMADA NO MOBILE */
  .nav-link::after {
    display: none;
  }

}

/* ESPAÇAMENTO ENTRE ITENS DO MENU (DESKTOP) */
@media (min-width: 992px) {

  .navbar-nav {
    gap: 30px; /* controla o espaçamento */
  }

}

/* HERO INTERNO (PÁGINAS INTERNAS) */
.page-hero {
  padding: 120px 0 60px;
  background-image: url('/assets/images/banner-sobre.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
}

.img-quem-somos {
height: 500px;

}

/* IMAGENS DO CARROSSEL */


.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  opacity: 1;
  margin: 0 5px;
}

/* BOLINHA ATIVA */
.carousel-indicators .active {
  background-color: var(--cor-primaria); /* seu azul ciano */
}

@media (max-width: 768px) {
  .img-quem-somos {
    height: 250px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .page-hero {
    height: 250px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}


.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

/* TEXTO */
.lead {
  font-size: 21px;
  color: #555;
}

/* EQUIPE */

/* IMAGEM */
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* EFEITO SUTIL NO HOVER */
.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

.team-card p {
  margin-bottom: 5px;
  color: #777;
}

.team-card small {
  color: #555;
}

/* CARD */
.info-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
}

/* HOVER SUAVE */
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid var(--cor-primaria);
}

/* ÍCONE */
.icon {
  font-size: 40px;
  color: var(--cor-primaria);
}

.title-1 {
  color: var(--cor-primaria);
}

/* SEÇÃO */
.team-section {
  background: #f8f9fa;
}

/* CARD BASE */
.team-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  position: relative;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: var(--cor-primaria);
}

/* DESTAQUE PRINCIPAL */
.team-card.destaque {
  border: 2px solid var(--cor-primaria);
  transform: scale(1.02);
}

/* BADGE */
.badge-responsavel {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-primaria);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

/* IMAGEM */
.team-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
}

/* NOME */
.team-card h4,
.team-card h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* CARGO */
.cargo {
  color: #888;
  margin-bottom: 15px;
  font-size: 14px;
}

/* INFO */
.team-info p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

/* ÍCONES */
.team-info i {
  color: var(--cor-primaria);
  margin-right: 6px;
}

/* HERO PADRÃO */
.page-hero-atuacao {
  padding: 120px 0 80px;
  background-image: url('../images/banner-servicos.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

/* CARDS DE SERVIÇO */
.service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  
}

/* ÍCONES */
.icon {
  font-size: 36px;
  color: var(--cor-primaria);
}

/* DIFERENCIAIS */
.diferencial-item {
  padding: 20px;
}

.diferencial-item p {
  margin-top: 10px;
  font-size: 15px;
}

/* WRAPPER */
.mapa-overlay-wrapper {
  position: relative;
}

/* TEXTO */
.mapa-overlay-wrapper p {
  background: #ffffff;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* CONTAINER DO MAPA */
.mapa-overlay {
  position: relative;
  margin-top: -10px; /* faz a imagem subir e entrar no texto */
  z-index: 1;
  height: 300px;
  overflow: hidden;
}

/* IMAGEM */
.mapa-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FADE (degradê branco por cima da imagem) */
.mapa-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255,255,255,0) 100%
  );

  z-index: 2;
}

/* From Uiverse.io by alexmaracinaru */ 
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #b1dae7;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cor-secundaria);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--cor-secundaria);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #b1dae7;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* HERO MAIS ALTO */
.contato-hero {
  min-height: 30vh;
}

/* INTRO */
.contato-intro {
  background: #ffffff;
}

/* WHATSAPP CENTRAL */
.whatsapp-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.whatsapp-box:hover {
  transform: translateY(-3px);
}

/* FORM WRAPPER */
.form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* CAMPOS */
.contato-form input,
.contato-form textarea {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 12px;
}

/* FOCUS */
.contato-form input:focus,
.contato-form textarea:focus {
  border-color: var(--cor-primaria);
  box-shadow: none;
}

/* BOTÃO PRIMÁRIO DO SITE */
.btn-primary-custom {
  background: var(--cor-secundaria);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--cor-primaria);
  color: #fff;
}

/* FOOTER BASE */
.footer {
  background: var(--cor-secundaria);
  color: #ccc;
  padding: 60px 0 30px;
}

/* TÍTULOS */
.footer h5,
.footer h6 {
  color: #fff;
  font-weight: 600;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cor-primaria);
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #28596a;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--cor-primaria);
  transform: translateY(-3px);
}

/* LINHA FINAL */
.footer-bottom {
  border-top: 1px solid #2a6e85;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* BOTÃO CTA PERSONALIZADO */
.cta-btn {
  --primary-color: var(--cor-secundaria);
  --secondary-color: #fff;
  --hover-color: #113c4b;
  --arrow-width: 10px;
  --arrow-stroke: 2px;

  display: inline-flex;
  align-items: center;
  gap: 0.6em;

  padding: 14px 26px;
  border-radius: 30px;

  background: var(--primary-color);
  color: var(--secondary-color);

  text-decoration: none;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* WRAPPER */
.cta-btn .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LINHA */
.cta-btn .arrow {
  width: var(--arrow-width);
  height: var(--arrow-stroke);
  background: var(--primary-color);
  position: relative;
  transition: 0.2s;
}

/* SETA */
.cta-btn .arrow::before {
  content: "";
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  top: -3px;
  right: 3px;
  padding: 3px;
  transform: rotate(-45deg);
  transition: 0.2s;
}

/* HOVER */
.cta-btn:hover {
  background: var(--hover-color);
  color: #fff;
}

.cta-btn:hover .arrow {
  background: var(--secondary-color);
}

.cta-btn:hover .arrow::before {
  right: 0;
}


/* SEÇÃO */
.sobre-section {
  background: #ffffff;
}
.sobre-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* TAG PEQUENA */
.sobre-tag {
  display: inline-block;
  font-size: 14px;
  color: var(--cor-primaria);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TÍTULO */
.sobre-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* TEXTO */
.sobre-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  max-width: 500px;
}

/* IMAGEM WRAPPER */
.sobre-img-wrapper {
  position: relative;
}

/* IMAGEM LIMPA (sem borda, mais sofisticado) */
.sobre-img-wrapper img {
  width: 80%;
  height: auto;
  display: block;
}

/* DETALHE SUTIL ATRÁS DA IMAGEM */
.sobre-img-wrapper::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: -20px;
  left: -20px;
  background: var(--cor-primaria);
  opacity: 0.08;
  z-index: -1;
}

/* FUNDO */
.servicos-refinada {
  background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-tercearia) 100%);
  color: #ffffff;

  min-height: 80vh;
  display: flex;
  align-items: center;

}

/* GRID PRINCIPAL */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
}

/* TEXTO */
.servicos-texto h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.servicos-texto p {
  opacity: 0.8;
  line-height: 1.6;
  max-width: 500px;
}

/* TAG */
.servicos-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0.7;
}

.texto-completo {
  display: none;
}

.texto-completo.ativo {
  display: inline;
}

.btn-expandir {
  background: none;
  border: none;
  padding: 0;
  margin-top: 10px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
}

/* CARDS */
.servicos-cards{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.servico-card p{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.servico-card.ativo p{
  -webkit-line-clamp:unset;
}

/* CARD */
.servico-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;

  padding: 20px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);

  transition: all 0.3s ease;
}

/* HOVER */
.servico-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

/* ÍCONE */
.icon-box {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #0a5800;
  font-size: 20px;
}

/* TEXTO CARD */
.servico-card h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.servico-card p {
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* GARANTE ALINHAMENTO COM SETA */
.btn-servicos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* SETA */
.arrow-wrapper {
  display: flex;
  align-items: center;
}

.arrow {
  width: 10px;
  height: 2px;
  background: #111;
  position: relative;
  transition: 0.3s;
}

.arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;

  width: 6px;
  height: 6px;

  border-right: 2px solid #111;
  border-bottom: 2px solid #111;

  transform: rotate(-45deg);
}

/* MICROINTERAÇÃO */
.btn-servicos:hover .arrow {
  transform: translateX(4px);
}

.btn-servicos {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 26px;
  background: #ffffff;
  color: #111;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* SETA */
.arrow-wrapper {
  display: flex;
  align-items: center;
}

/* HOVER */
.btn-servicos:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.btn-servicos:hover .arrow {
  transform: translateX(4px);
}

/* FUNDO */
.contato-strip {
  padding: 80px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f5f5 100%
  );
  color: #111;
}

/* LAYOUT */
.contato-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* TEXTO */
.contato-texto h2 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contato-texto p {
  opacity: 0.85;
  margin-bottom: 15px;
}

/* INFO */
.contato-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 500;
}

.contato-info i {
  margin-right: 6px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contato-flex {
    flex-direction: column;
    text-align: center;
  }

  .contato-cta {
    margin-top: 10px;
  }
}

.btn-contato {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 26px;
  background: #28596a;
  color: #ffffff;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;

  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.btn-contato:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background-color: #113c4b;
}

/* ========================================
   SERVIÇOS
======================================== */

.services-section{
  padding: 110px 0;
  background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-tercearia) 100%);
}

.services-header{
  margin-bottom: 60px;
  position: relative;
}

.services-tag{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 14px;
}

.services-title{
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 700;
}

.services-description{
  max-width: 760px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* GRID */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */

.service-card-header h3{
  color: var(--cor-principal);
}

.toggle-icon {
  color: #ffffff;
}

.service-card{
  background: #59949b00;

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.25);

  overflow:hidden;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:.35s ease;
}

.service-card:hover{
  transform: translateY(-6px);

  box-shadow:
  0 18px 45px rgba(0,0,0,.08);
}

.service-card-header{
  padding: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  user-select: none;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.25);

  transition: .3s ease;
}

.service-title-area{
  display: flex;
  align-items: center;
  gap: 18px;
}

.service-icon{
  width: 58px;
  height: 58px;

  border-radius: 16px;

  background:
  linear-gradient(
    135deg,
    var(--cor-principal),
    #0f6a44
  );

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.service-icon i{
  color: #fff;
  font-size: 22px;
}

.service-card-header h3{
  font-size: 20px;
  line-height: 1.4;
  color: var(--cor-principal);
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.toggle-icon{
  color: #7c828d;
  font-size: 15px;
  transition: .35s ease;
}

/* CONTENT */

.service-card-content{
  max-height: 0;
  overflow: hidden;

  transition:
  max-height .45s cubic-bezier(.4,0,.2,1),
  padding .3s ease;

  padding: 0 26px;
  background-color: var(--cor-secundaria);
}

.service-card-content p{
  color: #ffffff;
  font-size: 16px;
  line-height: 1.9;
  padding-bottom: 28px;
  margin: 0;
}

/* ACTIVE */

.service-card.active .service-card-content{
  max-height: 1000px;
}

.service-card.active .toggle-icon{
  transform: rotate(180deg);
}

/* RESPONSIVO */

@media(max-width: 991px){

  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width: 767px){

  .services-section{
    padding: 80px 0;
  }

  .services-grid{
    grid-template-columns: 1fr;
  }

  .services-title{
    font-size: 38px;
  }

  .services-description{
    font-size: 16px;
  }

  .service-card-header{
    padding: 22px;
  }

  .service-title-area{
    gap: 14px;
  }

  .service-icon{
    width: 50px;
    height: 50px;
  }

  .service-card-header h3{
    font-size: 18px;
  }

}

.sobre-institucional{

background:#fff;
padding:100px 0;

}



.sobre-header h2{

font-size:42px;
color:var(--cor-secundaria);
font-weight:700;

}



.sobre-tag{

color:var(--cor-primaria);
font-size:13px;
font-weight:700;

letter-spacing:3px;
text-transform:uppercase;

}



.trajetoria{

position:relative;

max-width:900px;
margin:auto;

}



.trajetoria::before{

content:"";

position:absolute;

left:32px;
top:0;

height:100%;

width:2px;

background:linear-gradient(
to bottom,
var(--cor-primaria),
transparent
);

}



.trajeto-item{

display:flex;

gap:35px;

position:relative;

margin-bottom:55px;

}



.trajeto-icon{

width:65px;
height:65px;

border-radius:50%;

background:#fff;

border:2px solid var(--cor-primaria);

display:flex;

align-items:center;
justify-content:center;

flex-shrink:0;

z-index:2;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}



.trajeto-icon i{

font-size:25px;

color:var(--cor-primaria);

}



.trajeto-texto{

padding-top:5px;

}



.trajeto-texto span{

font-size:14px;

font-weight:700;

text-transform:uppercase;

letter-spacing:1px;

color:var(--cor-secundaria);

}



.trajeto-texto p{

margin-top:12px;

font-size:17px;

line-height:1.8;

color:#555;

}



@media(max-width:768px){


.trajetoria::before{

left:25px;

}


.trajeto-item{

gap:20px;

}


.trajeto-icon{

width:52px;
height:52px;

}


.trajeto-texto p{

font-size:16px;

}


}

.ratio video{

  width:100%;
  height:100%;

  object-fit:cover;

  border-radius:16px;

}



.video-wrapper{

  position:relative;

  overflow:hidden;

  border-radius:16px;

}



/* BOTÃO CENTRAL */

.video-play{

  position:absolute;

  top:50%;
  left:50%;


  transform:translate(-50%,-50%);


  width:70px;
  height:70px;


  border-radius:50%;

  border:none;


  background:rgba(255,255,255,0.3);

  color:white;


  font-size:28px;


  cursor:pointer;


  display:flex;

  align-items:center;

  justify-content:center;


  transition:.3s;


  z-index:5;

}



/* some fora do mouse */

.video-wrapper:not(:hover) .video-play{

  opacity:0;

}



/* quando pausado */

.video-wrapper.paused .video-play{

  opacity:1;

}



/* Firefox */

video{

  scrollbar-width:none;

}


.video-box{

  width:100%;

}


.video-box video{
  width:100%;
  height:400px;
  object-fit:cover;
  border-radius:16px;
}

