
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'poppins','Montserrat', Arial, Helvetica, sans-serif;
    font-size:16px;
    overflow-x:hidden;
    width: 100%;
    scroll-behavior: smooth;
}
header {
    color:#FFF;
    background-image: url(../images/MULTIMEDbg1.png);
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 68, 94, 0.3) 0%, rgba(31, 170, 79, 0.2) 100%);
    pointer-events: none;
}

.header {
    max-width:1140px;
    display:flex;
    height: 100px;
    margin: auto;
    justify-content: space-between;


    position: fixed;
    top: 0;
    left: 0; /* Garante que ele comece no canto superior esquerdo */
    right: 0; /* Garante que ele ocupe toda a largura da página */
    width: 100%;
    transition: all 0.4s ease;
    z-index: 9999999;
    padding: 0 10px; /* Adiciona padding para garantir que os elementos internos não fiquem colados às bordas */
}
.teste{
    width: 100%;
    height: 100px;
    position: fixed;
    transition: all 0.4s ease;
    z-index: 9999;
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto; /* Centraliza o conteúdo interno */
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centraliza verticalmente */
    height: 100%;
    padding: 10px 0;
}
.teste.scrolled {
    background: linear-gradient(135deg, #18445E 0%, #1a5070 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease-out;
}
.logo img{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.banner{
    max-width: 1140px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(80vh - 100px);
    flex-direction: column;
    padding-top: 200px;
    position: relative;
    z-index: 1;
}
.banner h3{
    text-align: center;
    font-weight: 400;
    font-size: 40px;
    animation: fadeInUp 1.2s ease-out;
}
.banner h1{
    font-size: 80px;
    animation: fadeInUp 1.4s ease-out;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

















@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

#btnbanner {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s forwards 0.5s;
}


#btnbanner {
    color: #FFF;
    margin-top: 300px;
    border-radius: 30px;
    width: 220px;
    min-height: 48px;
    height: auto;
    padding: 12px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(34, 195, 75, 0.9);
    border: 2px solid rgba(34, 195, 75, 0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    user-select: none; 
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(34, 195, 75, 0.25);
    white-space: nowrap;
}

#btnbanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

#btnbanner:hover::before {
    left: 100%;
}

#btnbanner:hover {
    background: rgba(31, 170, 79, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 195, 75, 0.35);
    border-color: rgba(31, 170, 79, 1);
}

#btnbanner:active {
    transform: translateY(0);
}

#btnbanner:focus {
    outline: none;
}

#btnbanner:visited {
    color: #FFF;
    text-decoration: none;
}
.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}




















.menu-opener {
    display: none;
    width: 30px;
    height: 30px;
    color: #FFF;
    transition: all 0.3s ease;
}

.menu-opener:hover {
    color: #22c34b;
    transform: scale(1.05);
}

.menu {
    display:flex;
    justify-content: flex-end;
    animation: fadeInRight 1s ease-out;
}
.menu ul,
.menu li {
    list-style:none;
}
.menu ul {
    display:flex;
}
.menu li a {
    color:#FFF;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    padding-left:30px;
    padding-right:30px;
    height:100px;
    display:flex;
    align-items:center;
    position: relative;
    transition: all 0.3s ease;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, #22c34b, #1faa4f);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu li a:hover::after,
.menu .active a::after {
    transform: scaleX(1);
}


.mobile-menu{
width: 100%;
display: none;
position: absolute;
margin: 0px;
}




.menu li a:hover,
.menu .active a {
    color:#22c34b;
}
.button {
    display:inline-block;
    background: linear-gradient(135deg, #B28756, #d4a574);
    color:#FFF;
    text-transform: uppercase;
    font-size:12px;
    font-weight:600;
    text-decoration: none;
    padding:10px 30px;
    margin-top:30px;
    border-radius:25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(178, 135, 86, 0.3);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(178, 135, 86, 0.5);
}

.button--dark {
    background: linear-gradient(135deg, #000, #333);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.button--dark:hover {
    background: linear-gradient(135deg, #B28756, #d4a574);
}
.default {
    padding-top:50px;
    padding-bottom:50px;
}
.default .section-title,
.default .section-desc {
    text-align:center;
    text-transform: uppercase;
    font-weight: 600;
}
.default .section-title {
    font-size: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    background: linear-gradient(135deg, #18445E, #22c34b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.default .section-desc {
    font-size: 15px;
    color:#a89b9b;
    margin-top:5px;
    margin-bottom:40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
.default .section-body {
    max-width:1280px;
    margin:auto;
    width: 100%;
    padding: 0 15px;
}
.default.light {
    background-color:#F7F7F7;
}
.default.light .section-title,
.default.light .section-body {
    color:#000;
}
.default.dark {
    background: linear-gradient(135deg, #18445E 0%, #1a4f6d 100%);
    position: relative;
}

.default.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    pointer-events: none;
}

.default.dark .section-title {
    -webkit-text-fill-color: #FFF;
    background: none;
}

.default.dark .section-body {
    color:#FFF;
    position: relative;
    z-index: 1;
}

















footer {
    background: linear-gradient(135deg, #18445E 0%, #0d2535 100%);
    padding:20px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 195, 75, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.footer--area {
    max-width:1140px;
    margin:auto;
    color: rgba(255, 255, 255, 0.4);
    display:flex;
    position: relative;
    z-index: 1;
}
.footer--item {
    flex:1;
    margin: 10px;
}
.footer-social {
    display:flex;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
    width: 70%;
}
.footer-social a {
    display:block;
    width:35px;
    height:35px;
    
    display:flex;
    justify-content: start;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-social a:hover img {
    filter: brightness(1.2);
}

.footer--item.area1 .s img{
    width: 180px;
    transition: transform 0.3s ease;
}

.footer--item.area1 .s img:hover {
    transform: scale(1.05);
}

.footer-social a img{
    width: 25px;
}


.footer--item.area2 {
    display: flex;
    flex-direction: column;
    
    
}

.endereco{
    margin-top: 15px;
    display: flex;
    transition: all 0.3s ease;
}

.endereco:hover {
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.8);
}

.endicon img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.footer--item.area3 form {
    
    text-align:center;
}
.footer--item.area3 input {
    width:100%;
    height:40px;
    border:0;
    border-radius: 3px;
    background:transparent;
    border-bottom:1px solid #CCC;
    outline:0;
    color:#FFF;
    font-size:14px;
    text-align:center;
    transition: all 0.3s ease;
}

.footer--item.area3 input:focus {
    border-bottom: 2px solid #22c34b;
}

.desc3{
    
    margin-bottom: 20px;
}

.titlefooter{
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.95);
}


.area3 form{
    margin-top: 30px;
}

#input{
    background-color: #FFF;
    color: #000;
}

#submit{
    margin-top: 20px;
    background: linear-gradient(135deg, #1faa4f, #22c34b);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 170, 79, 0.3);
    border: none;
}

#submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(31, 170, 79, 0.5);
}

/*
CSS DE ÁREAS ESPECÍFICAS
*/
.section-aboutus {
    display:flex;
    gap: 60px;
}


.section-aboutus--left {
    flex:1;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    animation: fadeInLeft 1s ease-out;
}
.section-aboutus--left p {
    font-size: 21px;
    font-weight: 300;
    line-height: 27px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-aboutus--left p:nth-child(1) {
    animation-delay: 0.2s;
}

.section-aboutus--left p:nth-child(2) {
    animation-delay: 0.4s;
}

.section-aboutus--left p:nth-child(3) {
    animation-delay: 0.6s;
}

.section-aboutus--right {
    width:600px;
    text-align:center;
    animation: fadeInRight 1s ease-out;
}
.section-aboutus--right img {
    width:560px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-aboutus--right img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}












.section-services {
    display:flex;
    max-width: 100%;
}

@keyframes scaleIn-service {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
    }
}

.section-service img{
    width: 100px;
    transition: transform 0.4s ease;
}

.section-service {
    flex:1;
    text-align:center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin: 10px;
    transition: all 0.5s ease;
    animation: scaleIn-service 0.8s ease-out;
    backdrop-filter: blur(10px);
}

.section-service:nth-child(1) {
    animation-delay: 0.1s;
}

.section-service:nth-child(2) {
    animation-delay: 0.3s;
}

.section-service:nth-child(3) {
    animation-delay: 0.5s;
}

.section-service:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(58, 139, 194, 0.15);
}

.section-service h4 {
    margin-top:20px;
    text-transform: uppercase;
    font-size:15px;
}
.section-service p {
    margin-top:10px;
    font-size:16px;
    color:#FFF;
}














.section-projects {
    display:flex;
    flex-direction: column;
    align-items: center;
}

.nav-item a {
    color: #000;
    text-decoration: none;
}

.section-projects--filters li:first-child {
    border-left:0;
}

.section-projects--photos {
    width:100%;
    max-width:1140px;
    margin-top:20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.section-projects--photo {
    width:280px;
}
.section-projects--photoarea {
    margin:10px;
    width:260px;
    height:160px;
}
.section-projects--photoarea img {
    width:inherit;
    height:inherit;
}
.section-projects--photoinfo {
    position:absolute;
    background-color:rgba(0, 0, 0, 0.5);
    width:inherit;
    height:inherit;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#FFF;
}
.section-projects--photoinfo h5 {
    font-size:18px;
    font-weight:600;
}
.section-projects--photoarea:hover .section-projects--photoinfo {
    display:flex;
}


























































.section-testimonials {
    position: relative;
    overflow: hidden;
}

.sliders {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
}

.section-testimonials .slidearea {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.section-testimonials--avatar {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.section-testimonials--avatar img {
    width: 100%;
    height: auto;
    display: block;
}

.section-testimonials--name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
}

.section-testimonials--role {
    font-size: 14px;
}

.section-testimonials--quoteimg {
    width: 20px;
    margin-top: 30px;
}

.section-testimonials--quote {
    margin-top: 10px;
    font-size: 13px;
    max-width: 700px;
    color: #555;
    text-align: center;
    line-height: 25px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
}

.section-testimonials .sliders-pointers {
    
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.section-testimonials .pointer {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #ccc; /* cor padrão do ponteiro */
    border-radius: 50%;
    margin: 25px;
    cursor: pointer;
    border: 1px solid #18445E;
}

.section-testimonials .pointer.active {
    background-color: #18445e; /* cor ativa do ponteiro */
}

























swiper-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    height: 100%;
  }

  swiper-slide {
    width: auto;
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
  }

  swiper-slide:hover {
    transform: translateY(-5px);
  }

  swiper-slide img {
    display: block;
    max-width: 140px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.7;
    filter: grayscale(20%);
  }

  swiper-slide:hover img {
    opacity: 1;
    filter: grayscale(0%);
  }
























.bg-team {
    background-image:url('../images/bg2.png');
    background-size:cover;
    background-position:bottom;
    padding:0;
}
.section-team-area {
    background-color:rgba(0, 0, 0, 0);
    padding-top:50px;
    color: #000;
    padding-bottom:50px;
}

.section-team .sliders3 {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.section-team .slide3 {
    width: 300px;
    height:100%;
    min-height:300px;
    background-color:#F7F7F7;
}
.section-team .slidearea {
    display:flex;
    flex-direction:column;
    height:100%;
    justify-content: center;
    align-items:center;
    color:#000;
    padding:30px;
    
}
.section-team-area .sliders-pointers {
    margin-top:30px;
    height:20px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.section-team-area .pointer {
    width:15px;
    height:15px;
    border:2px solid #FFF;
    border-radius:8px;
    margin-left:5px;
    margin-right:5px;
    cursor:pointer;
}
.section-team-area .pointer.active {
    background-color:#1faa4f;
}
.section-team--avatar {
    width:150px;
    height:auto;
    border-radius: 50%;
}
.section-team--name {
    text-transform: uppercase;
    font-weight: 600;
    font-size:17px;
    margin-top:30px;
}
.section-team--role {
    font-size:14px;
    color:#727070;
    margin-top:5px;
}
.section-team--social {
    display:flex;
    margin-top:20px;
}
.section-team--social a {
    display:inline-flex;
    justify-content: center;
    align-items:center;
    width:25px;
    height:25px;
    background-color:#F7F7F7;
    border-radius:13px;
    margin-right:10px;
}
.section-team--social a:hover {
    background-color:#1faa4f;
}









.section-companies {
    padding: 60px 0;
    background: #ffffff;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.section-companies .section-title {
    margin-bottom: 50px;
    padding-top: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-companies .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #18445E, #22c34b);
    border-radius: 2px;
}

.section-companies--area {
    display:flex;
    align-items:center;
}
.section-company {
    flex:1;
    text-align:center;
}

.section-price {
    display:flex;
}
.section-price--item {
    flex:1;
    background-color:#F7F7F7;
    margin-right: 20px;
    padding:20px;
    text-align:center;
}
.section-price--item:last-child {
    margin-right:0;
}
.section-price--item-name {
    text-transform: uppercase;
    font-size:13px;
    font-weight:600;
}
.section-price--item-money {
    font-weight: bold;
    font-size:22px;
    margin-top:10px;
}
.section-price--item-period {
    color:#999;
    text-transform: uppercase;
    margin-bottom:20px;
}
.section-price--item-point {
    font-size:12px;
}













.premium {
    background: linear-gradient(135deg, #F7F7F7 0%, #e8e8e8 100%) !important;
    border-top:1px solid #CCC;
}
.premium .section-body {
    max-width:initial;
}
.section-premium {
    overflow:hidden;
}
.section-premium a {
    margin-top:30px;
}
.section-premium .sliders2 {
    width:1000vw;
    height:100%;
}
.section-premium .slide2 {
    width:100vw;
    height:100%;
    display:inline-block;
}
.section-premium .slidearea2 {
    display:flex;
    height:100%;
    justify-content: center;
    align-items:center;
    max-width:1140px;
    margin:auto;
    padding-bottom:40px;
}
.section-premium--left {
    flex:1;
    text-align:right;
    display: flex;
    justify-content: center;
    animation: fadeInLeft 1s ease-out;
}
.section-premium--left img {
    width:300px;
    margin-right:30px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.section-premium--left img:hover {
    transform: scale(1.05);
}

.section-premium--right {
    flex:1;
    animation: fadeInRight 1s ease-out;
}
.section-premium--item {
    display:flex;
    margin-bottom:20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transition: transform 0.3s ease;
}

.section-premium--item:nth-child(1) {
    animation-delay: 0.2s;
}

.section-premium--item:nth-child(2) {
    animation-delay: 0.4s;
}

.section-premium--item:nth-child(3) {
    animation-delay: 0.6s;
}

.section-premium--item:hover {
    transform: translateX(10px);
}

.section-premium--item img {
    width:20px;
    height:20px;
    margin-right:20px;
}
.section-premium--item div {
    flex:1;
    color:#999;
    line-height:20px;
}
.section-premium--item div h4 {
    color:#000;
    font-size:17px;
    font-weight:600;
}

.DESCNEWS{
    text-transform: uppercase;
    margin: 10px;
    margin-bottom: 20px;
    margin-left: 0px;
    font-weight: 400;
    font-size: 20px;
    background: linear-gradient(135deg, #18445E, #22c34b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}















.section-facts {
    display:flex;
}
.section-fact {
    flex:1;
    text-align:center;
    padding:15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.section-fact.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-fact:hover {
    transform: translateY(-10px) scale(1.02);
}

.section-fact h3 {
    color:#ffffff;
    font-size:45px;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.section-fact:hover h3 {
    color: #3a8bc2;
    text-shadow: 0 6px 20px rgba(58, 139, 194, 0.25);
}

.section-fact-line {
    width:20px;
    border-bottom:2px solid #ffffff;
    margin:auto;
    transition: all 0.4s ease;
}

.section-fact:hover .section-fact-line {
    width: 60px;
    border-bottom: 3px solid #3a8bc2;
    box-shadow: 0 2px 10px rgba(58, 139, 194, 0.25);
}

.section-fact h4 {
    margin-top:20px;
    text-transform: uppercase;
    font-size:18px;
}
.section-fact p {
    margin-top:10px;
    font-size:13px;
    color:#ccc;
}


















.section-share {
    display:flex;
    justify-content: center;
    align-items:center;
    padding:20px;
    background-color:#F7F7F7;
    color:#999;
}
.section-share--legend {
    display:flex;
    align-items:center;
    margin-right:40px;
}
.section-share--legend img {
    margin-right:10px;
}
.section-share--item {
    font-size:12px;
    margin-right:20px;
    display:flex;
    align-items:center;
    cursor:pointer;
}
.section-share--icon {
    width:30px;
    height:30px;
    border-radius:15px;
    background-color:#CCC;
    margin-right:5px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.section-share--icon img {
    height:12px;
}
.section-share--icon.twitter {
    background-color:#34c5f0;
}
.section-share--icon.linkedin {
    background-color:#127cb4;
}
.section-share--icon.facebook {
    background-color:#336297;
}
.section-share--icon.googleplus {
    background-color:#e74237;
}
.section-share--icon.pinterest {
    background-color:#b71c29;
}











.section-contact {
    margin:auto;
    text-align:center;
}
.section-contact input, #assunto{
    display:block;
    width:100%;
    padding: 10px;
    border: none;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-contact input:focus, #assunto:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(34, 195, 75, 0.3);
    transform: translateY(-2px);
}

textarea {
    
    border-radius: 8px;
    height: 100%;
    resize: none;
    border: none;
    width: 100%;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

textarea:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(34, 195, 75, 0.3);
    transform: translateY(-2px);
}

.section-contact--split {
    display:flex;
}
.section-contact--split input:first-child {
    margin-right:20px;
}

.cors{
    background-color: #777;
}

.part0{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-between;
}

.part1{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.part1, .textarea{
    flex: 1;
    margin: 10px;
}

input[type="submit"] {
    background: linear-gradient(135deg, #22c34c, #1faa4f);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    width: 300px;
    margin: auto;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(34, 195, 75, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

input[type="submit"]:hover::before {
    left: 100%;
}

input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(34, 195, 75, 0.5);
}


















@media (min-width:450px) and (max-width:850px){

    /* Prevenir scroll horizontal */
    * {
        max-width: 100%;
    }
    
    .default .section-body {
        padding: 0 20px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Reduzir tamanho do header no tablet */
    .teste {
        height: 70px;
    }
    
    .header {
        height: 70px;
    }
    
    .header-inner {
        padding: 8px 0;
        height: 100%;
    }

    .logo {
        margin-left: 20px;
    }
    
    .logo img {
        height: 45px;
        width: auto;
    }

    .banner h1{
        font-size: 50px;
    }
    
    .banner {
        padding-top: 100px;
        height: calc(80vh - 70px);
    }

    .menu-opener{
        display: block;
        width: 24px;
        height: 24px;
        margin-right: 20px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .menu-opener:hover{
        transform: scale(1.1);
    }

    .menu{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background: linear-gradient(135deg, rgba(24, 68, 94, 0.98) 0%, rgba(26, 80, 112, 0.98) 100%);
        backdrop-filter: blur(10px);
        width: 60vw;
        max-width: 300px;
        height: auto;
        top: 70px;
        right: 0;
        border-radius: 0 0 0 10px;
        box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
    }

    .menu ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .menu li {
        width: fit-content;
    }

    .menu li a{
        font-weight: 600;
        height: 50px;
        font-size: 16px;
        margin-left: 30px;
        padding: 0;
        border: 0;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .menu li a::after {
        display: none;
    }
    
    .menu li a:hover{
        color: #22c34b;
        transform: translateX(5px);
    }

    .menu li.active a {
        border: 0;
        border-bottom: 2px solid #22c34b;
        color: #22c34b;
        padding-bottom: 3px;
    }

    .section-aboutus {
        flex-direction: column;
    }

    .section-aboutus--left{
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .section-aboutus--right {
        width: auto;
    }

    .section-services {
        flex-wrap: wrap;
    }

    .section-service {
        min-width: 50%;
        margin-bottom: 10px;
    }

    .section-service:first-child {
        border-left: 0;
    }

    .section-team {
        max-width: 580px;
    }


    .section-map--info {
        width: auto;
    }

    .section-map {
        padding-left: 30px;
        padding-right: 30px;
    }

    .section-map--area {
        width: auto;
    }

    .section-map--info-item {
        margin-bottom: 20px;
    }

    .section-map--info-item:last-child {
        margin-bottom: 0;
    }

    .sliders3{
        flex-direction: column;
    }

    .section-body{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide3{
        margin: 10px;
    }

    .slidearea2{
        flex-direction: column;
    }

    

    .section-premium--right div{
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    .section-premium--right .section-premium--item div{
        flex-direction: column;
        max-width: 400px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    swiper-container {
        width: 100%;
        padding: 25px 15px;
    }

    swiper-slide {
        padding: 8px;
    }

    swiper-slide img {
        max-width: 110px;
        max-height: 110px;
    }

    .section-companies {
        padding: 50px 0;
    }

    .section-companies .section-title {
        font-size: 24px;
    }

}



@media (max-width:450px) {

    /* Prevenir scroll horizontal */
    * {
        max-width: 100%;
    }
    
    .default .section-body {
        padding: 0 15px;
        width: 100%;
        overflow-x: hidden;
    }

    /* Reduzir tamanho do header no mobile */
    .teste {
        height: 60px;
    }
    
    .header {
        height: 60px;
    }
    
    .header-inner {
        padding: 5px 0;
        height: 100%;
    }

    .logo {
        margin-left: 15px;
    }
    
    .logo img {
        height: 35px;
        width: auto;
    }

    .banner h3 i{
        font-size: 35px;
    }
    
    .banner {
        padding-top: 80px;
        height: calc(80vh - 60px);
    }

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

    .menu-opener{
        display: block;
        width: 22px;
        height: 22px;
        margin-right: 15px;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .menu-opener:hover{
        transform: scale(1.1);
    }

    .menu{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background: linear-gradient(135deg, rgba(24, 68, 94, 0.98) 0%, rgba(26, 80, 112, 0.98) 100%);
        backdrop-filter: blur(10px);
        width: 70vw;
        max-width: 280px;
        height: auto;
        top: 60px;
        right: 0;
        border-radius: 0 0 0 10px;
        box-shadow: -5px 5px 20px rgba(0,0,0,0.3);
    }

    .menu ul {
        flex-direction: column;
        padding: 15px 0;
    }

    .menu li {
        width: fit-content;
    }

    .menu li a{
        font-weight: 600;
        height: 45px;
        font-size: 15px;
        margin-left: 25px;
        padding: 0;
        border: 0;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .menu li a::after {
        display: none;
    }
    
    .menu li a:hover{
        color: #22c34b;
        transform: translateX(5px);
    }

    .menu li.active a {
        border: 0;
        border-bottom: 2px solid #22c34b;
        color: #22c34b;
        padding-bottom: 3px;
    }

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

    .banner h2 {
        font-size: 17px;
    }

    .section-aboutus {
        flex-direction: column;
    }

    .section-aboutus--left{
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .section-aboutus--right {
        margin-left: 30px;
        margin-right: 30px;
        width: auto;
    }

    .section-aboutus--right img {
        width: 100%;
    }

    .section-services {
        flex-wrap: wrap;
        max-width: 100%;
        margin: 0;
        padding: 0 10px;
    }

    .section-service {
        min-width: calc(100% - 20px);
        margin: 10px;
        padding: 20px 15px;
    }

    .section-service:first-child {
        border-left: 0;
    }

    .section-team {
        max-width: 280px;
    }

    .section-companies--area{
        display: flex;
        flex-direction: column;
    }

    .section-company {
        margin: 5px;
    }

    .section-projects--filters {
        margin-left: 30px;
        margin-right: 30px;
    }

    .section-projects--photo {
        width: 100%;
        max-width: 320px;
    }

    .section-projects--photoarea {
        width: calc(100% - 20px);
        max-width: 300px;
        height: 190px;
        margin: 10px;
    }

    

    .section-price {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .section-price--item {
       margin: 0;
    }

    .section-map--info {
        width: auto;
    }

    .section-map {
        padding: 0;
        padding-bottom: 250px;
    }

    .section-map--area {
        width: auto;
    }

    .section-map--info-item {
        margin-bottom: 20px;
    }

    .section-map--info-item:last-child {
        margin-bottom: 0;
    }

    .sliders3{
        flex-direction: column;
    }

    .slide3{
        margin: 10px;
    }

    .section-body{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slidearea2{
        flex-direction: column;
    }

    .section-premium--left {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .section-premium--left img{
        margin: auto;
    }

    .section-premium--right{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .DESCNEWS{
        text-align: center;
        margin: 0;
        margin-bottom: 30px;
    }


    .premium{
        padding-bottom: 0px;
    }

    .section-facts{
        flex-direction: column;
    }

    .section-contact form .part0{
        flex-direction: column;
        height: 500px;
        justify-content: space-between;
    }

   .footer--area{
    flex-direction: column;
   }

   .section-title{
    padding: 10px;
   }

   .section-desc {
    padding: 10px;
   }


   .s{
    display: flex;
    justify-content: center;
    align-items: center;
   }

   .titlefooter{
    display: flex;
    justify-content: center;
    align-items: center;
   }

   .open{
    display: block;
   }

   nav ul.open {
    display: flex;
    justify-content: start;
    margin: 0px;
    background-color: rgba(25,57, 90, 0.7);
    padding: 0px
}

   swiper-container {
    width: 100%;
    padding: 20px 10px;
   }

   swiper-slide {
    padding: 5px;
   }

   swiper-slide img {
    max-width: 100px;
    max-height: 100px;
   }

   .section-companies {
    padding: 40px 0;
   }

   .section-companies .section-title {
    font-size: 22px;
    margin-bottom: 40px;
   }

}

/* Carousel Automático */
.carousel-section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    background-color: #f5f5f5;
    position: relative;
    box-shadow: 
        0 -10px 20px -5px rgba(0, 0, 0, 0.15),
        0 10px 20px -5px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 26.67%; /* Proporção 1875:500 = 26.67% */
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .carousel-container {
        padding-bottom: 26.67%;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding-bottom: 26.67%;
    }
}

