/* GERAL */
body {
    background-color: #01524c;
}

h1 {
    margin: 0;
    line-height: 1.2;
  }  

.container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding: 0 40px;
}

.dark {
    background-color: #01524c;
    color:#D8DAD7;
}

.light {
    background-color: #D8DAD7;
    color: #01524c;
}

.bg {
    background-image: url('../img/usinagem1.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.bg2 {
    background-image: url('../img/torno.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.opacity-bg {
    background-color: rgba(0, 0, 0, 0.4);
    margin-left: -40px;
    margin-right: -40px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #D8DAD7;
}

.button {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    color: #D8DAD7;
    font-size: 20px;
    font-weight: 900;
    padding: 12px;
    background-color: #00887f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
    opacity: 0.9;
}

.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
  
  .whatsapp-float svg {
    width: 55px;
    height: 55px;
}
  
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* AJUSTES GERAIS */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

section {
    scroll-margin-top: 100px;
  }  

html, body {
    width: 100%;
    overflow-x: hidden;
}
  
[data-aos] {
    will-change: transform;
    transform-origin: center center;
}
  
body > * {
    position: relative;
    overflow-x: clip;
    max-width: 100vw;
}
  
@supports not (overflow-x: clip) {
    body > * {
      overflow-x: hidden;
    }
}





/* HEADER */
header .menu-area {
    display:flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 40px;
    display: flex;
    gap: 30px;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
}

header .menu-area.scrolled {
    background-color: rgba(1, 82, 76, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

header #logo {
    width: 150px !important;
    height: auto;
    margin: 5px 0;
}

header .menus {
    display:flex;
}

header #menu-web {
    display:flex;
    color:#ccc;
}

header #menu-web a {
    font-size: 35px;
    font-family: 'Bebas Neue', sans-serif;
    display:flex;
    color:#ccc;
    font-weight: 200;
    margin-left: 20px;
}

header #menu-web a:hover {
    color:#71797B;
}

header #menu-web .active {
    color: #71797B;
    font-weight: bold;
}

#menu-mobile {
    display: none;
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
}

#menu-web.show {
    display: flex !important;
}

#menu-mobile div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); 
    width: 24px;                 
    height: 3px;                 
    background-color: #ccc;     
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.24s ease;
    transform-origin: center;
}
  
#menu-mobile div:nth-child(1) { top: 8px; }                 
#menu-mobile div:nth-child(2) { top: calc(50% - 1.5px); }   
#menu-mobile div:nth-child(3) { top: 24px; }                
  
 
#menu-mobile.active div:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: calc(50% - 1.5px);
}
#menu-mobile.active div:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.8);
}
#menu-mobile.active div:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: calc(50% - 1.5px);
}
  
  
header #menu-mobile:hover div{
    background-color: #71797B;
}






/* HOME - BG AREA */
.bg-area {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-area h1 {
    font-family: 'Anton', sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 60px;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.bg-area h2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Anton", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 60px;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}





/* HOME */
.home-area {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.home-area .button-area:hover {
    opacity: 0.9;
}

.home-right {
    width: 50%;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}

.home-right h1 {
    font-size: 40px;
    line-height: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.home-right p {
    margin-top: 20px;
    margin-right: 10px;
    font-size: 20px;
}

.home-right p span {
    color: #71797B;
}

.home-left {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-left img {
    width: 100%;
    height: auto;
    margin-top: -60px;
}






/* SERVIÇOS */
.services-title h1 {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
}

.services-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services--photos {
    margin-top: 20px;
    display:flex;
    justify-content: center;
}

.services--photo {
    width: 33%;
}

.services--photoarea {
    margin: 10px;
    width: 350px;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
}

.services--photoarea img {
    border-radius: 12px;
    width: inherit;
    height: inherit;
}

.services--photoinfo {
    border-radius: 12px;
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.51);
    width: inherit;
    height: inherit;
    justify-content: center;
    align-items: center;
    color: white;
}

.services--photoinfo h1 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.services--photoinfo p{
    text-align: center;
    padding: 20px;
}

.services--photoarea:hover .services--photoinfo{
    display: flex;
}

.insta-feed {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
  
  .insta-feed a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
  
.insta-feed a:hover {
    transform: scale(1.05);
}
  
.insta-feed img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    display: block;
}

#insta-feed video {
    width: 350px;
    height: 350px;
    object-fit: contain;
    display: block;     
    border-radius: 12px;   
}






/* CLIENTES */
.partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.partners h1 {
    padding-top: 40px;
    font-size: 40px;
    font-weight: 800;
}

.partners-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.partners-area--logo {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
    background-color: rgb(219, 219, 219);
    border-radius: 20px;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
}

.partners-area--logo img {
    padding: 15px;
    width: 100%;
    height: auto;
}

.elfsight-app-7832a37c-afbe-4c34-9ca7-0aba29a78b05 {
    width: 50%;
}






/* QUEM SOMOS */
.who-we-are--area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
    text-align: justify;
}

.who-we-are--title h1 {
    padding-top: 30px;
    font-size: 40px;
    font-weight: 800;
}

.who-we-are--text p {
    margin-top: 20px;
    margin-right: 10px;
    padding-right: 100px;
    padding-left: 100px;
    font-size: 20px;
}

.who-we-are--text p:last-child {
    margin-bottom: 30px;
}







/* QUEM SOMOS - COMPLEMENTO */
.who-we-are-complement--bg-opacity {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.who-we-are-complement--body {
    width: 80vw;
    height: 30vh;
    display: flex;
    align-items: center;
}

.who-we-are-complement--facts {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.who-we-are-complement--fact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex:1;
    text-align: center;
    padding: 15px;
}

.who-we-are-complement--fact-part1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex:1;
    text-align: center;
}

.who-we-are-complement--fact-border {
    width: 17px;
    height: 1px;
    border-bottom: 3px solid #fff;
}

.who-we-are-complement--fact-number {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    color: #D8DAD7;
    padding-bottom: 2px;
    transition: transform 0.3s ease;
}

.who-we-are-complement--fact-number.animate {
    transform: scale(1.15);
  }

.who-we-are-complement--fact-title {
    padding-top: 5px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    color: #D8DAD7;
}






/* LOCALIZAÇÃO */
.location {
    display: flex;
    flex-direction: column;
}

.location-title {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 40px;
    font-weight: 800;
}

.location-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.location-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.location-desc--info {
    display: flex;
    align-items: center;
    font-size: 20px;
}

#location-icon {
    width: 60px;
    height: 60px;
}

.location-map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 40px;
}

#map-placeholder {
    width: 100%;
    height: 450px;
    background-color: #003f3a;
    color: #ffffff;
    border:0;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .3s ease, opacity .3s ease;
}

#map-placeholder:hover {
    background-color: #004944;
    opacity: 0.9;
}





/* FOOTER */
.footer {
    background-color: rgb(20, 20, 20);
    color: #999;
    display: flex;
    align-items: center;
}

.footer-area {
    flex: 1;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo h1 {
    font-size: 37px;
    font-weight: bold;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

.footer-contact {
    display: flex;
    padding-left: 0;
    flex-direction: column;
    justify-content: center;
}

.footer-contact p {
    font-size: 25px;
    font-weight: bold;
}

.footer-contact--area {
    display: flex;
    align-items: center;
    margin:5px
}

.footer-contact--area p{
    font-size: 20px;
    font-weight: 200;
    margin-left: 10px;
    color: #999;   
}

.footer-contact--area #email-svg {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    align-items: center;
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0;
}

.footer-contact--area a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 200;
    color: #999;
}

.footer-contact--area #instagram-svg {
    width: 35px !important;
    height: 35px !important;
    flex-shrink: 0;
    fill: #999 !important;
    stroke: #999 !important;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-credits span {
    color: #D8DAD7;
}







@media (max-width: 1024px) {
    .whatsapp-float {
        width: 70px;
        height: 70px;
    }
      
    .whatsapp-float svg {
        width: 45px !important;
        height: 45px !important;
    }

    header #logo {
        width: 100px !important;
    }

    header #menu-web a {
        font-size: 25px;
    }

    .bg-area h1 {
        font-size: 40px;
    }

    .bg-area h2 {
        font-size: 40px;
    }

    .home-left img {
        margin-top: -30px;
    }

    .services-title h1 {
        font-size: 30px;
    }

    .services--photoarea {
        width: 280px !important;
        height: 280px !important;
    }

    .insta-feed img {
        width: 280px !important;
        height: 280px !important;
        object-fit: contain;
        display: block;
    }
    
    #insta-feed video {
        width: 280px !important;
        height: 280px !important;
        object-fit: contain;
        display: block;     
        border-radius: 12px;   
    }

    .partners h1 {
        font-size: 30px;
    }
    
    .partners-area {        
        gap: 20px;
        margin-top: 20px;
    }
    
    .partners-area--logo {
        width: 280px !important;
        height: 280px !important;
    }

    .who-we-are--title h1 {
        font-size: 30px;
    }
    
    .who-we-are--text p {
        padding-right: 70px;
        padding-left: 70px;
    }

    .location-title {
        font-size: 30px;
    }
}







@media (max-width: 820px) {
    section {
        scroll-margin-top: 80px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
      
    .whatsapp-float svg {
        width: 35px !important;
        height: 35px !important;
    }

    header #menu-web a {
        justify-content: center;
    }

    .container {
        padding: 0 20px;
    }

    header #menu-mobile {
        display: flex;
    }

    header #menu-web {
        display: none;
        flex-direction: column;
        gap:10px;
        padding-bottom: 10px;
        position: absolute;
        z-index: 99;
        background-color: rgba(1, 82, 76, 0.9);
        width: 100% !important;
        top: 80px;
        left: 0;
    }

    .home-right h1 {
        font-size: 30px;
        line-height: 35px;
    }
    
    .home-right p {
        margin-top: 20px;
        margin-right: 10px;
        font-size: 15px;
    }

    .button {
        font-size: 15px;
    }

    .services-title h1 {
        font-size: 25px;
    }

    .services--photoarea {
        width: 200px !important;
        height: 200px !important;
    }

    .insta-feed img {
        width: 200px !important;
        height: 200px !important;
        object-fit: contain;
        display: block;
    }
    
    #insta-feed video {
        width: 200px !important;
        height: 200px !important;
        object-fit: contain;
        display: block;     
        border-radius: 12px;   
    }

    .partners h1 {
        font-size: 25px;
    }
    
    .partners-area {        
        gap: 20px;
        margin-top: 20px;
    }
    
    .partners-area--logo {
        width: 200px !important;
        height: 200px !important;
    }

    .who-we-are--title h1 {
        font-size: 25px;
    }
    
    .who-we-are--text p {
        font-size: 15px;
        padding-right: 60px;
        padding-left: 60px;
    }

    .location-title {
        font-size: 25px;
    }

    .location-desc--info {
        font-size: 15px;
    }
    
    #location-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-area {
        padding: 20px;
    }
    
    .footer-logo h1 {
        font-size: 27px;
    }

    .footer-logo p {
        font-size: 11px;
        padding-right: 40px;
    }
    
    .footer-logo img {
        width: 150px !important;
    }
    
    .footer-contact {
        padding-right: 40px;
    }
    
    .footer-contact p {
        font-size: 20px;
    }
    
    .footer-contact--area p{
        font-size: 15px;
    }
    
    .footer-contact--area #email-svg {
        width: 35px !important;
        height: 35px !important;
    }
    
    .footer-contact--area a {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 200;
        color: #999;
    }
    
    .footer-contact--area #instagram-svg {
        width: 25px !important;
        height: 25px !important;
    }
    
    .footer-credits {
        font-size: 15px;
    }
}







@media (max-width: 425px) {
    section {
        scroll-margin-top: 57px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
    }
      
    .whatsapp-float svg {
        width: 35px !important;
        height: 35px !important;
    }

    header #logo {
        width: 60px !important;
    }

    header #menu-web {
        display: none;
        flex-direction: column;
        gap:10px;
        padding-bottom: 10px;
        position: absolute;
        z-index: 99;
        background-color: rgba(1, 82, 76, 0.9);
        width: 100% !important;
        top: 58px;
        left: 0;
    }

    header #menu-web a {
        font-size: 20px;
    }

    .bg-area h1 {
        font-size: 25px;
    }

    .bg-area h2 {
        font-size: 25px;
    }

    .home-area {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .home-right {
        width: 100%;
        text-align: center;
        padding-right: 0px;
    }

    .home-right h1 {
        font-size: 30px;
    }

    .home-left {
        width: 100%;
    }

    .home-left img {
        width: 50%;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .button {
        font-size: 15px;
    }

    .services-title h1 {
        font-size: 25px;
    }

    .services--photoarea {
        width: 200px !important;
        height: 200px !important;
    }

    .services--photos {
        flex-direction: column;
    }

    .insta-feed img {
        width: 200px !important;
        height: 200px !important;
        object-fit: contain;
        display: block;
    }
    
    #insta-feed video {
        width: 200px !important;
        height: 200px !important;
        object-fit: contain;
        display: block;     
        border-radius: 12px;   
    }

    .partners h1 {
        font-size: 25px;
    }
    
    .partners-area {        
        gap: 20px;
        margin-top: 20px;
    }
    
    .partners-area--logo {
        width: 200px !important;
        height: 200px !important;
    }

    .elfsight-app-7832a37c-afbe-4c34-9ca7-0aba29a78b05 {
        width: 90%;
    }

    .who-we-are--title h1 {
        font-size: 25px;
    }
    
    .who-we-are--text p {
        padding-right: 25px;
        padding-left: 25px;
        font-size: 15px;
    }

    .who-we-are-complement--fact-number {
        font-size: 25px;
        font-weight: 800;
        color: #D8DAD7;
        padding-bottom: 2px;
    }
    
    .who-we-are-complement--fact-title {
        padding-top: 5px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 900;
        color: #D8DAD7;
    }

    .location-title {
        font-size: 20px;
    }

    .location-desc--info {
        font-size: 15px;
    }
    
    #location-icon {
        width: 30px;
        height: 30px;
    }

    .location-map {
        width: 100%;
        padding-bottom: 30px;
    }
    
    .location-map #map-placeholder {
        height:250px !important;
        font-size: 16px;
    }

    .location-map iframe {
        height:250px !important;
    }

    .footer {
        flex-direction: column;
    }
    
    .footer-area {
        padding: 20px 0;
        flex-direction: column;
    }
    
    .footer-logo h1 {
        font-size: 27px;
    }

    .footer-logo p {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    
    .footer-contact {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    
    .footer-contact p {
        text-align: center;
        font-size: 20px;
    }
    
    .footer-contact--area p{
        font-size: 15px;
    }
    
    .footer-contact--area #email-svg {
        width: 35px !important;
        height: 35px !important;
    }
    
    .footer-contact--area a {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 200;
        color: #999;
    }
    
    .footer-contact--area #instagram-svg {
        width: 25px !important;
        height: 25px !important;
    }
    
    .footer-credits {
        font-size: 15px;
        padding-bottom: 10px;
    }
}






@media (max-width: 375px) {

    .home-right h1 {
        font-size: 20px;
        line-height: 25px;
    }

    .who-we-are-complement--fact-number {
        font-size: 20px;
        font-weight: 800;
        color: #D8DAD7;
        padding-bottom: 2px;
    }
    
    .who-we-are-complement--fact-title {
        padding-top: 5px;
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 900;
        color: #D8DAD7;
    }
}






@media (max-width: 320px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
      
    .whatsapp-float svg {
        width: 25px !important;
        height: 25px !important;
    }

    .home-right h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .button {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .services-title h1 {
        font-size: 20px;
    }

    .partners h1 {
        font-size: 20px;
    }

    .who-we-are--title h1 {
        font-size: 20px;
    }
    
    .who-we-are--text p {
        padding-right: 13px;
        padding-left: 13px;
        font-size: 13px;
    }

    .who-we-are-complement--fact-number {
        font-size: 16px;
        font-weight: 800;
        color: #D8DAD7;
        padding-bottom: 2px;
    }
    
    .who-we-are-complement--fact-title {
        padding-top: 5px;
        text-transform: uppercase;
        font-size: 8px;
        font-weight: 900;
        color: #D8DAD7;
    }

    .location-title {
        padding-bottom: 20px;
        font-size: 15px;
    }

    .location-desc--info {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 12px;
    }
    
    #location-icon {
        width: 30px;
        height: 30px;
    }

    .location-map {
        width: 100%;
        padding-bottom: 30px;
    }
    
    .location-map iframe {
        width: 95%;
        height:250px !important;
    }

    .footer {
        flex-direction: column;
    }
    
    .footer-area {
        padding: 20px 0;
        flex-direction: column;
    }
    
    .footer-logo h1 {
        font-size: 27px;
    }

    .footer-logo p {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    
    .footer-contact {
        padding-right: 0px;
        padding-bottom: 30px;
    }
    
    .footer-contact p {
        text-align: center;
        font-size: 20px;
    }
    
    .footer-contact--area p{
        font-size: 15px;
    }
    
    .footer-contact--area #email-svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .footer-contact--area a {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 200;
        color: #999;
    }
    
    .footer-contact--area #instagram-svg {
        width: 23px !important;
        height: 23px !important;
    }
    
    .footer-credits {
        font-size: 12px;
        padding-bottom: 10px;
    }
} 