/*
--- 01 TYPOGRAPHY SYSTEM

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades:
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/


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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    font-family: 'Sansation', serif;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    overflow-x: hidden;
}

/**************************/
/* GENERAL REUSABLE COMPONENTS */
/**************************/

.container {
    max-width: 130rem;
    padding: 0 3.2rem;
    margin: 0 auto;
}

.grid {
    display: grid;
    column-gap: 4.2rem;
    row-gap: 9.6rem;
}

.grid--2-cols {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
    grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
    align-items: center;
}

.section-head {
    margin-bottom: 5rem;
}

.section-head span {
    display: inline-block;
    text-transform: uppercase;
    color: #868e96;
    padding-left: 6rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.section-head span::before {
    content: "";
    height: 0.2rem;
    width: 4rem;
    background-color: #f03e3e;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.section-head h2 {
    color: #495057;
    font-size: 3rem;
}

.btn {
    color: #f03e3e;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-shadow: inset 0 0 0 2px #f03e3e;
}

.btn-normal {
    font-size: 1.2rem;
    padding: 1.6rem 3.2rem;
    transition: 0.3s ease-in;
    border-radius: 8px;
}

.btn-normal span {
    display: inline-block;
    transition: 0.3s ease-in;
}

.btn-normal:hover {
    background-color: #f03e3e;
    color: #f8f9fa;
}

.btn-normal:hover span {
    transform: translate(50%, 0);
}

/**************************/
/* HEADER */
/**************************/

.menu {
    background-color: rgba(255, 255, 255, 0.98);
    /* background-color: rgb(233, 236, 239); */
    position: fixed;
    width: 100%;
    z-index: 1;
}

.menu-box {
    display: flex;
    justify-content: space-between;
    padding: 0 3.2rem;
    height: 7.23rem;
}

.menu-logo-desktop-view {
    width: 20rem;
    padding: 1.6rem 0;
}

.menu-links {
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    justify-content: center;
    column-gap: 3.2rem;
}

.menu-links-categoria p {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #f68b8b;
    position: relative;
    z-index: 99;
}

.menu-links-categoria span {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0 0.4rem;
}

.menu-links-categoria p::before {
    content: "";
    height: 0.5px;
    width: 100%;
    background-color: #f68b8b;

    left: 0;
    top: 50%;
    position: absolute;
    z-index: -1;
}

.menu-links-list {
    display: flex;
    gap: 1.8rem;
}

.menu-link:link,
.menu-link:visited {
    text-decoration: none;
    color: #495057;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02rem;
    /* padding-bottom: 0.4rem; */
    /* border-bottom: 1px solid rgb(233, 236, 239, 0.98); */
    transition: all 0.3s;
}

.menu-link:hover,
.menu-link:active {
    /* border-bottom: 1px solid #868e96; */
    color: #f03e3e;
}

.menu-link-desktop-view-cta:link,
.menu-link-desktop-view-cta:visited {
    padding: 1.2rem 2.4rem;
    background-color: #f03e3e;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease-in;
}

.menu-link-desktop-view-cta:hover,
.menu-link-desktop-view-cta:active {
    background-color: #c92a2a;
}

.menu-link.menu-link-active {
    color: #f03e3e;
}

.altura-menu {
    height: 7.23rem;
}

.altura-menu-nav {
    height: 3.6rem;
}

/* MOBILE */

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}

/* ------------------------------- */

.menu-nav-pages {
    background-color: #495057;
    height: 3.6rem;
}

.menu-nav-pages-links {
    display: flex;
    height: 100%;
    /* gap: 1.6rem; */
}

.menu-nav-pages-link {
    text-decoration: none;
    color: #f1f3f5;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2.4rem;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.menu-nav-pages-link:hover {
    background-color: #f03e3e;
}

.secao-active {
    background-color: #f03e3e;
    color: #fff !important;
}

/*

.menu-links-desktop-view {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.menu-link-desktop-view:link,
.menu-link-desktop-view:visited {
    display: inline-block;
    color: #212529;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: 0.2s ease-in;
}

.menu-link-desktop-view:hover,
.menu-link-desktop-view:active {
    padding-bottom: 4px;
    box-shadow: 0px 2px 0px #f03e3e;
    transform: translate(0, -10%);
}
 */

/**************************/
/* HERO SECTION */
/**************************/

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/imgs/hero-img.jpg');
    background-size: cover;
    /* background-position: center; */
    width: 100%;
    height: 70rem;
}

.hero-section {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section p {
    color: #fff;
    text-align: center;
    font-size: 4.8rem;
    font-weight: 650;
    line-height: 1.6;
}

/**************************/
/* BEM-VINDO */
/**************************/

.bemvindo-section {
    padding: 10rem 0 0;
}

.bemvindo-section-box {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 3rem;
}


.bemvindo-section-box h2 {
    text-align: right;
    font-size: 3rem;
    line-height: 1.6;
}

.bemvindo-section-box h2 span {
    color: #f03e3e;
}

.bemvindo-section-box p {
    font-size: 1.8rem;
    padding: 3rem 0;
    padding-left: 3rem;
    line-height: 2.5rem;
    border-left: 3px solid #f03e3e;
}

/**************************/
/* DETALHES */
/**************************/

.detalhes-section {
    padding: 10rem 0 15rem;
}

.detalhe-card {
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in;
}

.detalhe-card:hover {
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
}

.detalhe-card-img {
    width: 100%;
}

.detalhe-card-details {
    color: #495057;
    padding: 2rem;
}

.detalhe-card-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.detalhe-card-details p {
    font-size: 1.4rem;
    line-height: 1.3;
    padding-left: 1.4rem;
    position: relative;
}

.detalhe-card-details p::before {
    content: "";
    width: 0.1rem;
    height: 100%;
    position: absolute;
    background-color: #f03e3e;
    left: 0;
}

/**************************/
/* EQUIPAMENTOS E INSTRUMENTOS */
/**************************/

.equip-instr {
    background-color: #a82b2b;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)), url('/assets/imgs/equip-instr/equip-instr-img-2.png');
    background-size: cover;
    /* padding: 0 0 10rem; */
    /* height: calc(100vh - 7rem); */
    overflow: hidden;
    position: relative;
}

.equip-instr-backg-img {
    width: 50%;
    /* height: 100vh; */
    object-fit: cover;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

.section-head-equip-instr {
    margin: 0;
    display: grid;
    /* height: calc(100vh - 7rem); */
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.section-head-equip-instr .shei-box {
    padding: 10rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-head-equip-instr span,
.section-head-equip-instr h2 {
    color: #f8f9fa;
}

.section-head-equip-instr h2 {
    margin-bottom: 5rem;
}

.section-head-equip-instr p {
    color: #f8f9fa;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.section-head-equip-instr .oferta {
    margin-top: 1rem;
    margin-bottom: 1.4rem;
}

.oferta-box {
    color: #f8f9fa;
    column-gap: 1.2rem;
    row-gap: 2.2rem;
}

.oferta-icons {
    background-color: #f8f9fa;
    color: #f03e3e;
    padding: 1rem;
    height: 4rem;
    width: 4rem;
    margin-bottom: 1.2rem;
    border-radius: 10px;
}

.oferta-single p {
    color: #f1f3f5;
    font-size: 1.4rem;
    color: #f1f3f5;
}

/**************************/
/* NOSSOS SERVIÇOS */
/**************************/

.nossos-servicos {
    padding: 10rem 0;
    color: #495057;
}

.nossos-servicos-z-pattern {
    gap: 0;
}

.nossos-servicos-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.img-left {
    border-radius: 4.4rem 0 0 4.4rem;
}

.img-right {
    border-radius: 0 4.4rem 4.4rem 0;
}

.nossos-servicos-box-details {
    padding: 4rem 6.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.nsbd-right::after {
    content: "";
    height: 50%;
    width: 0.2rem;
    background-color: #f03e3e;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.nsbd-left::after {
    content: "";
    height: 50%;
    width: 0.2rem;
    background-color: #f03e3e;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.nsbd h3 {
    font-size: 2rem;
    margin-bottom: 2.2rem;
}

.nsbd p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.nsbd ul {
    font-size: 1.4rem;
    margin-left: 1.5rem;
    list-style: square;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.nsbd li::marker {
    color: #f03e3e;
}

.nsbd a {
    font-size: 1.4rem;
}

/**************************/
/* GET SOLUTION */
/**************************/

.get-solution {
    padding-top: 10rem;
    margin-bottom: 10rem;
    border-top: 1px solid #495057;
}

.get-solution-box {
    text-align: center;
    width: 50%;
    margin-bottom: 6.4rem;
}

.gsb-title {
    color: #495057;
    font-size: 3rem;
    padding-bottom: 2.4rem;
    margin-bottom: 3.8rem;
    position: relative;
}

.gsb-title::after {
    content: "";
    width: 20%;
    height: 0.3rem;
    background-color: #f03e3e;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.gsb-title span {
    color: #f03e3e;
}

.gsb-paragraph {
    font-size: 1.8rem;
    color: #495057;
}

.sectores {
    gap: 4.8rem;
}

.img-sec {
    border-radius: 2.4rem;
    overflow: hidden;
    margin-bottom: 2rem;
    line-height: 0;
}

.img-sector {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.3s;
    overflow: hidden;
    filter: grayscale(100%);
    display: block;
}

.img-sector:hover {
    transform: scale(1.1);
    filter: none;
}

.nome-sector {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #868e96;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
    /* background-color: #343a40; */
    background: #300c0c;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #481313, #300c0c);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #481313, #300c0c);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    /* background-image: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('/assets/imgs/footer-img-1.jpg');
    background-size: cover; */

    color: #f1f3f5;
    padding: 10rem 0;
}

.footer-box {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.2rem;
}

.img-logo-f-box {
    background-color: #f8f9fa;
    padding: 1.6rem 3.2rem;
    border-radius: 10px;
    width: 50%;
    margin-bottom: 3.2rem;
}

.pbelow-logo-f-box {
    font-size: 1.6rem;
    width: 80%;
    line-height: 1.6;
    margin-bottom: 3.2rem;
}

.footer-social-media-icons {
    display: flex;
    font-size: 2.4rem;
    gap: 2.4rem;
}

.footer-social-media-icons a:link,
.footer-social-media-icons a:visited {
    color: #f1f3f5;
    transition: 0.3s;
}

.footer-social-media-icons a:hover,
.footer-social-media-icons a:active {
    /* color: #868e96; */
    transform: translate(0, -0.5rem);
}

.f-box-title {
    font-size: 1.6rem;
    font-weight: 700;
    padding-bottom: 1.6rem;
    margin-bottom: 3.6rem;
    position: relative;
}

.f-box-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 64px;
    background-color: #f03e3e;
    border: none;
}

.f-box-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.f-box-list-line {
    display: grid;
    gap: 1.2rem;
    align-items: center;
    position: relative;
}

.f-box-list-line a::before {
    content: "";
    position: absolute;
    height: 0.4rem;
    width: 0.4rem;
    background-color: #f03e3e;
    top: 50%;
    transform: translate(-1.2rem, -50%);
}

.f-box-list-line a:link,
.f-box-list-line a:visited {
    color: #f1f3f5;
    text-decoration: none;
    font-size: 1.4rem;
    margin-left: 1.2rem;
    transition: 0.2s ease-in;
}

.f-box-list-line a:hover,
.f-box-list-line a:active {
    /* color: #f03e3e; */
    transform: translate(-0.5rem, 0);
}

.f-box-list-icon {
    height: 2.2rem;
    width: 2.2rem;
}

.f-box-list-line span {
    display: inline-block;
    font-size: 1.4rem;
}

.footer-copyright {
    /* background-color: #212529; */
    background: #180606;
    background: -webkit-linear-gradient(to right, #300c0c, #180606);
    background: linear-gradient(to right, #300c0c, #180606);
    text-align: center;
    color: #f1f3f5;
    font-size: 1.2rem;
    padding: 2.4rem;
}
