/*--------------------------------------------------------------
# ESTILO CSS
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Roboto Condensed", sans-serif;
  --font-primary: "Roboto Condensed", sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Colors */
:root {
  --color-default: #00203D;
  --color-primary: #44B0DB;
  --color-secondary: #fff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #44B0DB;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

/*--------------------------------------------------------------
# Seções
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 90px 0;
}

section2 {
  overflow: hidden;
  padding: 120px 0;
}

.section-bg {
  background-color: #eee;
}

.section-bg2 {
  background-color: #003566;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header2 {
  padding-bottom: 1px;
  text-align: center;
  font-weight: 200;
  font-size: 38px;
  color: #fff;
}

#divisor_carreira .section-header2 {
  line-height: 1.4;
  font-size: 48px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  font-family: var(--font-primary);
  font-weight: 400;
	color: #00203D;
  font-size: 38px;
  margin: 0;
}

.section-header p span {
  font-family: 'Playfair Display', serif;
  color: var(--color-default);
	font-style: italic;
	font-size: 35px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Cabeçalho
--------------------------------------------------------------*/
.header {
  background: #00203D;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Menu Desktop
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    font-family: var(--font-default);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #44B0DB;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 20px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #00203D;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Menu Mobile
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #00203D;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 0 0 20px;
  }

  .mobile-nav-hide {
    color: #00203D;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Por que escolher a Puc-Rio
--------------------------------------------------------------*/
.sobre .about-img {
  min-height: 500px;
}

.sobre h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.sobre .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.sobre .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.sobre .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.sobre .content ul {
  list-style: none;
  padding: 0;
}

.sobre .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.sobre .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.sobre .content p:last-child {
  margin-bottom: 0;
}

.sobre .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.sobre .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.sobre .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.sobre .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.sobre .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Seção diferenciais especialização PUC
--------------------------------------------------------------*/
#puc-us.puc-us .low_wid_cont {
  margin: 0 auto;
  width: 90%;
}
.puc-us .puc-box {
  padding: 30px;
  background: #003566;
	color: #fff;
}

#puc-us.puc-us .puc-box {
  background: #003566;
  padding: 0 20px;
	color: #fff;
  height: 100%;
}

#puc-us.puc-us .col-lg-4:nth-child(1) .puc-box,
#puc-us.puc-us .col-lg-4:nth-child(2) .puc-box {
	border-right: 2px solid #44B0DB;
}

#puc-us.puc-us .col-lg-4:nth-child(2) .puc-box {
  padding: 0 30px;
}

.puc-us .puc-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.puc-us .puc-box p {
  margin-bottom: 30px;
}

#puc-us.puc-us .puc-box p {
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 300;
  font-size: 26px;
}

#puc-us.puc-us .puc-box p b {
  font-weight: 600;
}

.puc-us .puc-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.puc-us .puc-box .more-btn i {
  font-size: 14px;
}

.puc-us .puc-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.puc-us .icon-box {
  text-align: center;
  transition: 0.3s;
  margin: 0 0 30px;
  color: #fff;
  height: 100%;
  width: 100%;
}

.puc-us .icon-box img {
  width: 100%;
}

.cfull {
	transition: 0.3s;
	font-weight: 300;
	font-size: 20px;
  color: #fff;
	padding: 0px;
	letter-spacing: 0.5px
}

.cfti {
  font-size: 30px;
  font-weight: 500;
}

.cfti a {
  color: #fff
}

.cfti a:hover {
  color: #44B0DB;
}

.puc-us .icon-box i {
  color: #fff;
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.puc-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.puc-us .icon-box p {
  font-size: 15px;
  color: #fff;
}

@media (min-width: 1200px) {
  .puc-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Div Quebra: Desafios da sua Carreira
--------------------------------------------------------------*/
.divisor_carreira {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../../imagens/banner_desafios-paralax.jpg") center center;
  background-size: cover;
  padding: 50px 0;
}

.divisor_carreira2 {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../../imagens/banner_cursos-psicologia2.jpg") center center;
    background-size: cover;
    padding: 50px 0;
    margin-top: 70px;
    margin-bottom: 90px;
}

@media (min-width: 1365px) {
  .divisor_carreira {
    background-attachment: fixed;
  }
}

.divisor_carreira .stats-item {
  padding: 30px;
  width: 100%;
}

.divisor_carreira .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.divisor_carreira .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Outras: Menu, contato, depoimentos. 
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: ;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 10px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .contato {
  font-family: var(--font-primary);
	padding: 15px 10px 0;
  margin-right: auto;
	font-weight: 300;
  color: #00203D;
  font-size: 22px;
  width: 95%;
}

.menu .tab-content .menu-item .img-con {
  margin-right: auto;
  margin-left: 60px;
  width: 75%;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}
/*--------------------------------------------------------------
# Coordenadores
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: left;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 0px solid var(--color-default);
    padding: 10px;
    background: transparent;
    z-index: 1;
    transform: scale(1.23);
  }
}

/*--------------------------------------------------------------
# Slide Principal
--------------------------------------------------------------*/
.hero {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 125px 0;
  width: 100%;
}

.hero.slide1 {
  background-image: url("../../imagens/foto-entrada-2.jpg");
}

.hero.slide2 {
  background-image: url("../../imagens/foto-entrada-extensao2.jpg");
}

.hero.slide3 {
  background-image: url("../../imagens/banner_cursos-psicologia.jpg");
}

.hero h2 {
  font-size: 45px;
  font-weight: 600;
  margin: 10px 0px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  letter-spacing: 0.35em
}

.hero h2 span {
  color: var(--color-secondary);
}

.hero p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 30px;
}

.hero iframe {
  border: 2px solid white;
  border-radius: 10px;
  min-height: 300px;
  width: 100%;
}

.hero span {
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 20px;
}

.dec-it {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 35px;
}

.hero span.dec-it {
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 35px;
}

.hero.slide2 span.dec-it {
  font-size: 32px;
}

#divisor_carreira span.dec-it {
	font-family: 'Playfair Display', serif;
	font-style: italic;
  padding-left: 25%;
  font-weight: 600;
	font-size: 50px;
}

#gallery span.dec-it,
#filtros span.dec-it,
#puc-us span.dec-it,
#sobre span.dec-it,
#menu span.dec-it {
  font-weight: 500;
	font-size: 35px;
}

.btn-cta1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 8px 28px rgba(0, 32, 61, 0.2);
}

#filtros .btn-cta1 {
  padding: 10px 40px;
}

#footer .btn-cta1 {
  background: #fff;
  padding: 10px 50px;
  color: #00203D;
}

#footer .btn-cta1:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-cta2 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #fff;
  transition: 0.5s;
  color: #fff;
  background: Transparent;
  box-shadow: 0 8px 28px rgba(0, 32, 61, 0.2);
  margin: 0px 10px;
}

.btn-cta1:hover, .btn-cta2:hover  {
  background: rgba(0, 32, 61, 0.8);
  box-shadow: 0 8px 28px rgba(0, 32, 61, 0.45);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #00203D;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  border-color: #fff;
  background: #fff;
}

.footer .social-links a svg path {
  fill: #fff;
}

.footer .social-links a:hover svg path {
  fill: #00203D;
}

.footer .copyright {
  text-align: center;
  padding-top: 3px;
  border-top: 0px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# Página Interna (Galeria de Cursos)
--------------------------------------------------------------*/
.cursos-ti {
  font-size: 18px;
  font-weight: 300
}

.filtros-ti {
  font-size: 20px;
  font-weight: 500
}

.filtros-item {
  font-size: 20px;
  font-weight: 300
}

.title-pag {
  font-size: 38px;
  font-weight: 400
}

/*--------------------------------------------------------------
# Tooltip Diferenciais PUC
--------------------------------------------------------------*/
.wrapper {
cursor: help;
margin: 5px 15px;
padding: 15px 20px;
position: relative;
text-align: center;
width: 200px;
-webkit-transform: translateZ(0); /* webkit flicker fix */
-webkit-font-smoothing: antialiased; /* webkit text rendering fix */
}

@media (max-width: 992px) {
	.wrapper {margin: auto;}}

@media (max-width: 1400px) {
	.wrapper {width: 180px; }}

.wrapper .tooltip {
background: #44B0DB;
bottom: 100%;
border-radius: 5px;
color: #fff;
font-size: 12px;
text-align: center;	
display: block;
left: 0px;
margin-bottom: 8px;
opacity: 0;
padding: 20px;
pointer-events: none;
position: absolute;
width: 100%;
-webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
   -o-transform: translateY(10px);
    transform: translateY(10px);
-webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
   -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
   -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.wrapper .tooltip:before {
bottom: -20px;
content: " ";
display: block;
height: 20px;
left: 0;
position: absolute;
width: 100%;
}

.wrapper .tooltip:after {
border-left: solid transparent 10px;
border-right: solid transparent 10px;
border-top: solid #1496bb 10px;
bottom: -10px;
content: " ";
height: 0;
left: 50%;
margin-left: -13px;
position: absolute;
width: 0;
}

.wrapper:hover .tooltip {
opacity: 1;
pointer-events: auto;
-webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
   -o-transform: translateY(0px);
    transform: translateY(0px);
}

/* IE can just show/hide with no transition */
.lte8 .wrapper .tooltip {
display: none;
}

.lte8 .wrapper:hover .tooltip {
display: block;
}

/*--------------------------------------------------------------
# Phase2 Custom
--------------------------------------------------------------*/

.box-p2 {
  background-color: #F3F4F6;
  border-radius: 10px;
  padding: 50px 20px;
  min-height: 165px;
  font-size: 18px;
  height: 100%;
}

#sobre .box-p2 h5 {
  font-weight: 300;
  font-size: 23px;
}

#sobre .box-p2 h5 b {
  font-weight: 600;
}

.vertical-centerp2 {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.img-con {
  width: 100%;
}

h5 {
  font-size: 18px
}

#filtros {
  background: #003566;
  background-image: url("../../imagens/cursos-background.jpg");
}

.c-tit {
  font-size: 26px;
  font-weight: 500;
  line-height: 50px
}

.c-cargo {
  font-size: 20px;
  font-weight: 300
}

.pqesp {
  font-size: 28px;
  font-weight: 600;
  line-height: 30px
}

.pqesp2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 30px
}

.wpp_btn_fixed {
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpp_btn_fixed img {
  width: 100%;
}

.box_escolher_puc_sobre {
  text-align: center;
  position: relative;
  width: 20%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.box_escolher_puc_sobre .fonte {
  position: absolute;
  font-size: 9px;
  bottom: 20px;
  right: 0;
  left: 0;
}

/* .box_areaInteresse_filtros {
  padding: 0 10px;
  width: 33.3%;
} */

#menu .carousel-cell {
  display: flex;
}

#menu .content_img_box {
  border-radius: 10px 0px 0px 10px;
  background: #013565;
  padding: 20px;
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#menu .content_img_box p {
  position: relative;
  font-weight: 300;
  font-size: 18px;
  padding: 30px 0;
  color: #fff;
  margin: 0;
}

#menu .content_img_box p img:first-child {
  position: absolute;
  filter: invert();
  width: 30px;
  left: 0;
  top: 0;
}

#menu .content_img_box p img:last-child {
  transform: rotate(180deg);
  position: absolute;
  filter: invert();
  width: 30px;
  bottom: 0;
  right: 0;
}

#menu .content_img_box span {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

#menu .content_img_box b {
  color: #44B0DB;
}

#menu .content_img_img {
  text-align: center;
  overflow: hidden;
  max-width: 30%;
  height: 100%;
}

#menu .content_img_img img {
  height: 100%;
}

.tmp2 {padding: 0px 22px}

@media (max-width: 1350px) {
  .menu .tab-content .menu-item .img-con {
    margin-right: auto;
    margin-left: 0;
    width: 90%;
  }
  .menu .tab-content .menu-item .contato {
    width: 100%;
  }
  .hero h2 {
    margin: 10px 0 0;
    font-size: 40px;
  }
  .hero p {
    margin-bottom: 10px;
    font-size: 26px;
  }
  .hero iframe {
    min-height: 260px;
  }
  #sobre .box-p2 {
    padding: 40px 14px;
  }
  #sobre .box-p2 h5 {
    font-size: 20px;
  }
/*   .box_areaInteresse_filtros {
    width: 40%;
  } */
  .c-tit {
    font-size: 28px;
  }
  .c-cargo {
    font-size: 18px;
  }
  #puc-us.puc-us .low_wid_cont {
    width: 95%;
  }
  #puc-us.puc-us .puc-box p {
    font-size: 22px;
  }
  #puc-us.puc-us .puc-box span {
    font-size: 14px;
  }
  #menu .btn-cta1 {
    font-size: 16px;
  }
  #footer .btn-cta1 {
    padding: 10px 40px;
    font-size: 16px;
  }
  #divisor_carreira .section-header2 {
    font-size: 44px;
  }
  #divisor_carreira span.dec-it {
    font-size: 42px;
  }
  .hero {
    min-height: 540px;
  }
  .hero.slide2 span.dec-it {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  #divisor_carreira span.dec-it {
    padding-left: 15%;
  }
  .menu .tab-content .menu-item .contato {
    width: 100%;
  }
}
@media (max-width: 992px) {
  #puc-us.puc-us .col-lg-4:nth-child(1) .puc-box,
  #puc-us.puc-us .col-lg-4:nth-child(2) .puc-box {
    border-bottom: 2px solid #44B0DB;
    border-right: none;
    padding: 0 0 30px;
  }
  #puc-us.puc-us .puc-box {
    padding: 0;
  }
  #divisor_carreira .section-header2 {
    font-size: 40px;
  }
  #divisor_carreira span.dec-it {
    padding-left: 5%;
    font-size: 40px;
  }
  .hero {
    background-position: center;
    padding: 110px 0 180px 0;
    min-height: 900px;
  }
  .hero.slide1 {
    background-image: url("../../imagens/foto-entrada-1_mob-v2.jpg");
  }
  .hero.slide2 {
    background-image: url("../../imagens/foto-entrada-extensao2_mob.jpg");
  }
  #hero .carousel-cell .container .row.justify-content-between.gy-5 {
    flex-direction: column-reverse;
  }
  .box_escolher_puc_sobre {
    align-items: normal;
    width: 100%;
  }
  .cfull {
    font-size: 20px;
  }
	
}
@media (max-width: 768px) {
  #divisor_carreira .section-header2 {
    font-size: 30px;
  }
  #divisor_carreira span.dec-it {
    padding-left: 5%;
    font-size: 30px;
  }
  .menu .tab-content .menu-item .menu-img {
    width: 100%;
  }
  .footer {
    padding: 50px 0 0;
  }
  .hero iframe {
    min-height: 240px;
    width: 80%;
  }
/*   .box_areaInteresse_filtros {
    width: 100%;
  } */
  .menu .tab-content .menu-item {
    text-align: center;
  }
  .hero {
    padding: 80px 0;
  }
  .hero h2 {
    font-size: 30px;
  }
  .hero p {
    font-size: 20px;
  }
  .hero span.dec-it {
    font-size: 24px;
  }
  .hero span {
    font-size: 16px;
  }
  .hero {
    min-height: 700px;
  }
  #sobre .low_wid_cont {
    width: 80%;
    margin: 0 auto;
  }
  .section-header2 {
    font-size: 30px;
  }
  .section-header p {
    font-size: 30px;
  }
  #gallery span.dec-it, #filtros span.dec-it, #puc-us span.dec-it, #sobre span.dec-it, #menu span.dec-it {
    font-size: 30px;
  }
  section {
    padding: 50px 0;
  }
  section#menu.menu2,
  section#gallery {
    padding: 50px 0 90px;
  }
	.tmp2 {padding: 0px}
}
@media (max-width: 572px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: 50px;
    padding-left: 50px;
  }
  #menu.menu2 .container {
    padding-right: 30px;
    padding-left: 30px;
  }
  #hero .container,
  #hero .container-fluid,
  #hero .container-lg,
  #hero .container-md,
  #hero .container-sm,
  #hero .container-xl,
  #hero .container-xxl {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
  .header .logo img {
    max-height: 45px;
  }
  .hero {
    min-height: 800px;
    max-height: 800px;
    padding: 0;
  }
  .hero iframe {
    min-height: 247px;
    width: 95%;
  }
  .hero .btn-cta1 {
    margin-bottom: 20px;
  }
	.btn-cta1 .btn-cta2 {font-size: 14px; padding: 10px 12px}
	#filtros .btn-cta1 {padding: 10px 22px}
  .hero img {
    width: 60%;
  }
  #filtros .low_wid_cont {
    width: 90%;
    margin: 0 auto;
  }
  #filtros .cfull {
    font-size: 20px;
  }
  #divisor_carreira .section-header2 {
    font-size: 18px;
  }
  #divisor_carreira span.dec-it {
    font-size: 18px;
  }
  #menu .content_img_box p {
    font-size: 16px;
  }
	.tmp2 {padding: 0px}
	.mb-5 {margin-bottom: 1rem !important}
	.menu .tab-content .menu-item .contato {margin-top: -45px}
}