* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    position: fixed;
    width: 100vw;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: .5rem 0 .2rem;
    box-shadow: 0 2px 20px rgb(0 0 0 / .1)
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.logo {
    width: 5rem;

    img {
        width: 100%
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem
}

.nav-link {
    text-decoration: none;
    color: #000000c1;
    font-weight: 600;
    padding: .8rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 700;

    a {
        text-decoration: none
    }
}

.nav-link:hover,
.nav-link.active {
    color: #4477bf;
    background-color: #1328453e
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a5f;
    margin: 3px 0;
    transition: 0.3s
}

.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 0 0 / .2)
}

.social-link.linkedin {
    background: #0077b5;
    color: #fff
}

.social-link.whatsapp {
    background: #25d366;
    color: #fff
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgb(0 0 0 / .3)
}

.hero {
    height: 100vh;
    background-image: url(assets/backgrouond/ari-shojaei-ptnd-eF0QBc-unsplash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    z-index: 2;
}

.logo-hero {
    width: auto;
    text-align: center;
    padding: 40px 20px;

    img {
        max-width: 100%
    }
}

.hero-logo h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .5);
    line-height: 1.2
}

.hero-logo span {
    font-size: 2rem;
    display: block;
    letter-spacing: 3px
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 2rem;
    text-shadow: 2px 2px 2px rgb(0 0 0 / .8)
}

.about {
    background: #1A2B4C;
    color: #fff;
    padding: 5rem 0;
    height: 100%
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    font-weight: 100
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 200
}

.pillars h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-top: 1rem;
    font-weight: 100;
    color: #fff
}

.pillars-list {
    list-style: none
}

.pillars-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 1.1rem;
    font-weight: 200
}

.pillars-list li::before {
    content: "•";
    color: #2f639f;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0
}

.pillars-list strong {
    color: #74afdf
}

.representadas {
    background: #132845;
    color: #fff;
    padding: 5rem 0;
    border-top: 3px solid rgb(255 255 255 / .588);
    text-align: center
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out
}

.carousel-item {
    min-width: 100%;
    padding: 0 20px
}

.company-card {
    background: rgb(255 255 255 / .1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgb(255 255 255 / .2);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto
}

.company-card:hover {
    box-shadow: 0 20px 40px rgb(0 0 0 / .3)
}

.container-image-card {
    max-width: 15rem;
    text-align: center;
    padding: 0 20px;

    img {
        max-width: 100%
    }
}

.container-image-card-losada {
    max-height: 12rem;
    width: 70%;
    margin: 0 auto;

    img {
        width: 60%;
        margin: auto 0
    }
}

.content-text-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    p {
        font-size: 1rem;
        letter-spacing: 1px
    }
}

.company-subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: .6rem
}

.company-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0
}

.btn-saiba-mais {
    padding: 12px 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff0;
    color: #fafafa;
    width: 40%;
    text-decoration: none
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / .3);
    background-color: #1e3a5fa8
}

.carousel-btn {
    position: absolute;
    top: 38%;
    border: none;
    color: #fff;
    background-color: #132845;
    font-size: 3rem;
    width: 0;
    height: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px)
}

.carousel-btn:hover {
    background: rgb(255 255 255 / .3);
    transform: translateY(-50%) scale(1.1)
}

.carousel-btn.prev {
    left: 20px
}

.carousel-btn.next {
    right: 40px
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgb(255 255 255 / .3);
    cursor: pointer;
    transition: all 0.3s ease
}

.indicator.active {
    background: #f4f5f7;
    transform: scale(1.1)
}

.areas {
    background: #f8f9fa;
    padding: 5rem 0
}

.areas .section-title {
    text-align: center;
    color: #011154fb;
    margin-bottom: 3rem;
    font-weight: 400
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem
}

.area-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgb(0 0 0 / .1);
    transition: all 0.3s ease
}

.area-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgb(0 0 0 / .15)
}

.area-icon {
    color: #1e3a5f;
    margin-bottom: 1.5rem
}

.area-item h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600
}

.footer {
    background: #132845;
    color: #fff;
    padding: 3rem 0;
    text-align: center
}

.footer .section-title {
    margin-bottom: 1rem
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #fafafa
}

.contact-info a {
    text-decoration: none;
    color: #fff;
    font-weight: 100
}

.contact-item p {
    margin-bottom: .5rem;
    font-weight: 200
}

.contact-item strong {
    color: #fff;
    font-size: 1.2rem
}

@media (max-width:768px) {
    .mobile-menu-toggle {
        display: flex
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #d4d5d75c;
        padding: 10px 0;
        box-shadow: 0 2px 5px rgb(0 0 0 / .8);
        z-index: 1000;
        transition: transform 0.3s ease-out;
        transform: translateX(-100%);
        row-gap: 0
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
        padding-bottom: 0;
        padding: 0
    }

    .nav-menu li {
        text-align: center;
        margin: 0;
        transition: all .3s;
        border-radius: 0;

        &:hover {
            background-color: rgb(0 0 0 / .3)
        }
    }

    .nav-link {
        color: #fff;
        display: block;
        padding: 1rem;
        background: #1a2b4cdb;
        border-radius: 0;

        &:hover {
            color: #b5b5b5
        }
    }

    .nav-link:hover {
        background-color: #1328453e
    }

    .nav-link:hover {
        background-color: #1328453e
    }

    .nav-link.active {
        color: #e8e8e8;
        background-color: #1328453e;
        text-shadow: 1px 1px 2px black;
    }

 

    .mobile-menu-toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #1e3a5f;
        margin: 3px 0;
        transition: 0.3s
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg)
    }

    .social-sidebar {
        right: 10px;
        gap: .5rem
    }

    .social-link {
        width: 40px;
        height: 40px
    }

    .hero-logo h2 {
        font-size: 2.5rem
    }

    .hero-logo span {
        font-size: 1.2rem
    }

    .hero-title {
        font-size: 1.6rem;
        font-weight: 600
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: justify
    }

    .about {
        height: 100%
    }

    .section-title {
        font-size: 2rem
    }

    .company-card {
        max-width: 80%
    }

    .carousel-btn {
        display: none
    }

    .container-image-card {
        width: 120%;

        img {
            margin: 0 auto
        }
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer .section-title {
        font-size: 2rem
    }

    .contact-info {
        grid-template-columns: 1fr;
        text-align: center
    }

    .form-footer {
        width: 50%;
        margin: 0 auto
    }
}

@media (max-width:480px) {
    .container {
        padding: 0 15px
    }

    .hero {
        background: url(assets/backgrouond/ari-shojaei-ptnd-eF0QBc-unsplash.jpg);
        background-position: bottom center;
        background-attachment: scroll;
        background-size: cover;
    }

    .hero-logo h2 {
        font-size: 2rem
    }

    .hero-title {
        font-size: 1rem
    }

    .about-content .section-title {
        font-size: 2rem
    }

    #empresas .section-title {
        font-size: 1.5rem
    }

    .section-title .carousel-item {
        padding: 0
    }

    .content-text-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

        h3 {
            font-size: 1rem;
            margin-top: 1rem
        }

        p {
            font-size: .6rem;
            margin-bottom: .5rem
        }

        .btn-saiba-mais {
            font-size: .6rem;
            margin-top: .5rem;
            width: 80%
        }
    }

    .container-image-card {
        max-width: 100%;
        margin: 0 auto;

        img {
            width: 100%
        }
    }

    .company-card {
        padding: 2rem 1.5rem;
        justify-content: space-around;
        max-width: 90%
    }
}

html {
    scroll-behavior: smooth
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out
}

.form-footer {
    box-sizing: border-box
}

#form {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff
}

#form input {
    padding: .75rem;
    background: #fff0;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    transition: .2s ease-in-out;
    width: 100%;
    margin-top: .5rem;
    border-radius: 2px
}

#form input:focus {
    padding-bottom: .8rem
}

#form .btn-form {
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    border: 1px solid #fafafa
}

#form .btn-form:hover {
    background-color: rgb(0 0 0 / .249)
}

#form .title-form {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: .5rem
}