/* doFollow Landing Page v.1.1.0 Style Index

1. Default and Reset styles
- 1.1 Input Elements
2. Global elements
- 2.1 Header
- 2.2 Logo
- 2.3 Buttons
- 2.4 Navigation
- 2.5 Social Elements
- 2.6 Images
3. Fonts and Headings
4. Banner
- 4.1 SignUp Form
5. Content Elements
- 5.1 Icons
- 5.2 Parallax Elements
- 5.3 Divider
- 5.4 Slider
6. Landing Page Sections
- 6.1 Features
- 6.2 Video
- 6.3 Testimonials
- 6.4 Gallery
- 6.5 Video
- 6.6 Companies
- 6.7 Pricing Table
- 6.8 Newsletter
- 6.9 Team
7. Footer
- 7.1 Contact Information

/*------------------------------------------------------------------------------------------*/
/* 1. Defaults & Reset of specific styles across browsers */
/*------------------------------------------------------------------------------------------*/

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    direction: ltr;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p {
    line-height: 25px;
}

.row img {
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    line-height: inherit;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

iframe {
    border: 0 !important;
}

.parallax-window {
    min-height: 400px;
    background: transparent;
}

figure {

    margin: 0;
}

/* --------- 1.1 Input Elements ---------- */

input,
textarea {
    border: 1px solid #e1e1e1;
    padding: 10px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: 3px;
}

input {
    height: 40px;
    margin: 3px 0;
    outline: none;
    line-height: normal;
    font-size: 14px;
}

input[type="submit"] {
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    padding-top: 0;
    padding-bottom: 0;
}

select {
    border: 1px solid #e1e1e1;
    height: 40px;
    padding: 5px;
}

input:focus,
textarea:focus {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

*:focus {
    outline: none;
}


/*------------------------------------------------------------------------------------------*/
/* 2. Layout Elements */
/*------------------------------------------------------------------------------------------*/

section {
    clear: both;
    overflow: hidden;
}

/* Rows and Columns */

.row {
    max-width: 1245px;
    margin: 0 auto;
    padding: 75px 0;
    position: relative;
}
.cont {
    width: 100%;
   
    display: flex;
    flex-wrap: wrap; /* Permite que os itens se movam para a próxima linha se necessário */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    
}
.no-padding-bottom .row,
.no-padding-bottom div,
.no-padding-bottom.row {
    padding-bottom: 0;
}

.no-padding-top .row,
.no-padding-top div {
    padding-top: 0;
}

.big-padding-top {
    padding-top: 75px !important;
}

.big-padding-bottom {
    padding-bottom: 85px !important;
}

/* Targets all elements */

[class*='col-'] {
    float: left;
    padding: 20px;
}

/* Clearfix */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Main Widths */

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

.col-5 {
    width: 20%;
}

.col-6 {
    width: 16.6666666667%;
}

.col-7 {
    width: 14.2857142857%;
}

.col-8 {
    width: 12.5%;
}

.col-9 {
    width: 11.1111111111%;
}

.col-10 {
    width: 10%;
}

.col-11 {
    width: 9.09090909091%;
}

.col-12 {
    width: 8.33%;
}

.col-2-3 {
    width: 66.66%;
}

.col-3-4 {
    width: 75%;
}

.col-9-10 {
    width: 90%;
}

/* Golden Ratio */
.col-61 {
    width: 61.8%;
}

.col-38 {
    width: 38.2%;
}

/* --------- 2.1 Header --------- */

#header {
    height: 71px !important;
    overflow: visible;
    z-index: 9999;
    width: 100%;
    position: absolute !important;

}

#header .row {
    padding: 0;
}

#header aside {
    text-align: right;
}

#header ul {
    text-align: center;
}

#header li {
    display: inline-block;
    list-style: none;
    margin: 0;
}

/* --------- 2.2 Logo ---------- */

#logo {
    float: left;
    height: 71px;
    line-height: 66px;
    margin-right: 15px;
}

#logo h1,
#logo h2 {
    display: inline-block;
}

#banner #logo h1 {
    font-size: 30px;
    margin-right: 10px;
    font-weight: 900;
    padding: 0;
}

#logo h2 {
    font-size: 18px;
    padding: 0;
}

#logo img {
    max-height: 50px;
    vertical-align: middle;
    margin-right: 15px;
}

#navigation-logo {
    display: none;
}

.nav-solid #logo #banner-logo {
    display: none;
}

.nav-solid #logo #navigation-logo {
    display: inline-block;
}


/* --------- 2.3 Buttons ---------- */

.call-to-action {
    padding: 35px 0 35px 0;
}

/*Style*/

.button {
    font-size: 16px;
    margin: 5px 1px;
    padding: 11px 16px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
    display: inline-block;
    border-width: 2px;
    border-style: solid;
}

.button i {
    padding-right: 5px;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}

/*Shape*/

.rounded {
    border-radius: 5px;
}

.pill {
    border-radius: 25px;
}


/* --------- 2.4 Navigation ---------- */

#header aside {
    float: right;
}

#header nav ul {
    text-transform: uppercase;

}

#header nav a {
    height: 71px;
    line-height: 71px;
    display: block;
    padding: 0 10px;
}

#header nav a:hover {
    opacity: 0.6;
}

/*Navigation Solid*/

#header.nav-solid [class*='col-'] {
    padding: 0 20px;
}

#header.nav-solid {
    background: #fff;
    box-shadow: 2px 0px 3px rgba(0, 0, 0, 0.2);
    position: fixed !important;
}

#header.nav-solid nav a {
    border-bottom: 3px solid;
    border-color: #fff;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#header.nav-solid nav a:hover {
    opacity: 1;
}

/* Social Elements when Solid*/

#header.nav-solid .social-icons a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    opacity: 0.5;
}

#header.nav-solid .social-icons a:hover {
    opacity: 1;
    color: #409CCD;
}

/* Responsive Nav Styling */

#nav-trigger {
    display: none;
    text-align: right;
}

#nav-trigger span {
    display: inline-block;
    width: 38px;
    height: 71px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 22px;
    text-align: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#nav-trigger span:after {
    font-family: "fontAwesome";
    display: inline-block;
    width: 38px;
    height: 71px;
    line-height: 75px;
    text-align: center;
    content: "\f0c9";
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

#nav-trigger span.open:after {
    content: "\f00d";
}

#nav-trigger span:hover,
.nav-solid #nav-trigger span.open:hover,
.nav-solid #nav-trigger span:hover {
    opacity: 0.6;
}

#nav-trigger span.open,
#nav-trigger span.open:hover {
    color: #fff;
}

.nav-solid #nav-trigger span.open:hover {
    color: #999;
}

.nav-solid #nav-trigger span {
    color: #999;
    opacity: 1;
}

nav#nav-mobile {
    position: relative;
    display: none;
}

nav#nav-mobile ul {
    display: none;
    list-style-type: none;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.2);
}

nav#nav-mobile ul:after {
    display: none;
}

nav#nav-mobile li {
    margin: 0 20px;
    float: none;
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
}

nav#nav-mobile li:last-child {
    border-bottom: none;
}

.nav-solid nav#nav-mobile li {
    border-top: 1px solid #e1e1e1;
    border-bottom: none;
}

nav#nav-mobile a {
    display: block;
    padding: 12px 0;
    color: #333;
    width: 100%;
    height: auto;
    line-height: normal;
    display: block;
    border-bottom: none !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

nav#nav-mobile a:hover {
    background: #fafafa;
    opacity: 1;
}

/* --------- 2.5 Social Elements ---------- */

#header .col-4 {
    text-align: right;
}

.social-icons {
    display: inline-block;
    list-style: none;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    text-align: center;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons span {
    display: none;
}

#header .social-icons {
    margin-top: 27px;
}

/* --------- 2.6 Images ---------- */

/*Alignment*/

img {
    vertical-align: top;
}

.image-center {
    display: block;
    margin: 0 auto;
}

a img {
    border: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-backface-visibility: hidden;
}

a img:hover {
    opacity: 0.7;
}

/*------------------------------------------------------------------------------------------*/
/* 3. Fonts */
/*------------------------------------------------------------------------------------------*/

h1 {
    padding: 20px 0;
}

h2 {
    padding: 14px 0;
}

h3 {
    padding: 10px 0;
}

h4 {
    padding: 7px 0;
}

h5 {
    padding: 7px 0;
}

h6 {
    padding: 7px 0;
}

/* Text Alignment */

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

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

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

/* Section Headings */

.section-heading {
    padding: 25px 0;
}

.section-subtitle {
    font-size: 18px;
    padding-top: 0;
    padding-bottom: 25px;
}

.contact-subtitle {
    font-size: 14px;
    padding-top: 0;
    color: white;
   
}

/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/

#banner,
#dofollow-contact {
    background-size: cover;
}

#banner-content.row {
    padding-top: 170px;
    padding-bottom: 100px;
}

#banner h1 {
    padding-top: 5%;
}

/* --------- 4.1 SignUp Form ---------- */

.signup {
    background: rgba(0, 0, 0, 0.4);
    padding: 35px 45px;
    border-radius: 5px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.signup input {
    width: 100%;
    display: block;
    height: auto;
    padding: 15px;
    margin-bottom: 9px;
}

.signup .hint {
    font-size: 12px;
    color: #fff;
    line-height: 12px;
    opacity: 0.8;
}

.signup h3 {
    color: #fff;
    padding-bottom: 25px;
}

/*------------------------------------------------------------------------------------------*/
/* 5. Content Elements */
/*------------------------------------------------------------------------------------------*/

/* --------- 5.1 Icons ---------- */

/*Font Icon sizes*/

.fa-1x {
    font-size: 19px !important;
}

.fa-2x {
    font-size: 32px !important;
}

.fa-3x {
    font-size: 48px !important;
}

.fa-4x {
    font-size: 64px !important;
}

.fa-5x {
    font-size: 128px !important;
}

/*Icon Block*/

.icon-block {
    position: relative;
}

.icon-block h4 {
    padding-top: 0;
}

.icon-block .icon {
    position: absolute;
}

.icon-block p {
    margin-top: 0;
}

/* Icon Left*/

.icon-left .icon {
    left: 15;
}

.icon-left .icon-block-description {
    padding-left: 53px;
}

/* Icon Right */

.icon-right .icon {
    right: 15;
}

.icon-right .icon-block-description {
    padding-right: 53px;
}

/* Icon Above */

.icon-top {
    display: block;
}

.icon-top .icon {
    position: relative;
    display: block;
}

.icon-top .icon-block-description {
    padding-top: 25px;
}

/* --------- 5.2 Parallax Elements ---------- */

.banner-parallax-1,
.banner-parallax-2,
.banner-parallax-3 {
    min-height: 400px;
}

/* --------- 5.3 Divider ---------- */

.divider {
    position: relative;
    width: 40%;
    height: 20px;
    line-height: 20px;
    margin: 10px auto 5px auto;
    clear: both;
    text-align: center;
}

.divider-inner {
    position: absolute;
    height: 1px;
    width: 100%;
    top: 50%;
    margin-top: -1px;
    border-top: 1px solid;
    border-color: #e1e1e1;
}

.divider i {
    background: #fff;
    position: relative;
    top: -11px;
    padding: 0 5px 0 5px;
    color: #e1e1e1;
}

/* --------- 5.4 Slider ---------- */

/*
     * jQuery FlexSlider v2.5.0
     * http://www.woothemes.com/flexslider/
     *
     * Copyright 2012 WooThemes
     * Free to use under the GPLv2 and later license.
     * http://www.gnu.org/licenses/gpl-2.0.html
     *
     * Contributing author: Tyler Smith (@mbmufffin)
     * 
     */

/* ====================================================================================================================
     * RESETS
     * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
    outline: none;
}

.slides,
.slides>li,
.flex-control-nav,
.flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ====================================================================================================================
     * BASE STYLES
     * ====================================================================================================================*/
.flexslider {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden;
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

html[xmlns] .flexslider .slides {
    display: block;
}

* html .flexslider .slides {
    height: 1%;
}

.no-js .flexslider .slides>li:first-child {
    display: block;
}

/* ====================================================================================================================
     * DEFAULT THEME
     * ====================================================================================================================*/
.flexslider {
    position: relative;
    zoom: 1;
}

.flexslider .slides {
    zoom: 1;
}

.flexslider .slides img {
    height: auto;
}

.carousel li {
    margin-right: 5px;
}

.flex-direction-nav {
    *height: 0;
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flex-direction-nav a:before {
    font-family: "fontawesome";
    font-size: 40px;
    display: inline-block;
    content: '\f104';
    color: rgba(0, 0, 0, 0.6);
}

.flex-direction-nav a.flex-next:before {
    content: '\f105';
}

.flex-direction-nav .flex-prev {
    left: -50px;
}

.flex-direction-nav .flex-next {
    right: -50px;
    text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: 0.7;
    left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: 0.7;
    right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1;
}

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
}

.flex-pauseplay a:hover {
    opacity: 1;
}

.flex-pauseplay a.flex-play:before {
    content: '\f003';
}

.flex-control-nav {
    width: 100%;
    margin-top: 25px;
    text-align: center;
}

.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.flex-control-paging li a:hover {
    background: rgba(0, 0, 0, 0.2);
}

.flex-control-paging li a.flex-active {
    background: rgba(0, 0, 0, 0.5);
    cursor: default;
}

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
}

.flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .7;
    cursor: pointer;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.flex-control-thumbs img:hover {
    opacity: 1;
}

.flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default;
}

/* ====================================================================================================================
     * RESPONSIVE
     * ====================================================================================================================*/
@media screen and (max-width: 860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px;
    }

    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px;
    }
}



/*------------------------------------------------------------------------------------------*/
/* 6. Landing Page Sections */
/*------------------------------------------------------------------------------------------*/

/* --------- 6.1 Introduction ---------- */

.introduction .section-subtitle {
    padding-left: 13%;
    padding-right: 13%;
}

.introduction img.featured {
    padding: 55px 0 0 0;
}

/* --------- 6.2 Features ---------- */

.features.row {
    padding-left: 5%;
    padding-right: 5%;
}

.features div:nth-child(4) {
    clear: both;
}

/* --------- 6.3 Testimonials ---------- */

.testimonial {
    padding: 15px;
}

blockquote {
    position: relative;
}

.testimonial img {
    max-height: 120px;
    border-radius: 250em;
}

.testimonial footer {
    padding-top: 12px;
    opacity: 0.7;
}

/* Style Classic - Avatar above Testimonial */

.testimonial.classic img {
    display: inline-block;
    margin-bottom: 25px;
}

.testimonial.classic q {
    display: block;
}

/* Style Elegant - Avatar next to Testimonial */

.testimonial.elegant {
    text-align: left;
    position: relative;
}

.testimonial.elegant img {
    max-height: 85px;
    position: absolute;
    left: 0px;
}

.testimonial.elegant q {
    position: relative;
    display: block;
    padding-left: 110px;

}

.testimonial.elegant footer {
    position: relative;
    left: 110px;
}

/* --------- 6.4 Gallery ---------- */

#gallery img {
    max-height: 500px;
    margin: 7px;
}

#gallery a {
    display: inline-block;
    position: relative;
}

#gallery a:hover img {
    opacity: 0.15;
    -moz-backface-visibility: hidden;
}

#gallery a:before {
    font-family: "fontawesome";
    font-size: 2.2em;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    content: "\f196";
    width: 70px;
    height: 70px;
    border-radius: 100em;
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    line-height: 72px;
    margin: -35px 0 0 -35px;
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    vertical-align: middle;
}

#gallery a:hover:before {
    opacity: 1;
    top: 50%;
    left: 50%;
}


/* --------- 6.5 Video ---------- */

#dofollow-video .row {

    padding-bottom: 105px;
}

.video_container,
.easyContainer {
    position: relative;
    padding-bottom: 56.25%;
    /* 16/9 ratio */
    margin: 0;
    padding-top: 0;
    /* IE6 workaround*/
    height: 0;
    overflow: hidden;
}

.video_container iframe,
.video_container object,
.video_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.slvj-lightbox iframe,
.slvj-lightbox object,
.slvj-lightbox embed {
    width: 100% !important;
    height: 529px !important;
}

.videojs-background-wrap {
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -998;
}

#slvj-window {
    width: 100%;
    min-height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
}

#slvj-window,
#slvj-window * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#slvj-background-close {
    width: 100%;
    min-height: 100%;
    z-index: 31;
    position: fixed;
    top: 0;
    left: 0;
}

#slvj-back-lightbox {
    max-width: 940px;
    max-height: 529px;
    z-index: 32;
    text-align: center;
    margin: 0 auto;
}

.slvj-lightbox {
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 53;
}

#slvj-close-icon:before {
    font-family: "fontawesome";
    color: #fff;
    content: '\f00d';
    font-size: 22px;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 99999;
    height: 22px;
    width: 22px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

#slvj-close-icon:before:hover {
    opacity: 1;
    cursor: pointer;
}

/* Play Button */

.play-icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 25px 30px 0 30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.play-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.play-icon:before {
    font-family: 'fontawesome';
    content: '\f144';
    speak: none;
    font-size: 84px;
    line-height: 110px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.play-video .play-icon {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
    -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
    transition: transform ease-out 0.1s, background 0.2s;
}

.play-video .play-icon:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.play-video .play-icon:hover {
    background: rgba(255, 255, 255, 0.05);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    transform: scale(0.93);
    color: #fff;
}

.play-video .play-icon:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    -moz-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #fff, 0 0 0 10px rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --------- 6.6 Companies ---------- */

#companies .row {
    padding: 25px 0;
}

#companies img {
    padding: 5px 3%;
}

/* --------- 6.7 Pricing Table ---------- */

.pricing-block-content {
    background: #fff;
    padding: 25px 0 35px 0;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.07);
    transition: all 0.2s ease-in-out 0s;
    position: relative;
}

.pricing-block-content:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 19px rgba(0, 0, 0, 0.25);
}

.pricing-block ul {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-block li {
    padding: 11px 0;
    border-bottom: 1px solid #e1e1e1;
}

.pricing-block h3 {
    padding-bottom: 20px;
}

/*Price*/

.pricing {
    background: #f5f5f5;
    padding: 25px 0;
    position: relative;
}

.price {
    display: inline-block;
    font-size: 62px;
    font-weight: 300;
    position: relative;
}

.price-sub {
    font-style: italic;
    opacity: 0.7;
}

.price span {
    position: absolute;
    top: 0;
    left: -20px;
    font-size: 22px;
}

/* --------- 6.8 Newsletter ---------- */

#newsletter {
    margin: 35px 0 35px 0;
    padding: 25px 0;
    border-top: 1px solid #e1e1e1;
}

#newsletter h3 {
    font-size: 25px;
    padding-top: 0;
    padding-bottom: 0;
}

#newsletter h4 {
    font-size: 16px;
    font-weight: 300;
    color: #999;
}

#newsletter form {
    margin: 15px 0 0 0;
}

/* --------- 6.9 Team ---------- */

.team-member h4 {
    padding-top: 30px;
}

.job {
    font-weight: 300;
    display: block;
    font-size: 15px;
    color: #999;
}

/* Team Image and Social Profiles */

.team-member {
    text-align: center;
    cursor: pointer;
    /* Faz com que o cursor mude para a mãozinha ao passar o mouse */
    transition: transform 0.3s ease;
    /* Transição suave para o efeito de escala */
    margin: 0;
}

.team-member:hover {
    transform: scale(1.05);
    /* Aumenta ligeiramente o tamanho ao passar o mouse */
}

.team-image {
    width: 90%;
    /* Defina a largura desejada */
    height: 200px;
    /* Defina a altura desejada */
    overflow: hidden;
    /* Esconde partes da imagem que extrapolam o contêiner */

    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image img,
.team-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajusta a imagem para preencher o contêiner mantendo a proporção */

}

.team-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
    /* Remove margens padrão do figure */
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image figure a {
    display: flex;
    width: 100%;
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajusta a imagem para preencher o contêiner mantendo a proporção */
}

.team-member:hover .social-icons {
    box-shadow: inset 0px 0px 0px 148px rgba(0, 0, 0, 0.60);
}


.team-image .social-icons {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 0;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    opacity: 0;
    text-align: center;
}

.team-member .social-icons li {
    position: relative;
    top: 50%;
    display: inline-block;
    margin-top: -35px !important;
}

.team-member .social-icons a {
    color: #fff;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    line-height: 42px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.team-member i {
    color: #fff;
}

.team-member .social-icons a:hover {
    background: #fff;
    opacity: 1;
}

.team-member:hover .social-icons {
    opacity: 1;
}

/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer {
    clear: both;
}

#landing-footer .row {
    padding: 0;
}

#landing-footer p {
    margin: 0;
}

#landing-footer ul {
    list-style: none;
    text-align: right;
}

#landing-footer li {
    display: inline-block;
}


/* --------- 7.1 Contact Information ---------- */

#contact-information {
    background: #161616;
}



/* Scroll Up */

#scrollUp {
    bottom: 0;
    right: 10px;
    width: 70px;
    height: 80px;
    margin-bottom: -10px;
    padding: 0 5px 20px 5px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: margin-bottom 150ms linear;
    -moz-transition: margin-bottom 150ms linear;
    -o-transition: margin-bottom 150ms linear;
    transition: margin-bottom 150ms linear;
}

#scrollUp:hover {
    margin-bottom: 0;
}

#scrollUp:before {
    background: rgba(0, 0, 0, 0.2);
    font-family: "fontawesome";
    font-size: 2.6em;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: #fff;
    width: 56px;
    height: 56px;
    display: inline-block;
    line-height: 56px;
    content: "\f106";
    opacity: 1;
    border-radius: 5px;
}

/*Preloader*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 99999;
    /* makes sure it stays on top */
}

#status {
    width: 110px;
    height: 110px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-position: center;
    margin: -55px 0 0 -55px;
    /* is width and height divided by two */
    text-align: center;
}

/*!
     * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
     * Copyright 2015 Daniel Cardoso <@DanielCardoso>
     * Licensed under MIT
     */

.la-ball-scale-pulse,
.la-ball-scale-pulse>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-scale-pulse {
    display: block;
    font-size: 0;
}

.la-ball-scale-pulse.la-dark {
    color: #333;
}

.la-ball-scale-pulse>div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-scale-pulse {
    width: 32px;
    height: 32px;
}

.la-ball-scale-pulse>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    opacity: .5;
    -webkit-animation: ball-scale-pulse 2s infinite ease-in-out;
    -moz-animation: ball-scale-pulse 2s infinite ease-in-out;
    -o-animation: ball-scale-pulse 2s infinite ease-in-out;
    animation: ball-scale-pulse 2s infinite ease-in-out;
}

.la-ball-scale-pulse>div:last-child {
    -webkit-animation-delay: -1.0s;
    -moz-animation-delay: -1.0s;
    -o-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.la-ball-scale-pulse.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-scale-pulse.la-sm>div {
    width: 16px;
    height: 16px;
}

.la-ball-scale-pulse.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-scale-pulse.la-2x>div {
    width: 64px;
    height: 64px;
}

.la-ball-scale-pulse.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-scale-pulse.la-3x>div {
    width: 96px;
    height: 96px;
}

/*
     * Animation
     */
@-webkit-keyframes ball-scale-pulse {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes ball-scale-pulse {

    0%,
    100% {
        -moz-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes ball-scale-pulse {

    0%,
    100% {
        -o-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ball-scale-pulse {

    0%,
    100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}



/*------------------------------------------------------------------------------------------*/
/* Responsive Elements */
/*------------------------------------------------------------------------------------------*/

/* =Media Queries for Nav
    ===============================*/
@media all and (max-width: 1024px) {
    #nav-trigger {
        display: block;
    }

    nav#nav-main {
        display: none;
    }

    nav#nav-mobile {
        display: block;
    }

    nav#nav-mobile li {
        display: block;
    }

    #header aside {
        display: none;
    }
}



/* Landscape mobile & down
    ===============================*/

@media (max-width: 480px) {
    #nav-trigger {
        display: block;
    }

    nav#nav-main {
        display: none;
    }

    nav#nav-mobile {
        display: block;
    }

    nav#nav-mobile li {
        display: block;
    }

    #header aside {
        display: none;
    }
    .row {
        padding: 15px !important;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-2-3,
    .col-3-4,
    .col-9-10,
    .col-61,
    .col-38,
    .row {
        width: 100%;
    }

    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-2-3,
    .col-3-4,
    .col-9-10,
    .col-61,
    .col-38 {
        padding-right: 0;
        padding-left: 0;
    }

    /*-----------------Header Elements-----------------*/

    #header .row {
        padding: 0 15px !important;
    }

    #header.nav-solid [class*="col-"] {
        padding: 0;
    }

    /*Logo*/

    #logo h2 {
        padding: 0;
    }

    /* Social */

    #header aside {
        clear: both;
        padding: 0;
    }

    #header ul.social-icons {
        margin-top: 0;
    }

    #banner-content.row {
        padding-top: 85px !important;
    }

    /*-----------------Sections-----------------*/

    /*Team*/

    .team-member:hover .social-icons {
        box-shadow: inset 0px 0px 0px 248px rgba(0, 0, 0, 0.60);
    }

    /* Call to Action*/

    .call-to-action {
        padding-bottom: 25px;
    }

    /* Video */

    .slvj-lightbox iframe,
    .slvj-lightbox object,
    .slvj-lightbox embed {
        height: 270px !important;
    }


    /* Footer */

    #landing-footer #copyright {
        float: left;
        width: 50%;
    }

    #landing-footer .social-icons {
        float: right;
        width: 50%;
    }

    /*-----------------Typography-----------------*/

    h1 {
        font-size: 30px;
    }

    #banner h1 {
        font-size: 30px;
    }


    /* Hide Elements */

    a#scrollUp {
        display: none !important;
    }

}

/* Mobile to Tablet Portrait
    ===============================*/
@media (min-width: 480px) and (max-width: 767px) {

    .row {
        padding: 15px 0 !important;
    }

    .col-1,
    .col-2,
    .col-5,
    .col-7,
    .col-9,
    .col-11,
    .col-2-3,
    .col-3-4,
    .col-61,
    .col-38,
    .row {
        width: 100%;
    }

    .col-3,
    .col-4,
    .col-6,
    .col-8,
    .col-10,
    .col-12 {
        width: 50%;
    }

    /*-----------------Header Elements-----------------*/

    #header .row {
        padding: 0 !important;
    }

    #header aside {
        display: inline-block;
        position: absolute;
        top: 40px;
        right: 60px;
        border-right: 1px solid;
        border-color: rgba(0, 0, 0, 0.15);
        padding-right: 5px;
    }

    #header.nav-solid aside {
        top: 20px;
    }

    #header aside ul {
        margin-top: 0 !important;
        padding-top: 6px;
    }

    #banner-content.row {
        padding-top: 85px !important;
    }

    /*Navigation*/

    nav#nav-mobile ul {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /*-----------------Sections-----------------*/

    /*Team*/

    .team-member:hover .social-icons {
        box-shadow: inset 0px 0px 0px 248px rgba(0, 0, 0, 0.60);
    }

    /* Video */

    .slvj-lightbox iframe,
    .slvj-lightbox object,
    .slvj-lightbox embed {
        height: 370px !important;
    }

    /* Contact Information */

    #dofollow-contact {
        padding: 25px 0;
    }

    #dofollow-contact .col-2 {
        width: 100%;
    }

    #dofollow-contact .big-padding-top {
        padding-top: 10px !important;
    }

    /* Footer */

    #landing-footer #copyright {
        float: left;
        width: 50%;
    }

    #landing-footer .social-icons {
        float: right;
        width: 50%;
    }


}

/* Landscape Tablet to Desktop
    ===============================*/
@media (min-width: 768px) and (max-width: 1024px) {

    .big-padding-top {
        padding-top: 45px !important;
    }

    /*-----------------Header Elements-----------------*/

    #header aside {
        display: inline-block;
        position: absolute;
        top: 40px;
        right: 60px;
        border-right: 1px solid;
        border-color: rgba(0, 0, 0, 0.15);
        padding-right: 5px;
    }

    #header.nav-solid aside {
        top: 20px;
    }

    #header aside ul {
        margin-top: 0 !important;
        padding-top: 6px;
    }

    /*Navigation*/

    nav#nav-mobile ul {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    /*-----------------Sections-----------------*/

    /*Team*/

    #team .col-4 {
        width: 50%;
    }

    #team .team-member.col-4:hover .social-icons {
        box-shadow: inset 0px 0px 0px 300px rgba(0, 0, 0, 0.60);
    }

    /* Video */

    .slvj-lightbox iframe,
    .slvj-lightbox object,
    .slvj-lightbox embed {
        height: 432px !important;
    }

    /* Contact Information */

    #dofollow-contact .row {
        padding: 25px 0;
    }

    #dofollow-contact .big-padding-top {
        padding-top: 10px !important;
    }



}

/*videos*/

.slide-container {
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
}

.slide-content {
    margin: 60px 60px;
    overflow: hidden;

}

.card {
    cursor: pointer;
    /* Adicione o cursor de ponteiro para indicar que é clicável */
    background-color: #FFF;
}

.image-content,
.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* Proporção 16:9 */
    overflow: hidden;
}

.image-content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    border: 0;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;

    background: #FFF;
    padding: 3px;
}

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

    border: 4px solid #fff;
}

.name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

.swiper-navBtn {

    color: #fff;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover {
    color: #fff;
}

.swiper-navBtn::before,
.swiper-navBtn::after {

    font-size: 25px;
    color: #fff;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #fff;

}

@media screen and (max-width: 768px) {
    .slide-content {
        margin: 30px 40px;
    }

    .swiper-navBtn {
        display: none;
    }
}

/* Estilo do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
}

.modal-content iframe {
    width: 100%;
    height: 450px;
    /* Ajuste conforme necessário */
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}




/*galerria*/

::selection {
    color: #fff;
    background: #409CCD;
}

.wrapper {
    margin: 100px auto;
    max-width: 1100px;
}

.wrapper nav {
    display: flex;
    justify-content: center;
}

.wrapper .items {
    display: flex;

    width: 100%;
    justify-content: space-between;
}

.items span {
    padding: 7px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    color: #409CCD;
    border-radius: 50px;
    border: 2px solid #409CCD;
    transition: all 0.3s ease;
}

.items span.active,
.items span:hover {
    color: #fff;
    background: #409CCD;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.preview-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    max-width: 700px;
    width: 100%;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    padding: 0 5px 5px 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.3s ease;
}

.preview-box .details {
    padding: 13px 15px 13px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.details .title {
    display: flex;
    font-size: 18px;
    font-weight: 400;
}

.details .title p {
    font-weight: 500;
    margin-left: 5px;
}

.details .icon {
    color: #409CCD;
    font-style: 22px;
    cursor: pointer;
}

.preview-box .image-box {
    width: 100%;
    display: flex;
}

.image-box img {
    width: 100%;
    border-radius: 0 0 3px 3px;
}

.shadow {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    display: none;
    background: rgba(0, 0, 0, 0.4);
}

.shadow.show {
    display: block;
}

@media (max-width: 700px) {
    .wrapper nav .items {
        max-width: 600px;
    }

    nav .items span {
        padding: 7px 15px;
    }
}

@media (max-width: 600px) {
    .wrapper {
        margin: 30px auto;
    }

    .wrapper nav .items {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav .items span {
        margin: 5px;
    }


}

#map {
    height: 400px;
    width: 100%;
}

.dbox {
    width: 100%;
    margin-bottom: 5px;
    padding: 0 5px;
    
}

@media (min-width: 768px) {
    .dbox {
        margin-bottom: 0;
        padding: 0;
    }
}

.dbox p {
    margin-bottom: 0;
}

.dbox p span {
    font-weight: 500;
    color: #000;
}

.dbox p a {
    color: #3C4C5A;
}

.dbox .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3C4C5A;
    margin: 0 auto;
    margin-bottom: 15px;
}

.dbox .icon span {
    font-size: 14px;
    color: #fff;
}

.dbox .text {
    width: 100%;
}

.w-100 {
    width: 100% !important;
}

.mw-100 {
    max-width: 100% !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.vw-100 {
    width: 100vw !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}




.col-sm-66 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
}
@media (max-width: 480px) {
    .col-md-38 {
        position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
        flex: 0 0 100%;
    max-width: 100%;
    }

}

@media (min-width: 768px) {
    .col-md-44 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-100 {
        flex: 0 0 50%;
        max-width: 50%;
    }
   
}

@media (min-width: 992px) {
    .col-lg-33 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-100 {
        flex: 0 0 38%;
        max-width: 38%;
    }
    
   
    
}
@media (min-width: 1024px) {
   
    .col-lg-100 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    
   
    
}
@media (min-width: 1280px) {
    .col-lg-100 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}
.photo-gallery {
    color: #313437;
    background-color: #fff;
}

.photo-gallery p {
    color: #7d8285;
}

.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.photo-gallery .intro p {
    margin-bottom: 0;
}

.photo-gallery .photos {
    padding-bottom: 20px;
}

.photo-gallery .item {
    padding-bottom: 30px;
}

.photoss {
    padding-bottom: 20px;
}



/* Estilo do botão flutuante */
.floating-button {
    position: fixed;
    bottom: 20px; /* Distância do fundo da tela */
    right: 20px;  /* Distância da lateral direita da tela */
    background-color: #3C4C5A; /* Cor do fundo */
    color: #fff; /* Cor do ícone */
    border-radius: 50%; /* Bordas arredondadas */
    width: 60px; /* Largura do botão */
    height: 60px; /* Altura do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para efeito de profundidade */
    text-decoration: none; /* Remove o sublinhado do link */
    font-size: 32px; /* Tamanho do ícone */
    z-index: 1000; /* Garante que o botão fique acima de outros elementos */
    transition: background-color 0.3s ease; /* Transição suave para a cor de fundo */
}

/* Estilo do ícone dentro do botão */
.floating-button i {
    color: #fff; /* Garante que o ícone seja branco */
}

/* Efeito hover */
.floating-button:hover {
    background-color: #3C4C5A; /* Cor de fundo ao passar o mouse */
}
