/*

TemplateMo 584 Pod Talk

https://templatemo.com/tm-584-pod-talk

*/



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #5953e1;
  --secondary-color:              #282564;
  --section-bg-color:             #5953e1;
  --custom-btn-bg-color:          #5953e1;
  --custom-btn-bg-hover-color:    #5953e1;
  --dark-color:                   #000000;
  --p-color:                      #282564;
  --border-color:                 #282564;
  --link-hover-color:             #5953e1;

  --body-font-family:             'Montserrat', sans-serif;
  --title-font-family:            'Sono', sans-serif;


  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 24px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --menu-font-size:               14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h4,
h5
{
  color: var(--primary-color);
}

h2,
h6,
h7 {
  color: var(--white-color);
}

h3 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family); 
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary {
  background-color: #5953e1 !important; 
  border-color: #5953e1 !important; 
}

.btn-primary:hover {
  background-color: #282564 !important; 
  border-color: #282564 !important;
}



/*---------------------------------------
  SECTION               
-----------------------------------------*/
/* Centraliza o bloco do título */
.section-title-wrap {
    text-align: center;
    margin-bottom: 20px;
}

/* Título com fundo decorativo */
.section-title {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    background: rgba(89, 83, 225, 1); /* Fundo suave */
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(89, 83, 225, 1); /* Sombra leve */
    transition: all 0.3s ease-in-out;

}

/* Parágrafo abaixo do título */
.section-intro {
    font-size: 1.05rem;
    color: #555;
    text-align: center;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Espaçamento da seção */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}



main {
  position: relative;
  z-index: 1;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}


/*SECÇÃO DE MODULOS*/

/* Escopo isolado para o carrossel da seção de features */
        .feature-carousel .feature-slide-box {
            background: #ffffff;
            border-radius: 20px;
            border: 2px solid rgba(89, 83, 225, 0.1); /* Borda sutil com cor do tema */
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.08),
                0 2px 8px rgba(89, 83, 225, 0.05); /* Sombra dupla elegante */
            overflow: hidden;
            padding: 32px; /* Aumentei de 24px para 32px */
            min-height: 220px; /* Aumentei de 220px para 300px */
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Transição mais suave */
            position: relative;
        }

        /* Borda interna sutil */
        .feature-carousel .feature-slide-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            pointer-events: none;
        }

        .feature-carousel .feature-slide-box:hover {
            transform: translateY(-6px); /* Aumentei o efeito hover */
            border-color: rgba(89, 83, 225, 0.2); /* Borda mais visível no hover */
            box-shadow: 
                0 12px 48px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(89, 83, 225, 0.1);
        }

        .feature-carousel .feature-slide-text {
            max-width: 50%;
            text-align: left;
            padding-right: 24px; /* Mais espaçamento */
        }

        .feature-carousel .feature-title {
            font-size: 1.6rem; /* Aumentei de 1.4rem */
            font-weight: 400;
            color: #222222;
            margin-bottom: 16px; /* Mais espaço */
            line-height: 1.3;
        }

        .feature-carousel .feature-summary {
            font-size: 1.1rem; /* Aumentei de 1rem */
            color: #555555;
            line-height: 1.6;
        }

        .feature-carousel .feature-slide-image {
            max-width: 45%;
            text-align: center;
        }

        .feature-carousel .feature-image-wrapper img {
            width: 100%;
            max-height: 460px; 
            object-fit: cover;
            border-radius: 16px;
            border: 2px solid rgba(89, 83, 225, 0.08); /* Borda na imagem */
            transition: transform 0.3s ease;
        }

        .feature-carousel .feature-slide-box:hover .feature-image-wrapper img {
            transform: scale(1.02); /* Leve zoom na imagem no hover */
        }

       /* Texto introdutório */
        .feature-summary.text-muted {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.6;
            max-width: 700px;
            margin-top: 10px;
            text-align: left;
        }

        /* Melhorias nos controles do carrossel */
        .feature-carousel .carousel-control-prev,
        .feature-carousel .carousel-control-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .feature-carousel .carousel-control-prev:hover,
        .feature-carousel .carousel-control-next:hover {
            opacity: 1;
            background: rgba(89, 83, 225, 1);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .feature-carousel .carousel-control-prev {
            left: -25px;
        }

        .feature-carousel .carousel-control-next {
            right: -25px;
        }

        /* Botão Experimente Agora */
        .feature-carousel .try-now-btn {
            background: linear-gradient(135deg, #5953e1, #7b73e8);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(89, 83, 225, 0.3);
        }

        .feature-carousel .try-now-btn:hover {
            background: linear-gradient(135deg, #4a44d8, #6b63e5);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(89, 83, 225, 0.4);
            color: white;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .feature-carousel .feature-slide-box {
                flex-direction: column;
                text-align: center;
                min-height: 350px; /* Altura maior em mobile */
                padding: 24px;
            }

            .feature-carousel .feature-slide-text {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 20px;
            }

            .feature-carousel .feature-slide-image {
                max-width: 100%;
            }

            .feature-carousel .feature-title {
                font-size: 1.4rem;
            }

            .feature-carousel .feature-summary {
                font-size: 1rem;
            }
        }

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--primary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-image: linear-gradient(#282564, #FFFFFF);;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
}

.site-header h2 {
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}

.navbar .logo-image {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

/* Remover conflito com o segundo seletor */
.logo-image {
  width: 30px;
  height: auto;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 18px;
  padding-left: 18px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--white-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family); 
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--secondary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar .custom-border-btn {
  border-color: var(--white-color);
  color: var(--white-color);
}

.navbar .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* FORM DE PESQUISA PEQUENO E SUAVE */
.search-form .input-group {
  height: 30px;
  max-width: 250px;
}

.search-form .form-control {
  height: 30px;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 4px;
}

.search-form button#submit {
  height: 30px;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.8rem;
  border-radius: 0 4px 4px 0;
  padding: 0 12px;
}


/*---------------------------------------
  CAROUSEL CABEÇARIO         282564
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(#282564, #FFFFFF); 
  background-repeat: no-repeat;
  background-size: 120% 70%;
  background-position: top;
  padding-top: 100px;
}

.owl-carousel {
  text-align: center;
  width: 100%; /* Garante que ocupa toda a largura possível */
  max-width: 1800px; /* Aumenta o tamanho na esquerda e na direita */
  margin: 0 auto; /* Mantém o carrossel centralizado */
  padding-left: 0%; /* Expande a largura para a esquerda */
  padding-right: 0%; /* Expande a largura para a direita */
}

.image-container {
  width: 100%;
  height: 220px; /* Define uma altura fixa para todas as imagens */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Evita que a imagem saia do contêiner */
  position: relative;
}

.owl-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Mantém a proporção sem distorcer */
  border-radius: 8px;
}

.owl-carousel-info {
  width: 100%; /* Mantém a largura total */
  height: 42%;
  background-color: #fff;
  padding: 20px 10px 5px; /* Aumenta o padding superior e reduz o inferior */
  text-align: center;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Empurra o texto para cima */
}

/* Subir o título um pouco mais */
.owl-carousel-info h6 {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: bold;
  margin-top: -20px; /* Faz o título subir mais */
  margin-bottom: 3px;
}

/* Fazer o parágrafo acompanhar o título */
.owl-carousel-info p {
  font-size: clamp(10px, 1vw, 14px);
  margin-top: -6px; /* Ajuste fino para subir um pouco */
  color: #ffff;
}



@media (max-width: 768px) {
  .image-container {
      height: 160px; /* Ajusta altura em telas menores */
  }
  h6 {
      font-size: 16px;
  }
  p {
      font-size: 12px;
  }
}

.owl-carousel .owl-item .owl-carousel-verified-image {
  display: inline-block;
  width: 30px;
  height: auto;
  position: relative;
  right: 5px;
}

.verified-image {
  display: inline-block;
  width: 20px;
  height: auto;
}

.owl-carousel .owl-item {
  opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
  opacity: 1;
}

.owl-carousel-info-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.owl-carousel-info {
  background-color: var(--section-bg-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.badge {
  background-color: var(--custom-btn-bg-color);
  font-family: var(--title-font-family);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  padding-bottom: 5px;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
  position: absolute;
  right: 0;
  bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(0);
  padding-right: 20px;
  padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
  transform: translateY(-100%);
  opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
  display: block;
  margin-bottom: 10px;
  margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
  margin-top: 5px;
  margin-bottom: 5px;
}

.owl-carousel .owl-dots {
  background-color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(44, 22, 126, 0.175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  margin: auto;
  margin-top: 40px;
  padding: 15px 25px;
  padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
}

.custom-block:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(39, 3, 241, 0.175);
  border-color: transparent;
  transform: translateY(-3px);
}


.custom-block-info {
  text-align: center; /* Centraliza o texto */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza os itens horizontalmente */
  justify-content: center; /* Centraliza os itens verticalmente */
  height: 100%; /* Garante que a altura seja preenchida */
  padding: 10px 20px;
}

/* Ajuste específico para o nome */
.custom-block-info h5 {
  margin-bottom: 5px; /* Espaço entre o título e a descrição */
}

/* Ajuste específico para a descrição */
.custom-block-info p {
  margin: 0;
  padding: 0 10px; /* Evita que o texto fique colado nas bordas */
  text-align: center; /* Centraliza o texto da descrição */
}


.custom-block-image-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.custom-block-image-wrap > a {
  display: block;
}

.custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.custom-block-image-detail-page .custom-block-image {
  width: 100%;
  height: 212px;
}

.custom-block .custom-block-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-icon-wrap .section-overlay {
  opacity: 0.25;
}

.custom-block-btn-group {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.custom-block-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--p-font-size);
  color: var(--white-color);
  text-align: center;
  width: 32.5px;
  height: 32.5px;
  line-height: 32.5px;
  transition: all 0.3s;
}

.custom-block-icon:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-block .custom-btn {
  font-size: var(--menu-font-size);
  padding: 7px 15px;
}

.custom-block .custom-block-info + div .badge {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50px !important;
  font-size: var(--menu-font-size);
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.custom-block .custom-block-info + div .badge:hover {
  background-color: var(--secondary-color);
}

.custom-block-full {
  background-color: var(--white-color);
}

.custom-block-full:hover {
  border-color: var(--primary-color);
}

.custom-block-full .custom-block-info {
  padding: 20px;
  padding-bottom: 0;
}

.custom-block-full .custom-block-image {
  width: 100%;
  height: 210px;
}

.custom-block-full .social-share {
  position: absolute;
  top: 0;
  right: 0;
  margin: 50px;
}

.custom-block-top small {
  color: var(--p-color);
  font-family: var(--title-font-family);
}

.custom-block-top .badge {
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  height: 26.64px;
  line-height: 20px;
}

.custom-block-bottom a:hover span {
  color: var(--primary-color);
}

.custom-block-bottom a span {
  font-family: var(--title-font-family);
  color: var(--p-color);
  text-transform: uppercase;
  margin-left: 3px;
}

.custom-block-overlay {
  border-color: transparent;
  padding: 0;
}

.custom-block-overlay .custom-block-image {
  margin: auto;
  width: 100%;
  height: 210px;
  transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
  padding: 15px;
  padding-bottom: 0;
}

.custom-block-overlay-info {
  padding: 15px 20px 20px 20px;
}


/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
  margin-top: 10px;
}

.profile-block-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.profile-block p strong {
  display: block;
  font-family: var(--title-font-family);
}

.profile-detail-block {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 25px 35px;
}

.profile-detail-block p {
  margin-bottom: 0;
}


/*---------------------------------------
  AGENTE DE SUPORT ACTIVO               
-----------------------------------------*/
.agent-card {
      transition: all 0.3s ease;
      padding: 1.5rem 1rem;
      border-radius: 15px;
      background: white;
      border: 1px solid rgba(0,0,0,0.08);
  }

  .agent-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(89, 83, 225, 0.15);
      border-color: rgba(89, 83, 225, 0.2);
  }

  .agent-image-wrapper {
      position: relative;
      display: inline-block;
      margin-bottom: 1rem;
  }

  .agent-image {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f8f9fa;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
  }

  .agent-card:hover .agent-image {
      border-color: #5953e1;
      transform: scale(1.05);
  }

  .agent-status {
      position: absolute;
      bottom: 5px;
      right: 5px;
      background: white;
      border-radius: 50%;
      padding: 2px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .status-indicator {
      display: block;
      width: 12px;
      height: 12px;
      background: #28a745;
      border-radius: 50%;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {
      0% { opacity: 1; }
      50% { opacity: 0.6; }
      100% { opacity: 1; }
  }

  .agent-name {
      font-weight: 600;
      color: #2c3e50;
      font-size: 0.95rem;
  }

  .agent-role {
      font-size: 0.85rem;
      font-weight: 500;
  }

  .support-contact-card {
      border: none;
  }

  .support-contact-card .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(89, 83, 225, 0.3);
  }

  @media (max-width: 768px) {
      .agent-image {
          width: 70px;
          height: 70px;
      }
      
      .agent-card {
          padding: 1rem 0.5rem;
      }
  }


/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
  border: 1px solid #dee2e6;
  border-radius: var(--border-radius-large);
  padding: 20px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
  font-family: var(--title-font-family);
  min-width: 90px;
}

.contact-info p a {
  color: var(--p-color);
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.contact-info p a:hover {
  color: var(--secondary-color);
}

.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  border: 1px solid var(--white-color);
  border-radius: var(--border-radius-small);
  width: 80%;
  position: relative;
  top: 12px;
  padding: 35px;
}

.subscribe-form-wrap h6 {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  color: var(--primary-color);
  text-align: center;
  position: relative;
  bottom: 55px;
  margin-bottom: -25px;
  padding: 8px;
}

.subscribe-form #subscribe-email {
  border: 0;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
}

.subscribe-form #submit {
  border-radius: 0 0 10px 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  margin-bottom: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
  border: 0;
  margin-bottom: 0;
}

.search-form button[type="submit"] {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  max-width: 50px;
  height: 100%;
  padding-left: 15px;
}

.search-form button[type="submit"]:hover {
  background: var(--primary-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
	.hero-section {
	  background-size: 100% 90%;
	  /* T o o p l a t e . c o m   C u s t o m i z e d */
	}
}


@media screen and (min-width: 1600px) {
  .site-footer {
    padding-top: 250px;
  }
}

@media screen and (max-width: 1240px) {
	.hero-section {
	  background-size: 116%;
	  /* T o o p l a t e . c o m   C u s t o m i z e d */
	}
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
  
  .hero-section {
	  background-size: 160% 66%; 
	  /* T o o p l a t e . c o m   C u s t o m i z e d */
	}

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar-nav {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
  }

  .navbar-nav .nav-link {
    padding: 5px 0;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .copyright-text {
    text-align: center;
  }

  .site-footer {
    margin-top: -200px;
    padding-top: 200px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 540px) {
	.hero-section {
  		background-size: 180% 65%;
		/* T o o p l a t e . c o m   C u s t o m i z e d */
	}

  .custom-block .custom-block-top {
    flex-direction: column;
  }

  .custom-block .custom-block-top small:last-child {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 414px) {
  .search-form {
    max-width: 200px;
  }

}

/* Clientes Satisfeitos */
.clientes-satisfeitos-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.cliente-logo {
  max-width: 80%;
  height: auto;
}

/* Casos de Sucesso */
.casos-sucesso-section {
  background-color: #e9ecef;
  padding: 50px 0;
}

.caso-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Planos e Preços */
.planos-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plano-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-10px);
}

.plano-image {
    height: 200px;
    overflow: hidden;
}

.plano-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plano-content {
    padding: 25px;
    text-align: center;
}

.plano-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.plano-preco {
    margin-bottom: 15px;
}

.plano-preco span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
}

.plano-preco small {
    color: #6c757d;
    margin-left: 5px;
    font-size: 0.9rem;
}

.plano-content p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-plano {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-plano:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .planos-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plano-content {
        padding: 20px;
    }
}
/* Fim d Planos e Preços */

/* Perguntas Frequentes (FAQ) */
.faq-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.faq-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/*Carossel/*

/* Seção Clientes Satisfeitos */
.clientes-satisfeitos-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.clientes-carousel .clientes-carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.clientes-carousel .clientes-carousel-item img {
  width: 180px; 
  height: auto;
  max-height: 90px;
  filter: brightness(90%) contrast(110%);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Efeito ao passar o mouse */
.clientes-carousel .clientes-carousel-item img:hover {
  filter: brightness(100%) contrast(120%);
  transform: scale(1.2);
}


.contato-section {
  background: #f1f1f1;
  padding: 50px 0;
}

/* Casos de sucesso */
.casos-sucesso-section {
  padding: 50px 0;
}

.caso-item {
  background: #ffffff;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.caso-imagem-container {
  width: 100%; 
  height: 200px; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.caso-imagem {
  max-width: 100%; 
  max-height: 100%; 
  object-fit: contain; 
}

.caso-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*-----------------------------------------------codigo do novo menu---------------------------------------------------*/

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-bar {
    background-color: #282564;
    height: 20px;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    overflow-y: scroll;
}

/* Desktop Nav */

.nav-container {
    background: #282564;
    height: 44px;
    z-index: 300;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}

.nav-container nav {
    width: 1000px;
    margin: 0 auto;
    padding: 0 8px;
    height: 100%;
}

.logo img {
    height: 20px;
}

.link-search img {
    height: 20px;
    vertical-align: middle;
}

nav .desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav .desktop-nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 400ms;
}

nav .desktop-nav li a:hover {
    opacity: 1;
}

.link-logo {
    background: url('images/apple-logo.svg');
    display: block;
    background-position: center;
    height: 44px;
    width: 15px;
    background-repeat: no-repeat;
}

.link-search {
    background: url('images/search-icon.svg');
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: 18px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.link-bag {
    background: url('images/bag-icon.svg');
    display: block;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

.link-close {
    background: url('images/close-icon.svg');
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: 17px;
    height: 44px;
    width: 20px;
    background-repeat: no-repeat;
}

/* Search Container */

.search-container.hide {
    opacity: 0;
    pointer-events: none;
}

.search-container {
    width: 60%;
    margin: 0 auto;
    padding: 0 42px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

/* Search Container Search Icon - Desktop */
.search-container .link-search {
    position: absolute;
    left: 12px;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Container Close Button - Desktop */
.search-container .link-close {
    position: absolute;
    top: 0;
    right: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 400ms;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container .link-close:hover {
    opacity: 0.7;
}

.search-container form {
    width: 100%;
    margin: 0 auto;
}

.search-container form input {
    width: 100%;
    height: 44px;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
}

/* Overlay */

.overlay.show {
    position: fixed;
    background: rgba(89, 83, 225, 0.3);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100;
}

/* Quick Links */

.search-container .quick-links {
    background: #5953e1;
    position: absolute;
    left: 0;
    right: 0;
    padding: 16px 8px;
    border-radius: 0 0 16px 16px;
}

.search-container .quick-links h2 {
    text-transform: uppercase;
    font-size: 12px;
    color: #f5f5f5;
    margin: 0 32px;
    margin-top: 10px;
}

.search-container .quick-links ul {
    list-style: none;
    margin-top: 12px;
}

.search-container .quick-links ul li a {
    display: inline-block;
    width: 100%;
    padding: 8px 50px;
    font-size: 14px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 400;
}

.search-container .quick-links ul li a:hover {
    background: #f5f5f5;
    color: #5953e1;
}

/* Desktop Nav Animation */

.desktop-nav li {
    transition: all 400ms ease;
}

.desktop-nav.hide li {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Overlay Animation */

.overlay {
    transition: all 400ms ease;
}

/* Navigation Menu Items Transition Delay */

.desktop-nav li:nth-of-type(1),
.desktop-nav.hide li:nth-of-type(10) {
    transition-delay: 0ms;
}

.desktop-nav li:nth-of-type(2),
.desktop-nav.hide li:nth-of-type(9) {
    transition-delay: 30ms;
}

.desktop-nav li:nth-of-type(3),
.desktop-nav.hide li:nth-of-type(8) {
    transition-delay: 60ms;
}

.desktop-nav li:nth-of-type(4),
.desktop-nav.hide li:nth-of-type(7) {
    transition-delay: 90ms;
}

.desktop-nav li:nth-of-type(5),
.desktop-nav.hide li:nth-of-type(6) {
    transition-delay: 120ms;
}

.desktop-nav li:nth-of-type(6),
.desktop-nav.hide li:nth-of-type(5) {
    transition-delay: 150ms;
}

.desktop-nav li:nth-of-type(7),
.desktop-nav.hide li:nth-of-type(4) {
    transition-delay: 180ms;
}

.desktop-nav li:nth-of-type(8),
.desktop-nav.hide li:nth-of-type(3) {
    transition-delay: 210ms;
}

.desktop-nav li:nth-of-type(9),
.desktop-nav.hide li:nth-of-type(2) {
    transition-delay: 240ms;
}

.desktop-nav li:nth-of-type(10),
.desktop-nav.hide li:nth-of-type(1) {
    transition-delay: 270ms;
}

/* Search Container Animation */

.search-container form,
.search-container .link-search {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 300ms;
}

.search-container.hide form,
.search-container.hide .link-search {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .link-search {
    opacity: 0.6;
}

.search-container.hide .link-close {
    opacity: 0;
}

.search-container .link-close {
    opacity: 0.5;
    transition: all 400ms ease;
    transition-delay: 400ms;
}

.search-container.hide .quick-links h2 {
    opacity: 0;
    transform: translateX(50px);
}

.search-container .quick-links h2 {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
    transition-delay: 100ms;
}

.search-container.hide .quick-links ul li {
    transform: translateX(60px);
    opacity: 0;
}

.search-container .quick-links ul li {
    opacity: 1;
    transform: translateX(0);
    transition: all 400ms ease;
}

.search-container .quick-links ul li:nth-of-type(1) {
    transition-delay: 120ms;
} 

.search-container .quick-links ul li:nth-of-type(2) {
    transition-delay: 140ms;
} 

.search-container .quick-links ul li:nth-of-type(3) {
    transition-delay: 160ms;
} 

.search-container .quick-links ul li:nth-of-type(4) {
    transition-delay: 180ms;
} 

.search-container .quick-links ul li:nth-of-type(5) {
    transition-delay: 200ms;
} 

/* Hidden Items */

.mobile-nav,
.mobile-search-container {
    display: none;
}

/* Media Queries */

@media (max-width: 1100px) {
    .nav-container nav {
        width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .nav-container .desktop-nav {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0vh;
        background: #282564;
        justify-content: start;
        overflow: hidden;
        z-index: -1;
        transition: all 1000ms ease;
    }

    .nav-container.active .desktop-nav {
        height: 100vh;
    }

    .nav-container .desktop-nav li {
        width: 100%;
        padding: 0 32px;
    }

    .nav-container .desktop-nav li:first-child {
        margin-top: 120px;
    }

    .nav-container .desktop-nav .link-logo,
    .nav-container .desktop-nav .link-search,
    .nav-container .desktop-nav .link-bag {
        display: none;
    }

    .nav-container .desktop-nav li a {
        padding: 16px 0;
        display: inline-block;
        border-bottom: 1px solid #616161;
        width: 100%;
        font-size: 17px;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 700ms ease;
    }

    .nav-container.active .desktop-nav li a {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Nav - CORREÇÕES PRINCIPAIS AQUI */

    nav .mobile-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center; /* Garante alinhamento vertical central */
        list-style: none;
        height: 44px; /* Define altura fixa igual ao container */
    }

    /* Logo mobile - centralização vertical */
    nav .mobile-nav li:nth-child(2) {
        display: flex;
        align-items: center;
        height: 44px;
    }

    nav .mobile-nav .logo {
        display: flex;
        align-items: center;
        height: 44px;
    }

    nav .mobile-nav .logo img {
        height: 20px; /* Mantém altura consistente */
    }

    /* Menu icon container - centralização vertical */
    nav .menu-icon-container {
        width: 20px;
        height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    nav .menu-icon {
        position: relative;
        width: 100%;
    }

    nav .menu-icon .line-1,
    nav .menu-icon .line-2 {
        position: absolute;
        height: 1px;
        width: 100%;
        background: #fff;
        transition-property: transform, top;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    nav .menu-icon .line-1 {
        top: -4px;
    }

    nav .menu-icon .line-2 {
        top: 4px;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-1 {
        top: 0;
        transform: rotateZ(45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    .nav-container.active nav .menu-icon-container .menu-icon .line-2 {
        top: 0;
        transform: rotateZ(-45deg);
        transition-property: top, transform;
        transition-delay: 0ms, 160ms;
        transition-duration: 200ms;
    }

    /* Bag Icon Animation */

    .nav-container.active .mobile-nav .link-bag {
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
    }

    .nav-container .mobile-nav .link-bag {
        transition: all 1000ms ease;
        display: flex;
        align-items: center;
        height: 44px;
    }

    /* Search Box */

    .mobile-search-container input {
        width: 100%;
        padding: 12px 36px;
        font-family: "Inter", sans-serif;
        font-size: 17px;
        background: #5953e1;
        border: 0;
        color: #fff;
        border-radius: 8px;
        outline: none;
    }

    .mobile-search-container {
        position: relative;
        padding: 0 16px;
        margin-top: -30px;
        border-bottom: 1px solid #f5f5f5;
        display: flex;
        padding-bottom: 16px;
        align-items: center;
        transform: rotateX(90deg);
        opacity: 0;
        transition: all 600ms ease;
    }

    .nav-container.active .mobile-search-container {
        transform: rotateX(0deg);
        margin-top: 10px;
        opacity: 1;
    }

    .mobile-search-container .link-search {
        position: absolute;
        left: 24px;
        opacity: .5;
        background-size: 15px;
        height: 44px; /* Altura consistente */
        display: flex;
        align-items: center;
    }

    /* Nav Move Up */

    .nav-container nav.move-up {
        margin-top: -40px;
    }

    /* Cancel Button */

    .mobile-search-container .cancel-btn {
        color: #5953e1;
        font-size: 17px;
        font-weight: 400;
        cursor: pointer;
        width: 0px;
        overflow: hidden;
        transition: all 400ms ease;
        display: flex;
        align-items: center;
        height: 44px;
    }

    .mobile-search-container .search-bar.active + .cancel-btn {
        padding: 0 16px;
        width: 74px;
    }

    .mobile-search-container .search-bar {
        flex: 1;
    }

    /* Desktop Nav Move Down */

    nav .desktop-nav.move-down li:first-child {
        margin-top: 150px;
    }

    nav .desktop-nav.move-down li {
        opacity: 0;
        pointer-events: none;
    }

    /* Quick Links */

    .mobile-search-container .search-bar.active ~ .quick-links {
        top: 80px;
        opacity: 1;
        pointer-events: auto;
        transition-delay: 40ms;
    }

    .mobile-search-container .quick-links {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 32px;
        opacity: 0;
        pointer-events: none;
        top: 10px;
        transition: all 400ms ease;
    }

    .mobile-search-container .quick-links ul {
        list-style: none;
    }

    .mobile-search-container .quick-links h2 {
        color: #f5f5f5;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .mobile-search-container .quick-links ul li a {
        padding: 16px 0;
        display: inline-block;
        text-decoration: none;
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
    }

    .mobile-search-container .quick-links ul li a:hover {
        color: #5953e1;
    }

    /* Nav Animation */

    .nav-container nav {
        transition: all 400ms ease;
    }
}

input,
div,
span,
a {
    -webkit-tap-highlight-color: rgba(89, 83, 225, 0.3);
}

/*RODAPE ANDROID*/

/* Rodapé estilo Android */
.android-footer {
  background: linear-gradient(#5953e1, #282564);
  color: #fff;
  padding: 40px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.android-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}
.android-footer-col {
  flex: 1 1 200px;
  min-width: 150px;
  margin-bottom: 30px;
}
.android-footer-logo {
  height: 40px;
  margin-bottom: 20px;
}
.android-footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
.android-footer-desc {
  color: #bdbdbd;
  font-size: 15px;
}
.android-footer-social {
  margin-top: 20px;
}
.android-footer-social-link {
  color: #bdbdbd;
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s;
}
.android-footer-social-link:focus,
.android-footer-social-link:hover {
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.android-footer-download {
  margin-top: 25px;
}
.android-footer-download-link {
  display: inline-flex;
  align-items: center;
  background: #5953e1;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.android-footer-download-link i {
  margin-right: 8px;
  font-size: 18px;
}
.android-footer-download-link:focus,
.android-footer-download-link:hover {
  background: #5953e1;
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.android-footer-col h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}
.android-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.android-footer-col ul li {
  margin-bottom: 8px;
}
.android-footer-col ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.android-footer-col ul li a:focus,
.android-footer-col ul li a:hover {
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.android-footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding: 20px 0 10px 0;
  text-align: center;
  color: #bdbdbd;
  font-size: 14px;
}
@media (max-width: 800px) {
  .android-footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .android-footer-col {
    min-width: 100%;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .android-footer-social,
  .android-footer-download {
    justify-content: center;
    display: flex;
    width: 100%;
  }
  .android-footer-download-link {
    width: auto;
    justify-content: center;
    font-size: 17px;
    padding: 12px 24px;
  }
  .android-footer-col ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}
@media (max-width: 500px) {
  .android-footer {
    padding: 25px 0 0 0;
  }
  .android-footer-bottom {
    font-size: 12px;
    padding: 15px 0 8px 0;
  }
  .android-footer-logo {
    height: 32px;
  }
}

