/*
Theme Name: CrimetTheme
Theme URI: https://crimet.com.br
Author: Blume Web Studio
Author URI: https://blumeweb.com.br/
Description: Tema criado para a Crimet.
Version: 1.0
*/

@import './css/normalize.css';

@font-face {
  font-family: 'Public Sans Regular';
  src: url('fonts/PublicSans-Regular.ttf');
}

@font-face {
  font-family: 'Public Sans Bold';
  src: url('fonts/PublicSans-Bold.ttf');
}

@font-face {
  font-family: 'Public Sans ExtraBold';
  src: url('fonts/PublicSans-ExtraBold.ttf');
}

body,
html {
  font-family: 'Public Sans Regular';
  font-size: 16px;
  background-color: #000;
  scroll-behavior: smooth;
}

.btn {
  font-family: 'Public Sans Bold';
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 18px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  transition: 0.3s;
}

.btn-1 {
  text-align: start;
  color: #FFFFFF;
  background-color: #019E75;
  border: 2px solid #019E75;
  width: 254px;
  padding: 8px 22px;
}

.btn-1 div {
  flex-direction: column;
  text-align: start;
}

.btn-1 span {
  font-family: 'Public Sans Regular';
  font-size: 13px;
}

.btn-1:hover {
  border-color: #FFFFFF;
}

.btn-2 {
  color: #FFFFFF;
  background-color: RGBA(1,158,117,1);
  border: 2px solid RGBA(1,158,117,1);
  width: 236px;
  padding: 16px 0;
  justify-content: center;
}

.btn svg {
  margin-right: 8px;
}

.btn-2:hover {
  background-color: #04ce98;
}

.btn-3 {
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  width: 287px;
  padding: 16px 0;
  justify-content: center;
}

.btn-3 svg {
  margin-right: 8px;
}

.btn-3:hover {
  background-color: RGBA(1,158,117,1);
}

.btn-4 {
  background-color: transparent;
  border: 2px solid #D50032;
  width: 287px;
  padding: 16px 0;
  justify-content: center;
  color: #D50032;
  transition: 0.3s;
}

.btn-4:hover {
  color: #FFFFFF;
  background-color: #D50032;
  transition: 0.3s;
}

.btn-4 #svg-hover {
  fill: #D50032;
  transition: 0.3s;
}

.btn-4:hover #svg-hover {
  fill: #FFFFFF;
  transition: 0.3s;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */

header {
  background-color: #00B988;
  padding: 5px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
	position: relative;
}

header .logo {
  display: block;
  max-width: 282px;
  width: 256px;
}

.header-menu ul {
  display: flex;
  justify-content: space-between;
}

.header-menu li {
  margin-left: 30px;
}

.header-menu li:first-child {
  margin-left: 0;
}

.header-menu ul li a {
  padding: 5px;
  font-family: 'Public Sans Bold';
  line-height: 18px;
  color: #FFFFFF;
  transition: .3s;
}

.header-menu ul li a:hover {
  color: #D50032;
  transition: .3s;
}

/* menu mobile */
header .menu-mobile {
  display: none;
}

header .menu-mobile .btn-mobile {
  display: block;
  border: none;
  background: none;
  cursor: pointer;
}

header .menu-mobile .btn-mobile span {
  display: block;
  border-top: 2px solid #FFFFFF;
}

header .menu-mobile .btn-mobile span::after,
header .menu-mobile .btn-mobile span::before {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: #FFFFFF;
  margin-top: 5px;
  position: relative;
}

header .menu-mobile.active .btn-mobile span {
  border-top: transparent;
}

header .menu-mobile.active .btn-mobile span::after {
  transform: rotate(-135deg);
  top: -7px;
}

header .menu-mobile.active .btn-mobile span::before {
  transform: rotate(135deg);
}

header .menu-mobile ul {
  display: block;
  position: absolute;
  width: 100%;
  height: 0px;
  top: 85px;
  right: 0px;
  background-color: #019E75;
  z-index: 1000;
  transition: .6s;
  visibility: hidden;
  overflow-y: hidden;
}

header .menu-mobile.active ul {
  height: calc(100vh - 225px);
  visibility: visible;
  overflow-y: auto;
}

header .menu-mobile ul li {
  padding: 20px 0;
  border-bottom: 2px solid #00B988;
  margin: 0 20px;
  color: #FFFFFF;
}

/* footer */
footer {
  background-color: #005E50;;
}

footer .btn-whats {
  background-color: #00B988;
  border-color: #00B988;
}

footer .container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 67px;
}

footer .container .logo{
  width: 245px;
}

footer .container svg.top {
  background-color: #FFFFFF;
  padding: 6px;
  border-radius: 50%;
  margin: 42px 0 10px 0;
}

footer .container h2 {
  font-family: 'Public Sans Bold';
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

footer .container .btn {
  margin-bottom: 8px;
}

footer .container .btn:last-child {
  margin-bottom: 0;
}

footer .container .btn p {
  font-size: 14px;
}

footer .container .info {
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 10px;
}

footer .container .info span {
  font-family: 'Public Sans Bold';
  font-size: 14px;
  line-height: 16px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: #fff;
}

footer .dire {
  background-color: #000;
  padding: 15px 20px;
  text-align: center;
}

footer .dire p,
  footer .dire a {
  line-height: 24px;
  color: #B5B5B5;
}

.linkFooter {
  display: block;
  color: #ffff;
  font-weight: bold;
  margin-top: 20px;
  transition: color .3s ease;
}

.linkFooter:hover {
  color: #D50032;
}

/* Home intro */
.page-home .intro {
  background: url('img/referencia-em-medicina-e-segurança-do-trabalho.webp'), #005E50;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 716px;
  z-index: 5;
}

.page-home .intro .container {
  display: flex;
  justify-content: space-between;
}

.page-home .intro h1 {
  font-family: 'Public Sans ExtraBold';
  font-size: 52px;
  line-height: 66px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  max-width: 600px;
  margin-top: 123px;
}

.page-home .intro p {
  font-size: 21px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 16px 0 40px 0;
  max-width: 470px;
}

.page-home .intro .btns {
  display: flex;
}

.page-home .intro .btns .btn-2 {
  margin-right: 13px;
}

/* Home our services */
.page-home .our-services {
  padding: 0 20px;
  margin-top: -70px;
  margin-bottom: -235px;
  z-index: 98;
  display: grid;
}

.page-home .our-services .content {
  max-width: 1818px;
  width: 100%;
  background-color: #005C4E;
  box-shadow: 0px 0px 57px 11px rgba(20, 35, 50, 0.15);
  border-radius: 20px;
  text-align: center;
  padding: 52px 20px 108px 20px;
  margin: 0 auto;
}

.page-home .our-services .content .services {
  display: grid;
  gap: 24px;
	grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

.page-home .our-services .content .services .service {
  width: 271px;
  background-color: #222;
  box-shadow: 1px 1px 21px rgba(0, 0, 0, 0.15);
  border-radius: 10px;  
  padding: 50px 16px 36px 16px;
  text-align: center;
}

.page-home .our-services .content .services .service svg {
  height: 100px;
} 

.page-home .our-services .content .services .service h4 {
  font-family: 'Public Sans Bold';
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin: 25px auto 9px auto;
  color: #00DAA0;  
}

.page-home .our-services .content .services .service p {
  line-height: 20px;
  color: #C9C9C9;
}

.page-home .our-services .content .top h3 {
  font-family: 'Public Sans Bold';
  line-height: 19px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #FFF;
}

.page-home .our-services .content .top h2 {
  font-family: 'Public Sans Bold';
  font-size: 40px;
  line-height: 47px;
  text-align: center;
  color: #FFF;
  margin-bottom: 36px;
}

.page-home .our-services .content .btns {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 13px;
}

/* Home about */
.page-home .about {
  overflow: hidden;
  background-color: #232928;
  padding: 290px 0  100px 0;
}

.page-home .about .top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  padding-top: 20px;
}

.page-home .about .top h3 {
  font-family: 'Public Sans Bold';
  line-height: 19px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #FFF;
}

.page-home .about .top h2 {
  font-family: 'Public Sans Bold';
  font-size: 40px;
  line-height: 47px;
  color: #FFF;
  margin-bottom: 40px;
}

.page-home .about p {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #CBCBCB;
  max-width: 500px;
  margin: 10px 0;
}

.page-home .about p span {
  font-weight: bold;
  font-size: 24px;
  margin: 10px 0;
}

.page-home .about .top .btn-3,
.page-home .about .top .btn-2 {
  margin-top: 20px;
}

.page-home .about .top .img-top {
  max-width: 700px;
  margin-right: -75px;
}

.page-home .about .top .img-top div {
  padding: 100px 0 10px 20px;
}

.page-home .about .top .img-top img {
  height: auto;
}

.page-home .about .bottom {
  display: flex;
}

.page-home .about .bottom .img-bottom {
  max-width: 240px;
  margin-right: 33px;
  position: relative;
  z-index: 98;
}

.page-home .about .bottom .img-bottom img {
  border-radius: 10px;
}

.page-home .about .bottom .img-bottom svg {
  position: absolute;
  top: -85px;
  left: -85px;
  z-index: -1;
}

.page-home .about .bottom h4 {
  font-family: 'Public Sans Bold';
  font-size: 28px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #CBCBCB;
  margin-top: 30px;
}

.page-home .about .bottom p {
  font-size: 18px;
  line-height: 21px;
  color: #CBCBCB;
  margin: 16px 0 6px 0;
}

.page-home .about .bottom span {
  font-family: 'Public Sans Bold';
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #CBCBCB;
}

.page-home .about .bottom ul {
  list-style: inside;
  margin-top: 44px;
}

.page-home .about .bottom li {
  font-size: 18px;
  line-height: 21px;
  color: #CBCBCB;
  margin-bottom: 10px;
  max-width: 571px;
}

/* Home esocial */
.page-home .esocial {
  padding: 0 20px;
}

.page-home .esocial .container {
  background-color: #005E50;
  border-radius: 20px;
  padding: 50px 105px 65px 105px;
  display: flex;
  position: relative;
  z-index: 98;
  display: flex;
  flex-direction: column;
  max-width: 1220px;
  margin: 44px auto 52px auto;
}

.page-home .esocial .img {
  max-width: 292px;
  margin-bottom: 35px;
}

.page-home .esocial .top div {
  max-width: 310px;
}

.page-home .esocial .top {
  display: flex;
  border-bottom: 1px solid #1BB481;
  padding-bottom: 55px;
}

.page-home .esocial h2 {
  font-family: 'Public Sans ExtraBold';
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  max-width: 352px;
}

.page-home .esocial .top p {
  margin: 35px 0 45px 0;
}

.page-home .esocial p {
  font-size: 21px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.page-home .esocial ul {
  max-width: 450px;
  margin-left: 150px;
}

.page-home .esocial li {
  margin-bottom: 35px;
}

.page-home .esocial li:last-child {
  margin-bottom: 0;
}

.page-home .esocial li svg {
  margin-bottom: -5px;
  margin-right: 5px;
}

.page-home .esocial li:first-child {
  font-weight: 900;
  font-size: 18px;
  line-height: 18px;
  color: #FFFFFF;
}

.page-home .esocial li span {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.page-home .esocial .btm {
  max-width: 795px;
  margin: 35px auto 0 auto;
}

.page-home .esocial .btm p {
  margin-bottom: 20px;
}

.page-home .esocial svg.crimet {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* Home programas */
.page-home .program .cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page-home .program .cards div {
  width: 584px;
  height: 357px;
  background-color: #004C40;
  border-radius: 20px;
  padding: 48px 48px 20px 32px;
  margin-bottom: 32px;
}

.page-home .program .cards div h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #00B988;
  margin-bottom: 32px;
}

.page-home .program .cards div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #CCC;
}

.page-home .program .btns {
  display: flex;
  justify-content: center;
  gap: 13px;
}

/* Home useful */
.page-home .useful-links {
  padding: 52px 20px 75px 20px;
}

.page-home .useful-links h2 {
  font-family: 'Public Sans Bold';
  font-size: 40px;
  line-height: 47px;
  text-align: center;
  color: #005C4E;
  margin-bottom: 26px;
}

.page-home .useful-links .content {
  display: flex;
  justify-content: center;
}

.page-home .useful-links .content div {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 1px 1px 21px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  max-width: 246px;
  margin: 0 12px;
  text-align: center;
}

.page-home .useful-links .content div a {
  padding: 12px 26px 24px 26px;
  display: block;
}

.page-home .useful-links .content div p {
  line-height: 19px;
  color: #6C6D70;
  margin: 22px 0;
}

.page-home .useful-links .content div span {
  font-family: 'Public Sans Bold';
  line-height: 19px;
  text-align: center;
  text-decoration-line: underline;
  color: #00B988;
}

/* Home feed */
.page-home .feed {
  padding-bottom: 75px;
}

.page-home .feed h2 {
  font-family: 'Public Sans Bold';
  font-size: 40px;
  line-height: 47px;
  text-align: center;
  color: #005C4E;
  margin-bottom: 26px;
}

/* Página Política de privacidade */
.page-politica .intro {
  padding: 60px 20px;
  background-color: #00B988;
  text-align: center;
  border-top: 1px solid #005E50;
}

.page-politica .intro h1 {
  font-family: 'Public Sans ExtraBold';
  font-size: 56px;
  line-height: 66px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.page-politica .content {
  margin-top: 50px;
}

.page-politica .content h2 {
  font-family: 'Public Sans Bold';
  color: #005E50;
  line-height: 26px;
}

.page-politica .content p {
  color: #727376;
  line-height: 26px;
  margin-bottom: 50px;
}

/* Whatsapp flutuante */
.btn-flu {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: RGBA(37,211,102,1);
  border-radius: 50%;
  padding: 12px;
  transition: .3s;
}

.btn-flu:hover {
  background-color: RGBA(37,211,102,.8);
  transition: .3s;
}

/* pop-up */
.service {
  cursor: pointer;
}

.popuptext {
  display: none; 
  position: fixed; 
  z-index: 99999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); 
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.show {
  display: flex;
  transition: 0.3s;
}

.popup-content {
  background-color: #222;
  box-shadow: 0px 0px 57px 11px rgba(20, 35, 50, 0.15);
  border-radius: 20px;
  width: 80%; 
  padding: 95px 80px;
  position: relative;
  text-align: initial;
  margin: auto;
}

.popup-content span {
  font-weight: 700;
  font-size: 40px;
  line-height: 47px;
  margin: 0;
  color: #00DAA0;
  display: block;
}

.popup-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #C9C9C9;
  margin: 40px 0;
  max-width: 772px;
}

.popup-content svg {
  position: absolute;
  top: 37px;
  right: 43px;
  cursor: pointer;
}

.popup-content p span {
  font-size: 24px;
  line-height: 24px;
  margin: 15px 0;
}

.popup-content ul {
  list-style: disc;
  margin: 20px 0;
}

.popup-content ul li {
  margin-left: 15px;
}

.popup-content ul li.first {
  list-style: none;
  margin-left: 0;
  font-weight: 700;
}

.pg-lgpd {
  font-family: 'Public Sans Regular';
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
}

.pg-lgpd .title-intro {
  font-family: 'Public Sans Bold';
  background-color: #005C4E;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  padding: 50px 20px;
  margin-bottom: 20px;
}

.pg-lgpd .text {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 50px;
}

.pg-lgpd .text .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: justify;
}

.pg-lgpd table {
  font-family: 'Public Sans Bold';
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}

.pg-lgpd  td {
  border: 2px solid #ffff; 
  padding: 10px;
  text-align: left;
}

.pg-lgpd h3,
.pg-lgpd strong {
  font-family: 'Public Sans Bold';
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 1300px) {
  .page-home .our-services .content .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .page-home .intro .img {
    display: none;
  }

  .page-home .intro .container {
    justify-content: center;
  }

  .page-home .about .bottom .img-bottom svg {
    top: 0;
  }
	
  .page-home .program .cards {
    justify-content: center;
	margin-top: 40px;
  }
	
  .page-home .program .cards div {
	height: auto;
  }
	
  .page-home .program .btns {
    flex-direction: column;	  
  }
	
  .page-home .program .btns a {
    margin: 5px auto !important; 
  }
}

@media (max-width: 1050px) {
  header .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-home .our-services .content .services {
    grid-template-columns: repeat(2, 1fr);
  }

  footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 45px;
  }
}

@media (max-width: 800px) {
  header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  header .logo {
    width: 217px;
  }

  .header-menu,
  header .btn {
    display: none;
  }

  header .menu-mobile {
    display: flex;
  }

  .page-home .our-services {
    padding: 0;
  }

  .page-home .our-services .content {
    padding: 30px 20px;
    border-radius: 0;
  }

  .page-home .our-services .content .services {
    width: 340px;
  }

  .page-home .our-services .content .services .service {
    margin: 25px;
  }

  .page-home .our-services .content .services .slick-list {
    width: 300px;
  }

  .page-home .our-services .content .services button::after,
    .page-home .our-services .content .services button::before {
    color: #DADADA;
  }
	
  .popup-content {
	padding: 55px 20px;	
	width: 95%;
  }
	
  .popup-content span {
    font-size: 32px;
    line-height: 32px;
   }
	
  .popup-content svg {
    top: 25px;
    right: 25px;
  }
	
  .page-home .our-services .content .services .service p {
     overflow: hidden;
	 text-overflow: ellipsis;
     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
	
  .page-home .esocial .img {
    margin: 0 auto 35px auto;
  }
	
  .page-home .esocial .top {
    flex-direction: column;
	align-items: center;
  }
	
  .page-home .esocial .top div {
	text-align: center;
  }
	
  .page-home .esocial .top a {
	margin: 0 auto;
  }
	
  .page-home .esocial ul {
    margin: 20px auto 0 auto;
	text-align: initial;
  }
	
  .page-home .feed {
    padding: 20px 20px;
  }
}

@media (max-width: 600px) {
  .page-home .intro h1 {
    margin-top: 43px;
    font-size: 40px;
    line-height: 47px;
  }

  .page-home .intro .btns {
    flex-direction: column;
  }

  .page-home .intro .btns .btn-2 {
    margin-bottom: 16px;
  }

  .page-home .intro {
    height: 510px;
  }

  .page-home .our-services {
    margin-top: 0;
    padding: 0;
  }

  .page-home .our-services .content {
    border-radius: 0;
  }

  .page-home .our-services .content .btns {
    flex-direction: column;
    align-items: center;
  }

  .page-home .our-services .content .btns .btn-4 {
    margin: 8px 0;
  }

  .page-home .about .top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-home .about .top p {
    margin: 14px 0;
  }

  .page-home .about .top .btn {
    margin: 4px auto;
  }

  .page-home .about .top .img-top {
    max-width: 700px;
    margin: 30px 0 0 0;
  }

  .page-home .about .bottom {
    flex-direction: column;
    align-items: center;
  }

  .page-home .about .bottom .img-bottom svg {
    display: none;
  }

  .page-home .about .bottom .img-bottom {
    margin: 0;
    max-width: 316px;
  }

  .page-home .about {
    padding: 290px 0 40px 0;
  }

  .page-home .about .bottom h4 {
    font-size: 21px;
  }

  .page-home .about .bottom li {
    font-size: 16px;
  }

  .page-home .esocial .container {
    flex-direction: column;
    margin: 0;
    border-radius: 0;
    padding: 30px 20px;
    text-align: center;
  }

  .page-home .esocial .img {
    max-width: 250px;
    margin: 0 auto;
  }

  .page-home .esocial h2 {
    margin-top: 20px;
  }

  .page-home .esocial .btn {
    margin: 0 auto;
  }

  .page-home .useful-links .content div {
    margin: 0 5px;
  }

  .page-home .useful-links {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .page-politica .intro {
    padding: 30px 20px;
  }

  .page-politica .intro h1 {
    font-size: 40px;
    line-height: 47px;
  }

  footer .container .logo {
    width: 145px;
  }
	
  .page-home .about .top .img-top div {
    padding: 10px 0;
  }
}

@media (max-width: 450px) {
  .page-home .our-services .content .services {
    width: 250px;
  }

  .page-home .our-services .content .services .service {
    width: 200px;
  }

  .page-home .our-services .content .services .slick-list {
    width: 220px;
  }
}