.logo{
	max-height: 80px;
}

/* ======================== */
/* RESPONSIVE.CSS - BASE */
/* ======================== */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Exemplo */
    body {
        font-size: 14px;
    }
}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .menu {
        flex-direction: column;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sidebar {
        width: 250px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ======================== */
/* CASOS COMUNS EXTRAS */
/* ======================== */

/* Ocultar algo só no mobile */
@media (max-width: 767.98px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Ocultar algo só no desktop */
@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Centralizar texto no mobile */
@media (max-width: 575.98px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Grid com 2 colunas no mobile */
@media (max-width: 767.98px) {
    .grid-mobile-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}


  /* Slider-like: move e fade sincronizados */
  #fotoMembro, #bannerContent {
    transition: transform .45s ease, opacity .45s ease;
    will-change: transform, opacity;
  }
  .slide-out { transform: translateX(-30px); opacity: 0; }
  .slide-in  { transform: translateX(30px);  opacity: 0; }
  /* Pausado: cursor indica estado */
  .paused { cursor: pause; }




 .seo-h1 {
	display: block;
	line-height: 1;
	font-size: 18px;
	position: relative;
	padding-bottom: 17px;
	margin-bottom: 30px;
}

.seo-h1::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 5px;
	background: var(--tg-theme-primary);
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	-o-border-radius: 100px;
	-ms-border-radius: 100px;
	border-radius: 100px;
}

.team__details-area .team__shape img {
	filter: none;
	border: none;
}

.bgshape1 {
	background-image: url('../img/services/services_shape02.svg');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
	background-attachment: fixed;
}