/* ============================================
    VARIÁVEIS GERAIS
============================================ */
:root {
  --brand: #0e2a3a;
  --accent: #0b5ed7;
  --overlay: rgba(13, 110, 253, 0.85);
}

* {
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  //opacity: 0;
  //transition: opacity 0.18s ease-in-out;
}

body.page-loaded {
  opacity: 1;
}

/* Animação ao sair */
.fade-out {
  //opacity: 0 !important;
}

/* HERO – ALTURA MAIOR NO DESKTOP */

#hero {
  position: relative;
  height: 10vh;
  overflow: hidden;
}

/* SLIDES COMO BACKGROUND */
#hero .hero-slide {
  height: 100vh !important;
  width: 100%;
  background-size: cover; /* mostra 100% da imagem sem cortar */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000; /* evita espaço branco */
}



//------------------
/*#hero .hero-img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.85);
}*/


#hero .hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  border-radius: 1rem;
}

@media (max-width: 768px) {
  #hero {
    height: 100vh; /* no celular fica como já estava */
  }
}

/* MOBILE: Centraliza SEMPRE o texto e setas */
@media (max-width: 768px) {
  .hero-fixed-caption {
    top: 55% !important; /* deixa mais centralizado */
    transform: translate(-50%, -50%) !important;
    padding: 1.4rem 1.2rem !important;
  }

  /* Ajusta setas também */
  .custom-nav {
    top: 55% !important;
  }
}

/* HERO FULLSCREEN COM BLUR */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* CADA SLIDE */
.carousel-item {
  position: relative;
  height: 100vh;
}

/* IMAGEM PRINCIPAL — CONTINUA INTEIRA */
/*.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  object-fit: contain;
}*/

/* FUNDO BLUR USANDO A MESMA IMAGEM */
.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.55);
  transform: scale(1.2); /* evita bordas */
  z-index: 1;
}

/*css para alternar de horizotal para vertical de acordo com a resolução da imagem*/
/* Forma padrão: mostrar imagem inteira */
/*.hero-img {
  object-fit: contain !important;
  transition: object-fit 0.3s ease;
}*/

/* Se for horizontal */
.hero-img.horizontal {
  object-fit: cover !important;
}
/* CONFIGURAÇÃO OFICIAL DO HERO */
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.85);
  transition: object-fit 0.3s ease;
}

.hero-img.horizontal {
  object-fit: cover;
}
/*alternativa*/
/*#hero .hero-img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.85);
}

#hero .hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  border-radius: 1rem;
}
*/

@media (max-width: 768px) {
  .hero-img {
    object-fit: cover;   /* preenche tudo */
    height: 100vh;
  }
}


/* ============================================
    NAVBAR DESKTOP PREMIUM
============================================ */

/* Estrutura geral */
.navbar {
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d3e55;
}

.portifolio { 
   font-size: 3rem;
  font-weight: 600;
  color: #1d3e55;
}

/* Links do menu */
.navmodern {
  gap: 42px !important;
}

.navmodern .nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 12px 26px !important;
  border-radius: 6px;
  transition: 0.3s ease;
}

.navmodern .nav-link:hover,
.navmodern .nav-link.active {
  background: #1d3e55;
  transform: translateY(-4px);
}

/* Redes sociais (desktop apenas) */
.navbar-social .social-link {
  font-size: 1.3rem;
  color: #1d3e55;
  transition: 0.3s ease;
}

.navbar-social .social-link:hover {
  color: #0b5ed7;
  transform: translateY(-3px);
}

/* ============================================
    NAVBAR MOBILE
============================================ */
@media (max-width: 991px) {
  .navbar-logo {
    height: 54px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .navbar-social {
    display: none !important;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 15px 0;
  }

  .navmodern {
    gap: 4px !important;
  }

  .navmodern .nav-link {
    display: block;
    font-size: 1.2rem;
    padding: 14px;
    color: #4d4d4d !important;
  }

  .navmodern .nav-link:hover,
  .navmodern .nav-link.active {
    transform: none;
    background: #1d3e55;
    color: #fff !important;
  }
}

/* ============================================
    FIX REAL PARA TELAS MENORES QUE 400px
============================================ */
@media (max-width: 400px) {
  .navbar .container-fluid {
    padding: 6px 10px !important;
    flex-wrap: nowrap !important;
  }

  .navbar-logo {
    height: 48px !important;
  }

  .logo-text {
    font-size: 1rem !important;
  }

  .menu-btn {
    font-size: 1.6rem !important;
    padding: 4px 6px !important;
  }

  .navbar-brand {
    gap: 6px !important;
  }

  #mobileSidebar {
    width: 240px !important;
    padding: 18px !important;
  }

  .sidebar-nav a {
    font-size: 1.2rem !important;
  }
}

/* ============================================
    SIDEBAR MOBILE (MENU LATERAL)
============================================ */
#sidebarOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 998;
}

#sidebarOverlay.active {
  display: block;
}

#mobileSidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 12px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 999;
  transition: 0.35s;
}

#mobileSidebar.active {
  right: 0;
}

.menu-btn {
  border: none;
  background: none;
  font-size: 2rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 22px;
}

/* ============================================
      SIDEBAR MOBILE – ESTILO DOS LINKS
============================================ */
#mobileSidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 12px rgba(0, 0, 0, 0.15);
  padding: 22px;
  z-index: 999;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

#mobileSidebar.active {
  right: 0;
}

/* Botão X */
#closeMenu {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1d3e55;
  margin-bottom: 25px;
  cursor: pointer;
}

/* LISTA DO MENU */
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* LINKS */
.sidebar-nav a {
  font-size: 1.35rem;
  text-decoration: none;
  color: #1d3e55;
  font-weight: 500;
  transition: 0.25s;
}

/* HOVER */
.sidebar-nav a:hover {
  color: #0b5ed7;
  margin-left: 6px;
}

/* RESPONSIVO PARA TELAS < 400px */
@media (max-width: 400px) {
  #mobileSidebar {
    width: 240px;
    padding: 16px;
  }

  .sidebar-nav a {
    font-size: 1.2rem;
  }
}

/* ============================================
    GALERIA / CARDS
============================================ */
.gallery-card,
.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.75rem;
}

.gallery-card img,
.portfolio-item img {
  transition: transform 0.5s ease;
  object-fit: cover;
  height: 240px;
  width: 100%;
}

.gallery-card:hover img,
.portfolio-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(13, 110, 253, 0.85) 100%
  );
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: 0.3s ease;
}

.gallery-card:hover .gallery-overlay,
.portfolio-item:hover .gallery-overlay {
  opacity: 1;
}

.project-name {
  color: #fff;
  font-weight: 600;
}

/* Botão dentro da overlay */
.btn-gallery-details {
  margin-top: 10px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #0b5ed7, #084298);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.35);
  border: none;
}

.gallery-overlay:hover .btn-gallery-details {
  display: inline-block;
}

.btn-gallery-details:hover {
  background: linear-gradient(135deg, #084298, #0b5ed7);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(11, 94, 215, 0.45);
}

/* ============================================
    CONTADORES
============================================ */
.counter-box .counter {
  font-size: 3rem;
  font-weight: 700;
}

/* Ícones das métricas maiores e mais bonitos */
#metricas .icon {
  font-size: 3.5rem; /* aumenta o tamanho */
  line-height: 1;
}

/* Se quiser ainda maior em telas grandes */
@media (min-width: 992px) {
  #metricas .icon {
    font-size: 4.2rem;
  }
}

/* =============================
   QUEM SOMOS
============================= */

#quem-somos h3 {
  font-weight: 700;
  color: #0e2a3a;
}

.qs-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  padding: 2rem 2.5rem;
}

.qs-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

.qs-link {
  font-weight: 600;
  color: #0e2a3a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.qs-link:hover {
  color: #0b5ed7;
  gap: 10px;
}

/* ============================================
   ÁREAS DE ATUAÇÃO – 2 CARDS LADO A LADO
=============================================== */

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.area-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.area-img {
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.area-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e2a3a;
  margin-bottom: 10px;
}

.area-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .area-item {
    flex-direction: column;
  }

  .area-img {
    width: 100%;
    height: 200px;
  }
}

/* ============================================
    SERVIÇOS
============================================ */
.service-card {
  background: #0e2a3a;
  color: #fff;
  border-radius: 1rem;
}

/* LINK QUE ENVOLVE O CARD */
.service-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* CARD PADRÃO */
.service-card {
  background: #0e2a3a;
  color: #fff;
  border-radius: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER – levanta + brilho */
.service-link:hover .service-card {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ============================================
    FLOAT WHATSAPP
============================================ */
.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1050;
}

/* Texto fixo em todas as imagens */
.hero-fixed-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  z-index: 3;
  width: 90%;
  max-width: 900px;
}

/* SETAS PERSONALIZADAS */
.custom-nav {
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}


.carousel-nav-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-icon i {
  font-size: 2rem;
  color: #fff;
}

/* Posicionar igual referência */
.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
}

/* MOBILE – deixa menor para não ficar exagerado */
@media (max-width: 768px) {
  .custom-nav {
    width: 30px !important;
    height: 30px !important;
  }

  .carousel-nav-icon {
    width: 45px !important;
    height: 45px !important;
  }

  .carousel-nav-icon i {
    font-size: 1.5rem !important;
  }

  .carousel-control-prev {
    left: 15px !important;
  }

  .carousel-control-next {
    right: 15px !important;
  }
}

/* ====== MOBILE < 400px ====== */
@media (max-width: 400px) {
  .custom-nav {
    width: 60px !important;
    height: 60px !important;
  }

  .carousel-nav-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .carousel-nav-icon i {
    font-size: 20px !important;
  }

  .carousel-control-prev {
    left: 10px !important;
  }

  .carousel-control-next {
    right: 10px !important;
  }
}

/* ============================
   AJUSTE FINAL PARA < 400px
   Mantém qualidade e enquadramento
=============================== */
@media (max-width: 400px) {

  /* Imagem principal — mantém qualidade e centraliza melhor */
  #hero .hero-img {
    object-fit: cover !important;
    height: 100vh !important;
    width: 100%;
    object-position: center top !important; /* mostra mais do topo */
  }

  /* Ajuste para imagens verticais */
  #hero .carousel-item.vertical-slide .hero-img {
    object-fit: contain !important;
    background: #000;
  }

  /* Blur de fundo mais forte para suavizar cortes */
  .carousel-item::before {
    filter: blur(28px) brightness(0.40) !important;
  }

  /* Texto menor e mais encaixado */
  .hero-fixed-caption {
    padding: 0.9rem 1.1rem !important;
    width: 92% !important;
    border-radius: 0.8rem;
  }

  .hero-fixed-caption p {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
  }

  /* Botão menor */
  .hero-fixed-caption .btn {
    padding: 9px 16px !important;
    font-size: 0.82rem !important;
  }

  /* Setas menores */
  .carousel-nav-icon {
    width: 32px !important;
    height: 32px !important;
  }

  .carousel-nav-icon i {
    font-size: 1.1rem !important;
  }

  .carousel-control-prev { left: 6px !important; }
  .carousel-control-next { right: 6px !important; }
}


.custom-nav,
.carousel-nav-icon {
  z-index: 20 !important;
  pointer-events: auto !important;
}

.carousel-caption,
.hero-overlay {
  z-index: 5 !important;
}

/* Ajuste do Lightbox para imagens maiores */
.lb-image {
  max-width: 95vw !important; /* Ocupa quase toda a largura disponível */
  max-height: 90vh !important; /* Ocupa quase toda a altura disponível */
  object-fit: contain !important; /* Mantém proporção e não corta */
}

/* Ajuste do container */
.lb-outerContainer {
  max-width: 95vw !important;
  max-height: 90vh !important;
}

/* Remove limites pequenos padrão */
.lb-container {
  max-width: 95vw !important;
}

/* Texto centralizado e margem reduzida */
.lb-data .lb-caption {
  font-size: 1rem;
  margin-bottom: 10px;
}


/* ============================================
    DETALHES / FOOTER
============================================ */
/* ============================================
   FOOTER — AJUSTES FINAIS
============================================ */

#footer-ezat {
  background: #1f3b52;
  color: #dbe6ee;
  font-size: 1.05rem; /* texto maior */
  padding-top: 60px;
  padding-bottom: 60px;
}

/* LOGO */
.footer-logo {
  max-width: 190px; /* maior */
}

/* Ícones sociais */
#footer-ezat .social {
  width: 50px;
  height: 50px;
  font-size: 1.7rem;
  border-radius: 8px;
}

#footer-ezat .social:hover {
}

/* LISTA DE INFORMAÇÕES */
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem; /* texto maior */
  line-height: 1.65;
  margin-bottom: 18px; /* mais espaçamento */
  max-width: 420px; /* mantém alinhado */
  white-space: nowrap;
}

/* Ícones da lista */
.footer-info i {
  font-size: 1.55rem; /* ícones maiores */
  margin-top: 4px; /* alinhamento perfeito */
  color: #a8c3d9;
}

/* Rodapé final */
#footer-ezat .final-line {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
}
/* Ajuste fino das colunas do footer */
#footer-ezat .row {
  align-items: flex-start;
}

.footer-info li {
  white-space: normal !important;
}

/* Mantém o bloco alinhado como no site de referência */
.footer-abec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
}

/* Mantém os elementos LADO A LADO */
.footer-abec-row {
  display: flex;
  align-items: center;
  gap: 15px; /* espaço igual ao site referência */
  white-space: nowrap;
}

/* Texto */
.footer-abec-text {
  font-size: 1rem;
  color: #dbe6ee;
  margin: 0;
}

/* Logo */
.abecelogo {
  margin-top: 50px;
  max-width: 150px;
  height: auto;
  opacity: 0.95;
}


/* Mobile: Centraliza horizontal NO CELULAR sem quebrar */

@media (max-width: 440px) {

  .footer-abec {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .footer-abec-row {
    flex-direction: column !important;
    align-items: center;
    gap: 10px;
  }

  .abecelogo {
    margin-top: 0;
    max-width: 120px;
  }
}

  .footer-abec-text {
    font-size: 1rem;
    margin: 0 auto;
  }

#footer-ezat .social {
  width: 50px;
  height: 50px;
  font-size: 1.7rem;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #dbe6ee;
}


/* MOBILE < 400px */
@media (max-width: 400px) {
  .footer-abec {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
  }

  .footer-abec-row {
    flex-direction: column !important; /* texto acima, logo abaixo */
    gap: 10px !important;
  }

  .footer-abec-text {
    font-size: 1rem;
    margin: 0 auto;
  }

  .abecelogo {
    margin-top: 0 !important;
    max-width: 120px !important;
  }
}


/* ============================================
    DETALHES / POPUP
============================================ */
.project-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
  backdrop-filter: blur(4px);
}

.project-popup.active {
  display: flex;
}

.popup-content {
  background: white;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#openGallery {
  font-size: 1.1rem;
}

/* ============================================
   DETALHE DO GALERIA 
============================================ */

/*.project-main {
  width: 100%;
  height: 480px; /* altura padrão 
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}*/

/*.project-main img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* nunca estica, corta elegante 
  transition: transform 0.6s ease-in-out;
}*/

.project-main img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* comportamento padrão: imagem inteira */
  transition: object-fit 0.3s ease, transform 0.6s ease-in-out;
}

.project-main img.horizontal {
  object-fit: cover; /* horizontal → ocupar área */
}

/* Animação do slide vertical */
.slide-enter {
  transform: translateY(-100%);
}

.slide-active {
  transform: translateY(0);
}

/* Miniaturas */
.project-thumbs img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.project-thumbs img:hover {
  transform: scale(1.05);
  border: 2px solid #0b5ed7;
}

/* Ajuste do layout do detalhe do projeto */
@media (min-width: 992px) {
  .project-main {
    height: 520px; /* maior pq agora tem espaço ao lado */
  }
}

@media (max-width: 991px) {
  .detail-card {
    margin-top: 20px;
  }

  .project-main {
    height: 350px;
  }
}

/* ============================
   SEÇÃO SOBRE – TIPOGRAFIA
===============================*/

#sobre h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0e2a3a;
}

#sobre p {
  font-size: 1.15rem; /* Texto maior */
  line-height: 1.75; /* Melhor leitura */
  color: #444; /* Mais contraste */
}

/* ============================
   LOGO À DIREITA
===============================*/

#sobre .logo-col {
  display: flex;
  justify-content: center; /* centraliza horizontal */
  align-items: center; /* centraliza vertical */
}

#sobre img.sobre-logo {
  max-width: 500px; /* Aumentei */
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Ajuste extra para telas menores */
@media (max-width: 992px) {
  #sobre h1 {
    font-size: 1.9rem;
  }

  #sobre p {
    font-size: 1.05rem;
  }

  #sobre img.sobre-logo {
    max-width: 340px;
    margin-top: 1.5rem;
  }
}

/* ============================================
   DEPOIMENTOS – FUNDAÇÕES ENGENHARIA
============================================ */

#depoimentos {
  background: #2c3441; /* fundo da identidade visual */
}

.dep-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  border-left: 10px solid #f06824; /* laranja da logo */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  height: 100%;
  position: relative;
}

.dep-quotes {
  font-size: 3rem;
  color: #f06824;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: bold;
}

.dep-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.55;
  min-height: 160px;
  // display: -webkit-box;
  //-webkit-line-clamp: 10; /* número de linhas */
  //-webkit-box-orient: vertical;
  //overflow: hidden;
}

#depoimentos .row {
  align-items: flex-start;
}

.dep-author {
  margin-top: 20px;
  font-weight: 600;
  color: #f06824;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.3;
}

.dep-text {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dep-text.collapsed {
  max-height: 150px; /* altura padrão do card */
}

.dep-text.expanded {
  max-height: 1000px; /* grande o suficiente */
}

.read-more-btn {
  background: none;
  border: none;
  color: #ff6a00;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}


@media (max-width: 768px) {
  .dep-card p {
    min-height: auto;
  }
}


/*Tela servios */

/* TÍTULO DO TEXTO */
.servico-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e2a3a;
  margin-bottom: 20px;
}



.servico-img-alvenaria {
  width: 100%;
  height: 380px;
  object-fit: contain;
  border-radius: 12px;
  object-position: center;
  background: white;
  padding: 10px;

}

/* IMAGEM do lado esquerdo com tamanho correto */
.servico-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}


/* Texto */
#servico-detalhe p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVO — no celular vira EMPILHADO */
@media (max-width: 768px) {
  .servico-img {
    height: 260px;
  }
}


/*Galeria do portifolio */
.galeria_portifolio {
  font
}
