@charset "UTF-8";
/* ============================================= */
/*                   VARIÁVEIS                   */
/* ============================================= */
:root {
  --gotham: "Gotham", sans-serif;
  /* Cores */
  --white: #ffffff;
  --gray-400: #f1f1f1;
  --gray-500: #efefef;
  --gray-700: #7a7a7a;
  --gray-900: #233447;
  --black: #000000;
  --brand-color-1: #002038;
  --brand-color-1-hover: #00111f;
  --brand-color-2: #1c4389;
  --text-color: #060132;
  --primary: #96752b;
  --green-2: #F0FBFA;
  --green-3: #58C2CF;
  --bpo-primary: #FF6E00;
  --whatsapp: #25d366;
  --whatsapp-hover: #167f3d;
  /* Gradientes */
  --gradient-1: linear-gradient(63deg, rgba(83,188,217,1) 0%, rgba(95,204,186,1) 100%);
  /* Sombra */
  --shadow-1: 4px 5px 10px rgba(200, 200, 200, 0.25);
  /* Espaçamentos */
  --half: 12px;
  --base: 24px;
  --double: 48px;
  /* Tipografia */
  --text-base: 14px;
  --text-uppercase: uppercase;
}

/* ============================================= */
/*                   GLOBAL STYLES               */
/* ============================================= */
* {
  font-family: var(--gotham);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gotham) !important;
  line-height: 100%;
  font-weight: 400;
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section-padding-half {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 960px) {
  .vertical-align {
    gap: 0;
    align-items: center;
  }
}
.divisor {
  width: 60px;
  height: 10px;
  background-color: var(--primary);
  margin-bottom: 10px;
}

.section-left-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 10px;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  position: absolute;
  left: 40px;
  bottom: -40px;
  display: none;
}
@media (min-width: 767px) {
  .section-left-title {
    display: block;
  }
}

/* ============================================= */
/*                   HEADINGS                    */
/* ============================================= */
h1, .h1 {
  font-size: 34px;
}
h1 br, .h1 br {
  display: none;
}
@media (min-width: 960px) {
  h1, .h1 {
    font-size: 50px;
  }
  h1 br, .h1 br {
    display: block;
  }
}

h4, .h4, .banner-home ul li {
  font-size: 20px;
}
@media (min-width: 960px) {
  h4, .h4, .banner-home ul li {
    font-size: 24px;
  }
}

h5, .h5 {
  font-size: 16px;
}
@media (min-width: 960px) {
  h5, .h5 {
    font-size: 20px;
  }
}

/* ============================================= */
/*                   TEXTOS                     */
/* ============================================= */
p {
  font-size: 16px;
}

.semi {
  font-size: 16px;
}

.semi-small {
  font-size: 14px;
}

small, .small {
  font-size: 12px;
}

.text-fx {
  font-size: 16px !important;
  position: relative;
  z-index: 0;
  display: inline;
  line-height: 120%;
  padding: 0.1rem 0.5rem 0rem 0.4rem;
  background-color: var(--primary);
  background-image: var(--primary);
}
@media (min-width: 991px) {
  .text-fx {
    font-size: 20px !important;
  }
}

.text-right {
  text-align: right;
}

/* ============================================= */
/*                  TYPOGRAPHY                  */
/* ============================================= */
.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-semibold {
  font-weight: 500 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-serif {
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-style: italic;
}

/* ============================================= */
/*                 BUTTONS                      */
/* ============================================= */
.btn {
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.btn:active, .btn:focus, .btn:hover {
  border: 2px solid transparent;
}
@media (min-width: 960px) {
  .btn {
    padding: 16px 26px;
    font-size: 16px;
  }
  .btn:active, .btn:focus, .btn:hover {
    padding: 16px 32px;
    border: 2px solid transparent;
  }
}
.btn-link {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: currentColor;
  border-bottom: 2px solid currentColor;
  width: fit-content;
  margin-top: 0;
  transition: padding ease-in-out 0.3s;
  border-radius: 0;
  padding: 10px 0;
}
.btn-link img {
  transition: right ease-in-out 0.3s;
  height: 13px;
  position: relative;
  top: -3px;
  right: 0;
  fill: currentColor;
  margin-left: 5px;
}
.btn-link:hover {
  padding: 10px 5px 10px 0;
  color: currentColor;
  border-bottom: 2px solid currentColor;
}
.btn-link:hover img {
  right: -5px;
}

.btn-sm {
  font-size: 14px;
  padding: 14px 24px;
}
.btn-sm:active, .btn-sm:focus, .btn-sm:hover {
  padding: 14px 28px !important;
}
.btn-sm-not-hover-fx:hover {
  padding: 14px 24px;
}

.btn-secondary {
  color: var(--white);
  background-color: var(--black);
}
.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  color: var(--white);
  background-color: var(--black);
}
.btn-secondary.outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  color: var(--white);
  background-color: var(--primary);
}

/* ============================================= */
/*                  FOOTER                      */
/* ============================================= */
.footer-whats {
  position: fixed;
  z-index: 120;
  right: 15px;
  pointer-events: none;
  opacity: 0;
  bottom: -100px;
  transition: all 0.5s;
}
.footer-whats img {
  height: 50px;
  width: 50px;
}
@media (min-width: 960px) {
  .footer-whats img {
    height: 60px;
    width: 60px;
  }
}
.footer-whats.active {
  bottom: 15px;
  opacity: 1;
  pointer-events: initial;
}
.footer-whats.active:hover {
  bottom: 20px;
}

/* ============================================= */
/*                MISCELLANEOUS                 */
/* ============================================= */
img.lazyload,
img.lazyloading {
  object-fit: none;
}

.relative {
  position: relative;
}

body.nav-menu {
  overflow: hidden;
}

.seo-page-title {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

/* ============================================= */
/*                RIBBON ROTATOR                */
/* ============================================= */
.ribbon-rotator {
  background-color: var(--primary);
  position: relative;
  z-index: 1;
}
.ribbon-rotator-content {
  height: 60px;
  width: 100%;
  background-image: url("../../images/ribbon-rotator.svg");
  background-position: center;
  background-repeat: repeat-x;
  background-size: auto 40px;
  animation: marquee_horizontal 55s linear infinite;
}
.ribbon-rotator.black {
  background-color: var(--black);
}
@media (min-width: 960px) {
  .ribbon-rotator-content {
    height: 80px;
    background-size: auto 50px;
  }
}
@keyframes marquee_horizontal {
  100% {
    background-position: -3000px center;
    top: -10px;
  }
}

/* ============================================= */
/*                ZEZTRA BPO                    */
/* ============================================= */
.zeztra-bpo {
  --primary: var(--bpo-primary);
}
.zeztra-bpo .btn-primary,
.zeztra-bpo .btn-primary:hover,
.zeztra-bpo .payments-icon {
  background-color: var(--bpo-primary);
}

body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* fundo escuro */
  backdrop-filter: blur(2px);
  z-index: 1000;
}
body.menu-open .page-nav {
  position: relative;
  z-index: 1050;
}

@media (max-width: 1199px) {
  .page-nav-list .dropdown-menu.show {
    top: 0 !important;
  }
  .page-nav-list .dropdown-menu.show .dropdown-item {
    pointer-events: initial;
  }
}
.dropdown-menu {
  padding: 20px 25px;
  border: transparent;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.dropdown-menu .ia-icon {
  max-width: 90%;
  display: none !important;
}
@media (max-width: 1199px) {
  .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    width: 100dvw;
    height: 100dvh;
    pointer-events: initial;
    position: fixed;
    overflow: auto;
  }
  .dropdown-menu.show .col-lg-2,
  .dropdown-menu.show .col-lg-4:not(:last-of-type) {
    margin-bottom: 30px !important;
  }
  .dropdown-menu.show ul {
    opacity: 1;
    position: relative;
    z-index: 1500;
    visibility: visible;
    height: fit-content;
    grid-template-columns: 1fr;
  }
}
.dropdown-menu .dropdown-item {
  text-transform: unset !important;
  padding: 8px 0;
}
.dropdown-menu .dropdown-item:hover {
  background: transparent;
}
.dropdown-menu .dropdown-item.breve {
  opacity: 0.6;
  color: #586874;
  pointer-events: none;
  position: relative;
}
.dropdown-menu .dropdown-item.breve span {
  background-color: #e2e6e9;
  color: #586874;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 2px;
  white-space: nowrap;
  position: absolute;
  margin-left: 5px;
  margin-top: 3px;
}

/* ============================================= */
/*                   NAVIGATION                  */
/* ============================================= */
.page-nav {
  top: 0;
  background-color: var(--brand-color-1);
  padding: var(--base) 0;
  z-index: 100;
  transition: padding 0.3s ease-in-out;
}
.page-nav .container {
  display: flex;
  align-items: center;
}
.page-nav-logo {
  transition: all 0.3s;
}
.page-nav-logo:hover {
  filter: brightness(1.1);
}
.page-nav-logo img {
  height: 40px;
  width: fit-content;
  transition: all 0.3s;
}
.page-nav-list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  list-style: none;
  gap: calc(var(--half) + var(--base));
  left: 20vw !important;
  transition: all ease-out 0.3s;
}
.page-nav-list li a:not(.btn) {
  font-family: var(--gotham);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  text-transform: uppercase;
}
.page-nav-list li a:not(.btn):hover {
  opacity: 0.7;
}
.page-nav-list .btn:hover {
  opacity: 0.7;
}
.page-nav.scroll {
  padding: var(--half) 0;
  border-bottom: 1px solid #F6F6F6;
}
.page-nav.scroll img {
  width: 160px;
}

body.nav-menu .page-nav-list {
  opacity: 1;
  left: 0 !important;
  visibility: visible;
  pointer-events: initial;
  background-color: var(--brand-color-1-hover);
  z-index: 100;
}

/* ============================================= */
/*                 NAVIGATION MOBILE             */
/* ============================================= */
.page-nav #nav-mobile-action {
  display: none;
  position: absolute;
  z-index: 100;
}

.page-nav #nav-mobile-action img {
  width: 26px;
}

@media (max-width: 1199px) {
  .page-nav #header-logo img {
    width: 125px;
  }
  .page-nav #nav-mobile-action {
    display: block;
    right: 5%;
  }
  .page-nav ul {
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: var(--white);
  }
  .page-nav ul.active {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .page-nav ul li a {
    color: #fff;
    font-size: 19px;
  }
}
/* ============================================= */
/*                   BANNER TOP                  */
/* ============================================= */
.banner-home {
  position: relative;
  background-color: var(--brand-color-1);
  color: var(--white);
  min-height: calc(80vh - 94px);
}
.banner-home-content > * {
  z-index: 10;
}
.banner-home-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-color-1);
  opacity: 0.7;
  z-index: 0;
}
@media (min-width: 960px) {
  .banner-home {
    min-height: calc(100vh - 94px);
  }
  .banner-home-content::before {
    opacity: 0.2;
  }
}
.banner-home > .container,
.banner-home > .container .row {
  height: 100%;
}
.banner-home-bg {
  height: 100%;
  padding: var(--base) 0;
  display: flex;
  justify-content: center;
  background-image: url(../../images/banner-home.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-home-icon {
  position: absolute;
  left: 3%;
  bottom: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  max-width: 80%;
}
.banner-home .h1 {
  font-weight: 700;
  text-transform: uppercase;
}
.banner-home .h1 span {
  color: var(--primary);
  font-weight: 300;
}
@media (min-width: 960px) {
  .banner-home .h1 {
    font-size: 38px;
  }
  .banner-home .h1 span {
    font-size: 70px;
    letter-spacing: 2px;
  }
}
.banner-home h2 {
  max-width: 80%;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
}
.banner-home ul li {
  font-size: 18px;
}
.banner-home .col-sm-6 {
  padding: 0;
}
.banner-home p {
  margin: 0;
}
.banner-home-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: fit-content;
  gap: 5px;
}
.banner-home-cta span img {
  height: 30px;
  width: fit-content;
}

.banner-solucoes {
  position: relative;
  background-color: #e7e3da;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
}
.banner-solucoes-content {
  background-color: var(--brand-color-1);
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.banner-solucoes-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--brand-color-1);
  z-index: 0;
}
.banner-solucoes-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 120px;
  height: 100%;
  background-color: var(--brand-color-1);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0% 100%);
}
.banner-solucoes > .container {
  height: 100%;
  background-image: url(https://placehold.co/1400x800/EEE/31343C);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-solucoes .h1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffcf3b;
  margin-bottom: 0;
}
.banner-solucoes h2 {
  max-width: 80%;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}
.banner-solucoes h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-color-1);
}
.banner-solucoes ul li {
  font-size: 18px;
}
.banner-solucoes .col-sm-6 {
  padding: 0;
}
.banner-solucoes p {
  margin: 0;
}
.banner-solucoes-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: fit-content;
  gap: 5px;
}
.banner-solucoes-cta span img {
  height: 30px;
  width: fit-content;
}

/* ============================================= */
/*                   FACTS                       */
/* ============================================= */
.facts {
  background-color: var(--brand-color-1);
  color: var(--white);
}
.facts h2 {
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0;
}
.facts h3 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}
.facts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.facts-item {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.facts-item:first-child {
  border-left: none;
}
.facts-item:last-child {
  border-right: none;
}
.facts-item h4 {
  font-size: 36px;
  font-weight: 700;
}
.facts-item p {
  color: var(--primary);
  font-weight: 900;
}
.facts-item > * {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .facts-item {
    border-right: 1px solid var(--white);
    border-left: 1px solid var(--white);
  }
}

/* ============================================= */
/*                   DESAFIOS                    */
/* ============================================= */
.desafios {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #96681b;
  color: var(--white);
}
.desafios h2 {
  text-transform: uppercase;
}
.desafios h2 b {
  font-size: 24px;
}

/* ============================================= */
/*                   SERVICOS                    */
/* ============================================= */
.servicos {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--brand-color-1);
  color: var(--white);
}
.servicos h2 {
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0;
}
.servicos h3 {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
}
.servicos-item {
  text-align: center;
  width: 100%;
  flex: 0 0 auto;
}
.servicos-item h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.servicos-item img {
  border-radius: 30px;
  width: 100%;
}

/* ============================================= */
/*                      QUEM SOMOS               */
/* ============================================= */
.quem-somos {
  background-color: var(--brand-color-1);
  color: var(--white);
}
.quem-somos h2 {
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
}
.quem-somos-bg {
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* ============================================= */
/*                      CLIENTES                 */
/* ============================================= */
.clientes {
  background-color: #e7e3da;
  color: var(--black);
}
.clientes h2 {
  text-transform: uppercase;
}

.page-banner {
  background-image: url(../../images/hero-quem-somoes.jpg);
  background-repeat: no-repeat;
  position: relative;
}
.page-banner-content {
  color: var(--white);
  background-color: rgba(51, 26, 8, 0.8);
  padding: 50px;
  z-index: 10;
  background: linear-gradient(rgba(51, 26, 8, 0.8), rgba(51, 26, 8, 0.8)) top no-repeat, transparent;
  background-size: 100% 50%, 100% 100%;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: var(--brand-color-1);
}

/* ============================================= */
/*                      PROJETOS                 */
/* ============================================= */
.projetos-page h1 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}
.projetos-page .projetos-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.projetos-page .projetos-item {
  align-items: stretch;
}
.projetos-page .projetos-item-content {
  border-radius: 30px;
  background-color: #d9c9a4;
  padding: 30px;
}
.projetos-page .projetos-item-content h2 {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}
.projetos-page .projetos-item-content p {
  margin-bottom: 0;
}
.projetos-page .projetos-item-image {
  height: auto;
}
.projetos-page .projetos-item-image img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

/* ============================================= */
/*                      CONTATO                  */
/* ============================================= */
.banner-contato {
  background-size: contain;
  background-position: center;
  background-color: #96752c;
  color: var(--white);
  background-image: url(../../images/banner-contato.jpg);
  color: var(--white);
  background-repeat: no-repeat;
}
.banner-contato h1 {
  font-size: 46px;
  font-weight: 900;
}

/* ============================================= */
/*              BANNER HOME RESPONSIVO           */
/* ============================================= */
.banner-home ul {
  padding: 0;
  list-style-type: none;
}
.banner-home ul li {
  color: var(--white);
  text-transform: var(--text-uppercase);
}

@media (min-width: 960px) {
  .banner-home {
    height: 600px;
    padding: 0;
  }
  .banner-home-img {
    position: relative;
    right: -30px;
  }
  .banner-home p {
    font-size: 22px;
  }
  .banner-home .uk-container .uk-grid {
    height: 600px;
    align-items: center;
  }
  .banner-home h2 br {
    display: block;
  }
  .banner-home .uk-container {
    width: unset;
  }
}
.footer {
  background-color: #e7e3da;
}
.footer-row-insti {
  color: var(--white);
  background-color: var(--brand-color-1);
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-row-insti p {
  font-size: 14px;
}
.footer-row-insti a {
  font-weight: 700;
  color: var(--white) !important;
}
.footer-title {
  margin-bottom: var(--half);
  font-size: 20px;
  font-weight: 500;
}
.footer ul {
  list-style-type: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.footer ul li a {
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.footer ul li::marker {
  content: "- ";
}
.footer ul hr {
  height: 2px;
}
.footer a:not(.btn) {
  color: var(--text-color);
}
.footer .social-col {
  text-align: left;
}
@media (min-width: 768px) {
  .footer .social-col h3 {
    text-align: right;
  }
}
.footer .social {
  flex-direction: row;
}
.footer .social li::marker {
  content: none;
}
.footer .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 40px;
  width: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
}
.footer .social img.linkedin {
  width: 17px;
}
.footer .social img {
  width: 20px;
}
.footer-blog a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-blog a:last-of-type {
  margin-bottom: 0;
}
.footer-blog-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-blog-item img {
  border-radius: 8px;
}
.footer-blog-item p {
  font-size: 15px;
  margin-bottom: 0;
}

.copyright-bar {
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E6E6E6;
}
.copyright-bar p {
  margin-bottom: 0;
  font-size: 16px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .copyright-bar p {
    font-size: 13px;
  }
}

.bpo-partner {
  background-color: var(--bpo-primary);
  color: var(--white);
}
.bpo-partner h3 {
  font-size: 28px;
}

.content-bpo-box {
  background-color: var(--bpo-primary);
  color: var(--white);
  border-radius: 20px;
  padding: 60px 30px;
}
@media (min-width: 960px) {
  .content-bpo-box {
    padding: 80px 50px;
  }
}
.content-bpo h2 {
  font-size: 60px;
}
.content-bpo img {
  border-radius: 20px;
}
.content-bpo video {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  object-position: 0 -50px;
  filter: grayscale(0.4);
}
.content-bpo-card {
  background-color: var(--white);
  color: initial;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}
.content-bpo-card p {
  margin-bottom: 0;
  font-size: 20px;
}

.sticky {
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--half);
  padding: 10px;
}
.sticky p {
  font-size: 16px;
  font-weight: 600;
}
.sticky .btn-sm {
  font-size: 13px;
  padding: 10px 16px;
}
.sticky .btn-sm:hover {
  padding: 10px 18px !important;
}

.radius {
  border-radius: 16px;
}

.video-ia {
  background-color: var(--black);
  background-image: url("../../images/bg-video-ia.png");
  color: var(--white);
}

.video-wrapper {
  position: relative;
  max-width: 100%;
}

.video-wrapper img {
  filter: brightness(0.8);
  transition: all ease 0.3s;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
}
.video-thumbnail:hover .play-button {
  transform: scale(1.1);
}
.video-thumbnail:hover img {
  filter: brightness(0.9);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-button {
  background: none;
  border: none;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button img {
  width: 40px;
}

.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio = 9/16 = 0.5625 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* opcional */
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.nav-link.dropdown-toggle {
  padding: 0;
}

.nav-item.dropdown {
  position: initial;
}

.dropdown-menu {
  padding-top: 50px;
  padding-bottom: 50px;
}
.dropdown-menu.show {
  left: 0 !important;
  top: 94px !important;
  width: 100%;
  transform: unset !important;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid #E5E5E5;
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px 15px;
}
.dropdown-menu ul li {
  display: flex;
  flex: 1;
}
.dropdown-menu ul li .dropdown-item {
  white-space: initial;
}
.dropdown-menu h4 {
  margin-bottom: 15px;
  font-weight: 500;
}
.dropdown-menu p {
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */