/* Typogragrafy */
.hero-title {
    font-size: 60px;
    font-weight: 700;
}

.arrows {
    color: var(--text-alternative);
}

/* Elements */
.space-session {
    padding-top: 100px;
    padding-bottom: 100px;
}

.space-top {
    padding-top: 50px;
}

.space-bottom {
    padding-bottom: 50px;
}

.space-left {
    padding-left: 50px;
}

.space-right {
    padding-right: 50px;
}

.space-top-l {
    padding-top: 10px;
}

.space-bottom-l {
    padding-bottom: 10px;
}

.space-left-l {
    padding-left: 10px;
}

.space-right-l {
    padding-right: 10px;
}

/* Toogle */
.navbar-toggler {
    border: none;
    color: black;

}

/* Hero */
.hero {
    padding: 60px 0;
    background: #cce5f9;  /* fallback for old browsers */
background: -webkit-linear-gra8be4f4dient(to right, #cce5f9, #eadcef);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #cce5f9, #eadcef); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}


.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #046362;
}

.typed-text {
    font-size: 1.2rem;
    font-weight: 500;
    height: 50px;
    overflow: hidden;
    text-align: center;
}
.bg-default{background: #0097b2;}
.bg-second{
    background-color: #046362;
}

/* *********************texto *********************** */
/* Remover cantos arredondados dos botões */
.btn {
    border-radius: 0 !important;
}

.btn i {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.btn:hover i {
    margin-left: 12px;
}

.btn-grad {background-image: linear-gradient(to right, #046362 0%, #0097b2  51%, #046362  100%)}
.btn-grad {
   text-align: center;
   transition: 0.5s;
   color: white;            
   box-shadow: 0 0 20px #0097b2;
   display: block;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }

/* Remover cantos arredondados dos campos de entrada */
.form-control {
    border-radius: 0 !important;
}

/* ************************ Area de Conversao ********************* */
/* Servicos */
.services {
    padding: 40px 20px;
}

.services .service-item {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    color: #046362;
}

/* Footer */
footer a {
    text-decoration: none;
    margin-bottom: 5px;
    display: inline-block;
}

footer a:hover {
    color: #17a2b8;
}

/* END buttom */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 1 8px 20px rgba(1, 210, 247, 0.2);
}

.icon img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.icon img:hover {
    filter: none;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    height: 100%;
  }
  
  .featured-services .service-item .icon {
    margin-bottom: 10px;
  }
  
  .featured-services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: 0.3s;
  }
  
  .featured-services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
  }
  
  .featured-services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .featured-services .service-item:hover {
    transform: translateY(-10px);
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  }
  
  .featured-services .service-item:hover h4 a {
    color: var(--accent-color);
  }
