/* HotelB2C Custom Styles */

/* ======================
   Variables & Base Styles
   ====================== */
   :root {
    --primary-color: #FF8017;
    --secondary-color: #003B45;
    --secondary-color-transparent: rgb(0 59 69 / 50%);
    --tertiary-color: #F6F2F2;
    --dark-color: #252525;
    --light-color: #f8f9fa;
    --warning-color: #ffc107;
    --font-family-primary: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

/* ======================
   Global Styles
   ====================== */
   body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: #333;
    font-size: 13px;
}

p, li {
    line-height: 1.3;
    font-size: 18px;
}

.more-link {
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700 !important;
    position: relative;
}
.more-link:before {
    content: '>';
    position: absolute;
    right: -17px;
    top: 2px;
    width: 13px;
    height: 13px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-align: center;
    line-height: 1.1;
    border-radius: 13px;
    font-size: 10px;
    padding: 0 0 0 3px;
}

.grayscale{
    filter:grayscale(1);
}

/* Estilo customizado para o tooltip */
.tooltip-inner {
  background-color: #003b4f !important; /* fundo azul escuro */
  color: #fff !important;               /* texto branco */
  padding: 0.75rem 1rem !important;     /* mais espaço interno */
  border-radius: 10px !important;       /* cantos arredondados */
  text-align: center !important;        /* centraliza o texto */
  font-weight: 500;                     /* texto levemente mais forte */
  font-size: 0.9rem;                    /* tamanho da fonte */
  max-width: 250px;                     /* limita a largura, opcional */
}

/* Personaliza a seta do tooltip */
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #003b4f !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #003b4f !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #003b4f !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #003b4f !important;
}


.fs-0 {
    font-size: 3.5rem !important;
}

.fs-05{
    font-size: 3rem!important
}

.fs-7 {
    font-size: .8rem !important;
}

div.fs-4 *{
    font-size: 1.5rem !important;
}

.img-fluid {
    width: 100%;
}

.accordion-button:not(.collapsed){
    background-color: var(--secondary-color) !important;
    color:#fff;
}

.bg-blur{
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
    height: 100%;
}

.bg-blur img{
    width: 100%;
    filter: blur(21px) opacity(0.3);
}

.z-index-0{z-index: 0}
.z-index-1{z-index: 1}

.accordion-button{
    padding-left: 30px;
}

.accordion-button::after{
    left: 14px;
    position: absolute;
    content: "+";
    background: none;
    width: auto;
}

.accordion-button[aria-expanded="true"]::after{
    content: "-";
}

/* ======================
   Carousel
   ====================== */

   .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #fff;
      opacity: 0.5;
  }

  .carousel-indicators .active {
      opacity: 1;
      background-color: #f7921e;
  }

  .flexslider.carousel-5 .slides{
    display: flex;
    align-items: center;
}

.flexslider.carousel-5 .slides li{
    text-align: center;
}

.flexslider.carousel-5 .slides li img{
    height: auto;
    width: 100px;
}

   /* ======================
   Typography
   ====================== */

   .c-text-primary{
    color: var(--primary-color)
}

.c-text-secondary{
    color: var(--secondary-color)
}

.c-text-tertiary{
    color: var(--tertiary-color)
}  

.c-bg-primary{
    background-color: var(--primary-color)
}

.c-bg-secondary{
    background-color: var(--secondary-color)
}

.c-bg-tertiary{
    background-color: var(--tertiary-color)
}

.display-4 {
    font-weight: 700;
    color: var(--primary-color);
}

.display-5 {
    font-size: 2rem;    
    color: var(--primary-color);
}

/* ======================
   Buttons
   ====================== */
   .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 30px;
    border-radius: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ======================
   Header & Navigation
   ====================== */
   .navbar {
    padding: .6rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    position: absolute;
    top: 16px;
    background: #fff;
    border-radius: 50%;
    padding: 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
    height: 86px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 400;
    margin: 0 10px;
    color: #333 !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
}

.navbar-nav .current-menu-item .nav-link,
.navbar-nav .nav-link:hover {
    font-weight: bold;
}

.navbar .collapse.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

/* ======================
   Hero Section
   ====================== */
   .hero-section {
    display: flex;
    align-items: center;
    position: relative;
}

#hero-slider{
    position: absolute;
    top:0;
    left:0;
    z-index: 0;
}

#hero-slider .flex-direction-nav, #hero-slider .flex-control-paging{
    display: none;
}

#hero-slider-sobre{
    position: absolute;
    top:0;
    left:0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1,
.hero-section h2 {
    font-size: 3.1rem;
    font-weight: 500;
    line-height: 1.2;
}

.hero-section h2 {
    font-size: 2.7rem;    
}

.hero-section strong {
    color: var(--primary-color);
}

.hero-section .text-warning {
    color: var(--warning-color) !important;
}

.page-hero-img img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
}

.page-hero-img .page-title {
    font-size: 1.3rem;
}

/* ======================
   Timeline
   ====================== */
   .timeline {
    border-top: 2px solid #ccc;
    margin: 100px 0 0 0;
    gap: 20px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #999;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: -16px;
}

.timeline-dot:hover {
    background-color: var(--primary-color);
}

.timeline-dot.dot-lg {
    width: 30px;
    height: 30px;
}

.timeline-dot .year-label {
    font-size: .9rem;
    margin-top: -53px;
    color: #999;
    font-weight: 700;
}

.timeline-dot.bg-orange .year-label {
    color: var(--primary-color);
}

/* ======================
   Cards
   ====================== */
   .card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ======================
   Backgrounds & Borders
   ====================== */
   .bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* ======================
   Forms
   ====================== */
   .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* ======================
   Page Sections
   ====================== */
/* Home */
#inicio {
    margin-top: 25px;
    height: 90vh;
}

/* About */
#sobre .lead {
    font-size: 1.5rem;
    font-weight: 400;
}

#sobre #porcentagens .card {
    background: none;
    box-shadow: none !important;
}

#sobre #porcentagens .card-title {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 3px;
}

#sobre #porcentagens .porcentagem {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color) !important;
    border-radius: 50%;
    border: 1px solid var(--secondary-color) !important;
    width: 175px;
    height: 175px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    position: relative;
}

#sobre #porcentagens .porcentagem:before {
    content: '';
    width: 90px;
    height: 90px;
    position: absolute;
    right: -2px;
    top: -2px;
    background: transparent;
    border-top: 3px solid var(--primary-color);
    border-left: none;
    border-right: 3px solid var(--primary-color);
    border-bottom: none;
    border-top-right-radius: 90px;
    transition: all .1s ease-in-out;
}

#sobre #porcentagens .porcentagem:hover {
    filter: opacity(.9);    
}

#sobre #porcentagens .porcentagem:hover:before {
    border-top: 7px solid var(--primary-color);    
    border-right: 7px solid var(--primary-color);
}

#sobre #video iframe{
    width: 100%;
    height: 70vh;
}

/* Blog  */
#blog{
}
#blog .title,
#blog #sidebar .widgettitle{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 100px;
}
.front-page #blog .title{    
    margin-top: 20px;
}
#blog .subtitle{
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 50px;
    display: block;
    font-size: 4em !important;
}
#blog .posts .date{
    font-size: 10px;
}
#blog .posts .title{
    font-size: 12px;
    font-weight: 900;
    text-transform: inherit;
    margin-top: 0;    
    overflow: hidden
}
#blog .posts .excerpt{
    color:  #DA9438;
    font-size: 22px;    
    font-weight: 300;
}
#blog .posts .image{
    text-align: center;
    position: relative;
    margin: 0;
}
#blog .posts .image img{

}
#blog .posts .text{
    padding: 10px;
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
}
#blog .posts .item {
    position: relative;
}

#blog .posts .text .desc{
    height: 100px;
    overflow: hidden
}

#blog .posts .item a{
    text-decoration:none
}
#blog .posts .item > div{
    background: #D9D9D9;
    display: flex;
    align-items: center;
}
#blog .posts .item:hover > div{
    background: #f5f5f5;    
}
#blog .posts .item .desc *{
    color:#333;
    font-size: 13px;
}
#blog .posts .item .categories{
    position: absolute;
    top: 29px;
    left: 45px;
    background: #DA9438;
    padding: 0 5px;
    border-radius: 5px;
    z-index: 9;
    display: table;
}
#blog .posts .item .categories a{
    color: #fff;
    font-size: 12px;
}
#blog #sidebar {
    margin-bottom: 50px;
}
#blog #sidebar .widget ul {
    color: #ccc;
    list-style-type: disclosure-closed;
}
#blog #sidebar .widget ul li a{
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 0;
    display: block;
    font-size: 14px;
    text-decoration: none;
}
#blog #sidebar .widget .tag-cloud-link {
    color: var(--secondary-color);    
}
#blog #sidebar .widgettitle {
    margin-top: 40px;
}

#blog #sidebar .search-form {
    display: flex;
}

#blog #sidebar input {
    height: calc(1.5em + 0.75rem + 13px);
    padding:0.375rem .75rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    border-right: 0;
}

#blog #sidebar .search-form .search-field {
    /* width: 67%; */
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    float: left;
}

#blog #sidebar .search-form .search-submit {
    width: 30%;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    height: calc(1.5em + 0.75rem + 19px);
    margin-top: -1px;
}

.blog .page-hero-img  {
    margin-top: 150px;
}

.no-front-page .page-hero-img,
.blog.blog-index .page-hero-img {
    margin-top: 58px;
}

.single-post .page-hero-img .page-title{
    width: 83.33333333%;    
}

.single-post #blog #sidebar{
    margin-top: 0 !important;
}

/* ROI */
#roi .container {
    max-width: 1240px;
}

#roi .btn.cta {
    position: relative;
}

#roi .btn.cta:after {
    content: '';
    position: absolute;
    right: -20px;
    width: 30px;
    height: 10px;
    background-color: var(--primary-color);
    top: 23px;
}

#roi .btn.cta:before {
    content: '';
    position: absolute;
    right: -80px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color) url('../../assets/images/arrow.png') center center no-repeat;
    top: -7px;
}

/*Resiltados*/
#resultados .more-link:before {    
    border: 1px solid rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .5);
    top:8px;
}


/* Solutions */
#solucoes .title {
    position: relative;
}

#solucoes .title:before, 
#solucoes .title:after {
    content: '';
    position: absolute;
    left: -45px;
    top: 9px;
    width: 23px;
    height: 23px;
    display: table;
    border: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

#solucoes .title:after {
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    left: -39px;
    top: 15px;
}

#solucoes .itens li {
    position: relative;
    font-weight: 600;    
    display: flex;
    line-height: 1.5;
    margin-bottom: 10px;
}

#solucoes .itens li:before {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    margin: 0 10px 0 -20px;
    color: var(--primary-color);
}

#accordionSolucoes .accordion-button{
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 300 !important;
}

#accordionSolucoes .accordion-button:after{    
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

/**/
.front-page .accordion-item{
    border: none;
}

.front-page .accordion-button{
    padding: 9px;
    padding-left: 0;
    padding-right: 0;
    color:#000 !important;
}

.front-page .accordion-button:not(.collapsed){
    background: none !important;
    color:#333 !important;
}

.front-page .accordion-button::after {
    left: -18px;
    background: none;
    color: var(--primary-color);
}

/* Planos */
#planos .title {
    position: relative;
    margin-left: 50px;
}

#planos .title:before, 
#planos .title:after {
    content: '';
    position: absolute;
    left: -45px;
    top: 9px;
    width: 23px;
    height: 23px;
    display: table;
    border: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

#planos .title:after {
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    left: -39px;
    top: 15px;
}

#planos .btn.btn-outline-primary {
    border-width: 2px !important;
    letter-spacing: 2px;
    font-size: 1em;
}

/* Blog */
.home #blog .title {
    position: relative;
    margin-left: 50px;
    font-size: 2.8em;
    text-transform: inherit;
    font-weight: 900;
}

.home #blog .title:before, 
.home #blog .title:after {
    content: '';
    position: absolute;
    left: -45px;
    top: 9px;
    width: 23px;
    height: 23px;
    display: table;
    border: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

.home #blog .title:after {
    width: 11px;
    height: 11px;
    background: var(--primary-color);
    left: -39px;
    top: 15px;
}

.home #blog .card:hover {
    box-shadow: none;
}

.home #blog .card .img-wrap {
    height: 170px;
    overflow: hidden;
}

.home #blog .card a {
    text-decoration: none;
    color: #000;
}

.home #blog .card a:hover {
    text-decoration: underline;
}

.home #blog .card .card-title a{
    letter-spacing: 3px;
    font-size: .7em;
}

.home #blog .card .more {
    display: block;
    text-decoration: none;
    font-size: 11px;
}

/* Contact */
#contato {
    position: relative;
    overflow: hidden;
}

#contato .title-image {
    position: relative;
}

/*#contato .title-image:before {
    content: '';
    width: 600px;
    height: 825px;
    background-color: #fff;
    position: absolute;
    left: -49%;
    top: -263%;
    z-index: 0;
    transform: rotate(63deg);
}*/

#contato .title-image img {    
    position: relative;
    z-index: 1;
}

#contato .card {
    border-radius: 0;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 40px;
}

#contato .card .card-title {
    color: var(--dark-color);
}

#contato .card form p{
    margin:0;
}

.wpcf7-form span.hidden,
#contato .card form label span.hidden{
    display: none;
}

#contato .mobile-mask{
    display: none;
}

.wpcf7-form label{
    width: 100%;
}

/* Pareto  */
#pareto .title *{
    font-size: 2.5rem;
}

#pareto .subtitle *{
    font-size: calc(1.275rem + .2vw)!important
}

/* Players */
#players .card-title {
    color: var(--secondary-color);
}

/* ======================
   Cases Page Specific
   ====================== */

   .page-template-cases .page-hero-img .page-title{
    display: none;
}

.cases-lista .img-container{position: relative;overflow: hidden}
.cases-lista .img-container:hover:before{
    content:'Abrir case';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-color-transparent);
    width: 100%;
    height: 100%;
    z-index: 999;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4em;
    font-weight: 300;
}

.cases-podcasts .subtitle *{
    font-size: 22px;
    color:var(--secondary-color);
    font-weight: 500;
}

.page-template-parceiros .page-hero-img > .container,
.single-case .page-hero-img > .container{
    display: none;
}


/* ======================
   Parceiros Page Specific
   ====================== */
   #parceiros .parceiros-itens .col-12:nth-child(odd) .d-flex{
    flex-direction: row-reverse;
}

#parceiros .parceiros-itens .logo{
    width: 100px;
    margin: 0 15px;
    height: auto;
}

#parceiros .parceiros-itens .logo.img-horizontal {
    height: 70px;
    width: auto;
}

#parceiros .parceiros-itens .logo.img-vertical {

}

#parceiros .parceiros-itens .logo.img-square {

}

#parceiros-form form.wpcf7-form p{
    margin:0;
}

#parceiros-form form.wpcf7-form label{
    width: 100%;
}

#parceiros-form form.wpcf7-form label span.hidden{
    display: none;
}

#parceiros-form form.wpcf7-form label .form-control{
    border-radius: 30px;
}

#parceiros-form form.wpcf7-form label .form-control::placeholder{
    font-weight: bold;
    color:#aaa;
    font-size: 14px;
}

#parceiros-form form.wpcf7-form .wpcf7-submit{
    width: auto;
    margin: 40px auto 0 auto !important;
    display: table;
}

.parceiros-itens .desc {color:rgba(255,255,255,.5)}
.parceiros-itens .more-link:before {    
    border: 1px solid rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .5);    
}

/* ======================
   About Page Specific
   ====================== */
   #sobre .hero-sobre {
    background: url('../img/sobre-hero.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

#sobre h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#sobre .sobre-intro h3 {
    color: #003b4f;
}

#sobre .sobre-intro ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
    font-size: 2em;
}

#sobre .sobre-intro ul li img {  
    position: absolute;
    left: -30px;
}

#sobre .equipe h3 {
    color: #003b4f;
    font-weight: 600;
}

#sobre .equipe img.rounded-circle {
    width: 320px;
    height: 320px;
    object-fit: cover;
    filter:grayscale(1);
}

#sobre .equipe .text {
    background-color: var(--tertiary-color);
    padding: 60px;
}

#sobre .hexagonos {
    margin-top: 2rem;
}

#sobre .indicadores {
    background: linear-gradient(90deg,rgba(9, 53, 61, 1) 0%, rgba(1, 59, 69, 1) 100%);
    padding: 60px 0;
}

#sobre .indicadores .title{
    color:#6B8185
}

#sobre .indicadores h3 {
    font-size: 2rem;
    color: #f0e101;
    margin-bottom: 0.5rem;
}

#sobre .indicadores p {
    font-size: 0.9rem;
    color: #ffffffcc;
}

#sobre .indicadores-2 {
    padding: 100px 0 70px 0;
}

#sobre .pilares {
    background-color: #2a3c3c;
    padding: 60px 0;
}

#sobre .pilares h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

#sobre .pilares .card {
    border: none;
    border-radius: 8px;
}

#sobre .pilares .card img {
    border-radius: 6px;
    max-width: 100%;
}

#sobre .pilares .carousel-control-prev {
    left:-30px;
}

#sobre .pilares .carousel-control-next {
    right:-30px;
}

#sobre .pilares .carousel-indicators {
    bottom: -80px;
}

#sobre .btn-outline-warning {
    border-color: #f0e101;
    color: #f0e101;
    margin-top: 1.5rem;
}

#sobre .btn-outline-warning:hover {
    background-color: #f0e101;
    color: #000;
}

/* HEX GRID CONFIGURADO EM "COMÉIA" COM EFEITO HOVER */

.hex-main {
    text-align: left !important;
    display:flex;
    --s: 230px;  /* size  */
    --m: 4px;    /* margin */
    --f: calc(1.732 * var(--s) + 4 * var(--m)  - 1px);
}

.hex-container {
  font-size: 0 !important; /*disable white space between inline block element */
}

.hex-container div {
  width: var(--s);
  margin: var(--m);
  height: calc(var(--s)*1.1547);
  display: inline-block;
  font-size:initial;
  clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
  background: red;
  margin-bottom: calc(var(--m) - var(--s)*0.2885);
  overflow: hidden;
  position: relative;
}

.hex-container div::after {
  content: attr(data-name) "\A" attr(data-role);
  white-space: pre-line;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  clip-path: inherit;
  pointer-events: none;
}

.hex-container div:hover::after {
  opacity: 1;
}

.hex-container div img{
  width: var(--s);
  /* height: calc(var(--s)*1.1547); */
}
.hex-container div:nth-child(odd) {
  background:green;
}
.hex-container::before {
  content: "";
  width: calc(var(--s)/2 + var(--m));
  float: left;
  height: 120%;
  shape-outside: repeating-linear-gradient(     
     #0000 0 calc(var(--f) - 3px),      
     #000  0 var(--f));
}

/* ======================
   Footer
   ====================== */
   .footer-main {
    background: #252525 /*url('../../assets/images/footer-bg.png') no-repeat center center !important*/;
    background-size: cover;
}

.footer-main a{
    color:#fff;
    text-decoration:none;
}

.footer-main .logo {
    filter: grayscale(1) brightness(255);
}

.footer-main .infos {
    list-style-type: none;
}

.footer-main .infos li {
    position: relative;
    margin-bottom: 16px;
}

.footer-main .infos li:before, 
.footer-main .infos li:after {
    content: '';
    position: absolute;
    left: -28px;
    top: 3px;
    width: 12px;
    height: 12px;
    display: table;
    border: 1px solid #A7A7A7;
    transform: rotate(45deg);
}

.footer-main .infos li:after {
    width: 6px;
    height: 6px;
    background: #A7A7A7;
    left: -25px;
    top: 6px;
}

.footer-main .flexslider {
    background: none;
    border: none;
}

.footer-main .flexslider .slides{
    display: flex;
    align-items: center;
}

.footer-main .flexslider .flex-direction-nav a,
.footer-main .flexslider:hover .flex-direction-nav a{
    background: none;
    width: 20px;
    height: 20px;
    left: -20px;
}

.footer-main .flexslider .flex-direction-nav a.flex-next,
.footer-main .flexslider:hover .flex-direction-nav a.flex-next {
    left: auto;
    right: -20px;
}

.footer-main .flexslider .flex-direction-nav a:before{
    color:#fff;
    text-shadow:none;
    font-size: 12px;
    width: 20px;
    height: 20px;
}

.footer-main .flexslider .slides li img {
    height: auto;
    width: 70px;
    padding: 10px 10px 10px 0;
}

.footer-main .navbar-nav .nav-link span {
    color:#fff;
}

.social-links a {
    font-size: .9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

.newsletter-container form{
    width: 100%;
    position: relative;
}
.newsletter-container form label{
    width: 100%;
}
.newsletter-container form label span{
    display: none;
}

.newsletter-container form label input{
    background: none;
    border:1px solid #fff;
    font-size: 16px;
    padding: 16px 10px;
    border-radius: 5px;
    width: 100%;
}

.newsletter-container form .btn{
    color: #fff;
    position: absolute;
    right: 0;
    top: 14px;
    z-index: 9;
    text-indent: 99999px;
    height: 30px;
    overflow: hidden;
    width: 50px;
}

.newsletter-container form .btn:before{
    content:"";
    display: block;
    background: url('../../assets/images/arrow-3.png') no-repeat center center;
    width: 27px;
    height: 19px;
}

/* ======================
   Animations
   ====================== */
   @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out;
}

.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ======================
   Hover Effects
   ====================== */
   .card-img-top {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* ======================
   Responsive Design
   ====================== */


   @media (max-width: 768px) {

    .flexslider:hover .flex-direction-nav .flex-prev,
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 0 !important;
    }

    .flexslider:hover .flex-direction-nav .flex-next,
    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 0 !important;
    }    

    .footer-main .flexslider .slides li img,
    .flexslider.carousel-5 .slides li img{
        margin: auto;
    }

    .navbar .collapse:not(.show){
        display: none;
    }

    .navbar .collapse.navbar-collapse {        
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .navbar .collapse.navbar-collapse.show{
        display: flex;        
    }

    .navbar .collapse.navbar-collapse.show .navbar-nav{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .navbar .collapse.navbar-collapse.show .navbar-nav li{
        width: 100%;        
    }

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

    .navbar .collapse.navbar-collapse .btn{
        margin-bottom: 30px;
    }

    .navbar-brand{
        position: static;
    }

    .navbar-brand img {
        height: 42px;
    }

    .collapsing {
        height: auto;
        overflow: initial;
        transition: none;
    }

    .accordion{
        padding: 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    #inicio {
        margin-top: 20px;
    }

    .page-hero-img, 
    .blog.blog-index .page-hero-img {
        margin-top: 70px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .timeline {    
        margin: 20px 0 0 0;
    }

    .historia,
    .timeline-section{
        padding-bottom: 0 !important;
    }

    #sobre h2 {
        font-size: 1.5rem;
    }

    #sobre .equipe .col-md-3 {
        margin-bottom: 2rem;
    }

    #sobre .equipe .text {
        padding: 30px 10px;
    }

    #sobre .indicadores h3 {
        font-size: 1.5rem;
    }

    #sobre .sobre-intro ul {
        margin: 0 !important;
        padding: 0 !important;
    }

    #sobre .sobre-intro ul li {    
        font-size: 1.2em;
        font-weight: 500;
        display: inline-flex;
        margin: 0;
        padding: 0;
        align-items: center;
    }

    #sobre .sobre-intro ul li img {
        position: static;
        width: 50px;
        height: auto;
        margin: 0 10px 0 0;
    }

    #sobre .indicadores-2 {
        padding: 70px 0;
    }

    #sobre .indicadores-2 ul{
        flex-direction: row;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    #sobre .indicadores-2 ul li{
        margin-bottom: 40px;
        width: 50%;
    }

    #sobre .indicadores-2 h3.title{    
        font-size: 16px !important;        
    }

    #sobre .sobre-imagem{    
        padding: 0;
    }

    #sobre .pilares .carousel-control-prev {
        left:0;
    }

    #sobre .pilares .carousel-control-next {
        right:0;
    }

    #parceiros h2{
        font-size: 2em !important;
    }

    #parceiros .parceiros-itens .col-12 > div > div {
        flex-direction: column !important;
        text-align: center;
    }

    #parceiros .parceiros-itens .logo {        
        margin: 0 15px 40px 15px;
    }

    #parceiros .parceiros-itens .more-link {        
        margin: auto;
    }

    .page-solucoes .c-bg-tertiary{
        padding: 30px 15px;
    }

    #blog .subtitle,
    .cases-podcasts .fs-0,
    .page-solucoes .fs-0{
        font-size: 2.4em !important;
    }

    #solucoes .itens{
        margin-left: 20px;
    }

    #solucoes .btn.float-end{
        float: none !important;
        width: 100%;
        margin: 10px 0 30px 0;
    }

    .cases-intro select{
        margin-bottom: 20px;
    }

    #roi{
        padding: 0 !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        height: 560px;
    }

    #roi .btn.cta{
        margin: auto;
        display: table;
        padding: 0 15px;
    }

    #roi .content.card{
        margin: 30px 0 !important;
    }

    #roi .btn.cta:before,
    #roi .btn.cta:after{
        display: none;
    }

    #planos{
        margin-top: 50px;
    }

    .front-page #blog {
        position: relative;
        top: -150px;
    }

    #blog .card{
        margin-bottom: 20px;
    }

    #blog .posts .item > div {        
        justify-content: center;
    }

    #blog .posts .title {
        height: auto;
    }

    #blog .posts .image {        
        margin: 10px 0 20px 0;
    }

    #contato .title-image{
        position: relative;
    }

    #contato .title-image:before{
        top: -289% !important;
        display: none;
    }

    #contato .col-lg-6{
        padding: 0 20px !important;
    }

    #contato .col-lg-6 .card-body {
        padding: 30px !important;
    }

    #contato .mobile-mask {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        filter: brightness(255);
        z-index: 9;
        height: 150px;
        overflow: hidden;
    }

    .footer-main{
        padding-bottom: 50px;
    }

    .social-links a {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 769px) and (max-width:1280px) {

    #contato .title-image:before {
        top: -273%;
    }

}

/* ======================
   Utility Classes
   ====================== */
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Badge Styles */
.badge {
    font-size: 0.875rem;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Custom Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
}