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

.strong {
    font-weight: bold;
}

.text-red-normal {
    color: #b31312;
}

.text-red-dark {
    color: #b42b2b;
}

.text-red-light {
    color: #d34040;
}

header {
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    margin-right: 40px;
}

.header-logo img {
    width: 200px;
}

.header-options {
    display: flex;
    gap: 14px;
}

.header-options a {
    color: #fff;
    transition: color 0.4s;
}

.header-options a:hover {
    color: #f47730;
}

.header-menu {
    list-style-type: none;
    gap: 20px;
}

.header-menu li {
    list-style-type: none;
}

.dropdown-menu {
    margin: 0;
    margin-top: 10px;
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    padding: 5px;
    border-radius: 10px;
}

.dropdown-menu li a {
    color: black;
    padding: 10px;
    display: block;
    white-space: nowrap;
}

/* Estilo do dropdown ao ser exibido */
.dropdown-menu li a:hover {
    background-color: #f0f0f0;
}

.languages {
    display: flex;
    gap: 5px;
    border-radius: 5px;
    background-color: #f47730;
    padding: 10px;
}

.languages a {
    text-decoration: none;
    color: white;
}

.header-mobile {
    display: none;
}

@keyframes translateY {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-8px) scale(1.1);
    }
}
.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 810px) {
    .header-menu {
        display: none;
    }
    .languages {
        display: none;
    }
    .burger {
        position: relative;
    }
    .header-mobile {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
    }
    .header-mobile i {
        color: #fff;
        font-size: 30px;
    }
    .header-mobile:hover {
        cursor: pointer;
    }
    .header-options-mobile {
        position: absolute;
        right: 0px;
        top: 40px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        width: 150px;
        background-color: #fff;
        padding: 10px;
        opacity: 0;
    }
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(300px);
        }
        to {
            opacity: 1;
        }
    }
    @keyframes fadeOutRight {
        from {
            opacity: 1;
            transform: translateX(0px);
        }
        to {
            opacity: 0;
            transform: translateX(300px);
        }
    }
    .header-options-mobile a {
        color: #06121e;
    }
    .languages-mobile {
        display: flex;
        gap: 5px;
    }
}
.hero {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    opacity: 0.9;
    /*.texts{
      max-width: 650px;
      background-color: rgba(6, 18, 30, 0.6);
      padding: 5px;
  }*/
}
.hero h1 {
    line-height: 120%;
    max-width: 650px;
    font-size: 46px;
    text-align: left;
}
.hero p {
    margin: 14px 0px;
    max-width: 650px;
    font-size: 18px;
}
.hero div {
    flex: 1;
}

.button-contact {
    padding: 14px 28px;
    color: #fff;
    background-color: #b31312;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    margin: 14px 0;
}

.button-contact:hover {
    animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}
@media screen and (max-width: 810px) {
    .hero {
        min-height: 60vh;
    }
    .hero h1 {
        font-size: 34px;
        width: 100%;
    }
    .hero p {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
}
.about {
    background-color: #edf2f4;
    overflow: hidden;
    color: #0d1317;
    margin-top: 80vh;
    height: 80vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: flex;
    align-items: center;
    padding: 0px;
    gap: 40px;
}

.performance {
    background-color: white;
    overflow: hidden;
    color: #0d1317;
    height: 80vh;
    display: flex;
    align-items: center;
}

.performance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 40px;
}

.divimg {
    display: flex;
    justify-content: center;
    align-items: center;
}
.divimg img {
    width: 600px;
    border-radius: 15px;
}

.about-description h2 {
    text-align: left;
    font-size: 38px;
    margin-bottom: 24px;
    color: #06121e;
}
.about-description p {
    text-align: left;
    margin-bottom: 14px;
    line-height: 150%;
    font-size: 24px;
    color: #353436;
}

@media screen and (max-width: 425px) {
    .divimg img {
        max-width: 340px !important;
    }
    .about-description h2 {
        font-size: 26px;
    }
    .about-description p {
        font-size: 14px;
    }
}
@media (min-width: 426px) and (max-width: 767px) {
    .about-description h2 {
        font-size: 30px;
    }
    .about-description p {
        font-size: 18px;
    }
}
@media screen and (max-width: 810px) {
    .about {
        height: 80vh;
    }
    .about-content {
        flex-direction: column;
    }
    .divimg img {
        max-width: 100%;
    }
}
.services {
    background-color: #fff;
    background-image: url(/res/assets/servicesbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    color: #0d1317;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 54px 14px;
    overflow: hidden;
}

.services-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
    color: #06121e;
}
.services-content p {
    line-height: 150%;
    margin-bottom: 60px;
    text-align: center;
}

.services-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 44px 34px 44px;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
    padding: 20px 10px;
    padding-bottom: 0;
    background-color: #fff;
    /*border-radius: 15px;*/
    border-radius: 30px;
    border-top-width: 24px;
    border-top-style: solid;
    height: 400px;
}
.service-item i {
    color: #edf2f4;
    font-size: 50px;
    text-align: center;
    width: 83px !important;
    height: 83px !important;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-item-1 {
    background-color: #2e5f8d;
}

.color-item-1 {
    color: #2e5f8d;
}

.border-color-item-1 {
    border-top-color: #2e5f8d;
}

.bg-item-2 {
    background-color: #b42b2b;
}

.color-item-2 {
    color: #b42b2b;
}

.border-color-item-2 {
    border-top-color: #b42b2b;
}

.bg-item-3 {
    background-color: #bd8920;
}

.color-item-3 {
    color: #bd8920;
}

.border-color-item-3 {
    border-top-color: #bd8920;
}

/* .service-item i:hover {
    transform: scale(1.2);
    z-index: 1;
} */
.service-item-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 14px;
    background-color: #fff;
    z-index: 9999;
}
.service-item-text h4 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}
.service-item-text p {
    text-align: center;
    width: 100%;
    color: #616161;
}
.service-item-text a {
    color: #0c2135;
}

@media screen and (max-width: 428px) {
    .services-list {
        padding: 0 10px 34px 10px;
    }
}
.knowhow {
    background-color: #edf2f4;
    overflow: hidden;
    color: #0d1317;
    padding: 0px 0px 80px 0px;
}
.knowhow h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 24px;
    margin-top: 60px;
}

.knowhow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.knowhow-content img {
    border-radius: 15px;
}

.knowhow-description p {
    text-align: center;
    margin-bottom: 14px;
    line-height: 150%;
    max-width: 800px;
    font-size: 20px;
}

.clients {
    background-color: #fff;
    color: #0d1317;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 54px 14px;
    overflow: hidden;
}

.clients-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}
.clients-content p {
    line-height: 150%;
    margin-bottom: 14px;
    text-align: center;
    max-width: 780px;
}

.numbers {
    background-color: #fff;
    overflow: hidden;
    color: #0d1317;
    display: flex;
    align-items: center;
    padding: 150px 0px;
}

.numbers-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #06121e;
}

.numbers-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 44px 34px 44px;
}
.numbers-list .numbers-item {
    max-width: 250px;
}

.numbers-item-text {
    text-align: center;
}
.numbers-item-text h4 {
    font-size: 60px;
    transition: all 0.4s ease-out;
}

.numbers-item-text p {
    font-size: 24px;
}

@media screen and (max-width: 810px) {
    .numbers {
        padding: 90px 0px;
    }
    .numbers-list {
        flex-direction: column;
        gap: 30px;
    }
}
.contact {
    overflow: hidden;
    z-index: -1;
    background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.7), #06121e),
        url("/res/assets/bg-form.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    opacity: 0.9;
}

.contact-content {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 14px 64px 14px;
}

.contact-content div {
    flex: 1;
}

.contact-description h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #fff;
    max-width: 600px;
    text-align: center;
}
.contact-description p {
    margin-bottom: 14px;
    line-height: 150%;
    color: #fff;
    max-width: 600px;
    text-align: center;
}

form {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 20px;
}
form p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
form input {
    padding: 10px;
    margin-bottom: 10px;
}
form textarea {
    padding: 10px;
}
form .btn-send {
    text-align: center;
}
form .btn-send button {
    width: 180px;
}

@media screen and (max-width: 810px) {
    .contact-content {
        height: 700px;
        flex-direction: column;
    }
    .contact-description h2 {
        margin-top: 80px;
    }
    form {
        margin-bottom: 80px;
    }
}
@media (min-width: 425px) and (max-width: 767px) {
    .about-content {
        height: 600px;
        gap: 30px;
    }
    .about-content img {
        max-width: 80%;
        border-radius: 15px;
    }
    .knowhow-content {
        flex-direction: column;
        height: 400px;
    }
    img {
        max-width: 100%;
        border-radius: 15px;
    }
}
@media screen and (max-width: 810px) {
    .about-description {
        max-width: 100vw;
    }
    .about-description h2 {
        width: 90%;
        margin: 0 auto;
    }
    .about-description p {
        width: 90%;
        margin: 0 auto;
    }
    .services-list {
        flex-direction: column;
    }
    .service-item img {
        max-width: 740px;
    }
}
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 0px 0px 0px;
    gap: 24px;
    color: #06121e;
    background-color: #002040;
    color: white;
    overflow: hidden;
}
.footer .copy {
    text-align: center;
    background-color: #00305f;
    padding: 10px;
    color: white;
    margin-top: 80px;
}

.footer-content {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.footer-address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}
.footer-address .item {
    display: flex;
    align-items: flex-start;
}
.footer-address .item img {
    width: 75px;
    margin-right: 16px;
}

.footer-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.footer-icons a {
    color: #0c2135;
}

.footer-logo img {
    width: 350px;
}

.languages-footer {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.input-newsletter {
    padding: 6px;
    margin: 0;
    margin-top: 5px;
    border-style: none;
}

.button-newsletter {
    margin: 0;
    padding: 5px;
    background-color: #f47730;
    color: white;
    border-style: none;
}

.links-social-media {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    gap: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .languages-footer {
        justify-content: center;
    }
}
@media screen and (max-width: 425px) {
    .copy {
        font-size: 14px;
    }
}
body {
    font-family: "Sora", sans-serif;
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: #06121e;
}

button {
    font-family: "Sora", sans-serif;
    cursor: pointer;
}

svg {
    width: 100%;
}

img {
    width: 100%;
}

a {
    cursor: pointer;
    text-decoration: none;
}

.bg-home {
    position: relative;
    padding: 20px 40px 40px 40px;
}

.bg-home::before {
    content: "";
    display: block;
}

.container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 8px;
} /*# sourceMappingURL=style.css.map */

.cards {
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}
.cards .card {
    color: #000;
    width: 200px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}
.cards .card img {
    max-width: 100px;
    max-height: 100px;
    transition: transform 0.25s;
}

.card:hover img {
    transform: scale(1.2);
    z-index: 1;
}

.icon-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    cursor: pointer;
    width: 50px; 
    z-index: 1000;
}

@media (min-width: 600px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .cards {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width: 599px) {
    .card {
        width: 100% !important;
    }
}

/* Media Query Pedro */
@media (max-width: 480px) {
    h1,
    h2 {
        font-size: 32px !important;
    }

    p {
        font-size: 18px !important;
    }

    .about,
    .performance {
        height: 900px;
    }

    .about {
        padding-bottom: 50px !important;
    }

    .footer-logo img {
        width: 100% !important;
    }
}

@media (max-width: 1440px) {
  .divimg img{
    width: 450px;
  }

  .footer-content{
    gap: 40px;
  }
}
