@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
}

body {
    background-color: #D3F2EF;
    overflow-x: hidden;
    
}


/* Section Exposição */

.exposure-s {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    margin-top: 80px;
    margin-bottom: 40px;
   

    .content-exposure {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    h1 {
        text-align: center;
        margin-bottom: 16px;
        font-size: clamp(1.9rem, 4vw, 3.5rem);

    }

    p {
        font-size: clamp(1rem,3vw,1.2rem);
        width: 35%;
        text-align: center;
        margin-bottom: 40px;
    }

    .model-3d {
        width: 300px;
        height: 500px
    }
    

}

@media (max-width: 1180px) {
    .exposure-s {
        margin-top: 40px;


        h1 {
            padding: 12px;
        }

        p {
            padding: 12px;
            width: 100%;
        }
    }
}


/* Services Section*/

.services-s {
    width: 100%;
    max-width: 1550px; 
    margin-top: 40px;
    margin: 0 auto; 
    background: linear-gradient(rgba(18, 48, 58, 0.85), rgba(18, 48, 58, 0.85)), 
    url('/img/services-bg.avif') center/cover no-repeat;
    border-radius: clamp(16px, 3vw, 28px); 
    padding: clamp(30px, 6vw, 80px); 
    box-sizing: border-box;
    overflow: hidden;
}

/* --- Cabeçalho --- */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(30px, 5vw, 60px);
    gap: 20px;
}

.services-header h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem); 
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.services-header h2 strong {
    color: #49c5a3;
    font-weight: 600;
}

.services-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: right;
}

.services-nav p {
    color: #d1d5db;
    font-size: clamp(1rem, 1.5vw, 1.2rem); 
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.bottons-carousel {
    display: flex;
    gap: 15px;
}

.bottons-carousel button {
    width: clamp(45px, 4vw, 55px); 
    height: clamp(45px, 4vw, 55px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent; 
    color: white;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Estado Ativo do botão */
.bottons-carousel button.active {
    background-color: #e5e7eb;
    color: #12303a;
    border-color: #e5e7eb;
}

.bottons-carousel button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.bottons-carousel button.active:hover {
    background-color: #ffffff; 
}


.services-carousel {
    display: flex;
    gap: clamp(20px, 3vw, 35px); 
    overflow-x: auto; 
    padding-bottom: 25px; 
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.img-card {
    pointer-events: none;
}
.services-carousel::-webkit-scrollbar {
    display: none;
}
.services-carousel:active {
    cursor: grabbing;
}


.card-service {
    background-color: #ffffff;
    border-radius: clamp(12px, 2vw, 18px);
    min-width: clamp(260px, 80vw, 380px); 
    width: clamp(260px, 80vw, 380px);
    
    flex-shrink: 0; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-service img {
    width: 100%;
    height: clamp(200px, 25vw, 250px);
    object-fit: cover;
    display: block;
}

.card-body {
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
}

.card-body h3 {
    margin: 0 0 10px 0;
    font-size: clamp(1.2rem, 2vw, 1.5rem); 
    color: #1f2937;
    font-weight: 700;
}

.card-body p {
    margin: 0;
    font-size: clamp(0.9rem, 1.2vw, 1rem); 
    color: #4b5563;
    line-height: 1.6;
}


@media (max-width: 900px) {

    .services-s {
        display: flex;
        flex-flow: column;
        padding-top: 80px;
        width: 100%;
        border-radius: 0px;
        height: 100vh;
    }
   
    .bottons-carousel {
        justify-content: center;
    }

    .services-header {
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    .services-nav {
        text-align: center;
    }
    
   
    .services-nav {
        gap: 16px;
        display: flex;
        align-items: center;
    }
    
    .services-nav p {
        margin: 0; 
}
}

@media (max-width: 500px) {
    
    

    .services-nav {
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .services-s {
        padding-top: 80px;
    }
}

.listra-100 {
    margin-top: 80px;
    height: 150px;
    width: 100%;
    background-color: #00222D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;

    .logotipo {
        margin-right: 120px;
    }
}

.content-listra {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px; 
    align-items: center; 
}


.content-listra > div {
    grid-column: 1; 
    grid-row: 1 / 3; 
}

.circle-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #4DB6AC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-listra h2 {
    font-size: 2rem;
    grid-column: 2; 
    grid-row: 1;  
    margin: 0;
    color: #4DB6AC;
}

.content-listra p {
    font-size: 1.2rem;
    grid-column: 2; 
    grid-row: 2; 
    margin: 0; 
}


@media (max-width: 1340px) {
    .listra-100 {
        display: none;
    }
}
/* Section About Us */

.about-us-s {
    margin-top: 120px;
    padding: 20px;
}

.container {
    margin: 0 auto;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-column {
    width: 35%;
    

    h2 {
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

    p {
        width: 89%;
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    a {
        color: black;
        text-decoration: none;
        background-color: #4DB6AC;
        padding: 1.3rem;
        font-weight: 500;
        border-radius: 0.5rem;
        transition: 0.3s ease;
    }

    a:hover {
        background-color: #245752;
        color: white;
    }
}

.right-column img {
    width: 500px;
    height: 330px;
    border-radius: 16px;
}

@media (max-width: 866px) {

    .about-us-s {
        margin-top: 40px;
    }

    .container {
        flex-flow: column;
        gap: 40px;
    }

    .left-column {
        display: flex;
        flex-flow: column;
        align-items: center;
        width: 100%;

        h2 {
            text-align: center;
        }

        p {
            margin-bottom: 20px;
        }
    }

    .right-column img {
       width: 90vw;
       max-width: 550px;
    }
}

/* Footer*/

.footer {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 12px;
    margin-top: 80px;

    .logotipo {
    margin-bottom: 56px;
    font-size: 2rem;
    font-weight: 800;
    }

    .top-content {
        display: flex;
        gap: 40px;
        margin-bottom: 24px;
    }

    .top-content a {
        text-decoration: none;
        color: black;
        font-weight: 700;
        font-size: 1.4rem;
        transition: 0.3s ease;
    }

    .top-content a:hover {
        color: #4DB6AC;
    }

    .thin-line-footer {
        height: 1px;
        width: 85%;
        max-width: 700px;
        background-color: #A1B8B6;
    }

    .mid-content {
    display: flex;
    gap: 15px; 
    align-items: flex-start; 
    padding: 16px 16px;
    }


    .social-btn {
    display: inline-flex;
    align-items: center;
    background-color: #0b1f28; 
    color: #ffffff;
    text-decoration: none;
    min-width: 170px;
    border-radius: 34px 16px 16px 34px; 
    padding: 0px 24px 0px 0px; 
    font-weight: bold;
    font-size: 16px;
    transition: 0.2s ease;
    }

    .social-btn:hover {
        background-color: #4DB6AC;
        transform: scale(1.05);
        transition: 0.5s;
    }


    .social-btn span.text {
        display: flex;
        justify-content: center;
        width: 50%;
    }

    

    .icon-circle {
    display:flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px; 
    border-radius: 50%; 
    margin-right: 12px; 
    color: #ffffff;

    .icon-circle img {
        width: 55px;
        height: 35px;
    }
    }


    .whatsapp-btn .icon-circle, .instagram-btn .icon-circle, .email-btn .icon-circle {
        background-color: #4DB6AC;
    }


    .bottom-content {
        margin-top: 24px;
        letter-spacing: 0.4rem;
        margin-bottom: 24px;
    }
}


@media (max-width: 650px) {
    .mid-content {
        display: flex;
        flex-flow: column;
    }
}
