/*----------------------------------------------------------------------------------------------------------------------------------------------*/
/*                                                                FICHEIRO CSS RELATIVO                                                         */
/*                                                                                                                                              */
/*                                                                    WEBSITE OFICIAL                                                           */
/*                                                  INOVSTEEL - Produtos Metálicos e Construção, Lda.                                           */
/*----------------------------------------------------------------------------------------------------------------------------------------------*/

/*-----------------------------
            ÍNDICE

1. IMPORTAÇÃO DE FONTES
2. NAVBAR
3. SOBRE NÓS
4. RODAPÉ DE CONTACTOS
5. RODAPÉ
6. SLOGAN
7. PORTEFOLIO
8. TIPOS DE MATERIAIS
-------------------------------*/

/*--------------------------
1. IMPORTAÇÃO DE FONTES
--------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*-----------
2. GERAL
-----------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #303030;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.80857;
    font-weight: normal;
    overflow-x: hidden;
}

a {
    color: #303030;
    text-decoration: none !important;
    outline: none !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.padding_0 {
    padding: 0 !important;
}

/*------------
3. NAVBAR
------------*/

.navbar_ {
    background: #EF4134;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.0rem;
    position: sticky;
    top: 0;
    z-index: 999;
    border-radius: 5px;
    margin: 10px 30px;
}

.navbar__container_ {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo_ {
    background-color: #fff;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

#navbar__logo_ img {
    width: auto;
    height: 50px;
    margin-right: 0.5rem;
}

.navbar__menu_ {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item_ {
    height: 80px;
}

.navbar__links_ {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    color: #fff;
    scale: 1.5;
}

.button:hover {
    transform: scale(1.25);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.navbar__links_:hover {
    color: #303030;
}

/* Apagar o botão de menu em resolução superior a 960px */
#mobile-menu {
    scale: 0;
}

/* DROPDOWN */
.dropdown_ {
    float: left;
    overflow: hidden;
}

.dropdown_ .dropbtn_ {
    background-color: inherit;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    font-size: 1.2rem;
    transform: translate(0,2.5%);
}

.dropbtn_ a {
    background-color: inherit;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 27% 1rem;
    height: 100%;
    font-size: 1.0rem;
}

.dropbtn_ a:hover {
    color: #303030;
}

.dropdown-content_ {
    display: none;
    position: absolute;
    background-color: #EF4134;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px #303030;
    z-index: 1;
    transform: translate(-30%,-1%);
}

.dropdown-content_ a {
    float: none;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
    font-size: 1rem;
}

.dropdown-content_ a:hover {
    background-color: #303030;
}

.dropdown_:hover .dropdown-content_ {
    display: block;
}

/* DROPDOWN PRINCIPAL DE BAIXA RESLUÇÃO */

.dropdown_toggle_ {
    float: left;
    overflow: hidden;
}

.dropdown_ .dropbtn_ {
    background-color: inherit;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.dropbtn_toggle_ i {
    background-color: inherit;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0% 1rem;
    height: 100%;
    font-size: 1.2rem;
}

.dropbtn_toggle_ i:hover {
    color: #303030;
}

.dropdown-content_toggle_ {
    display: none;
    position: absolute;
    transform: translate(-70%);
    background-color: #EF4134;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px #303030;
    z-index: 1;
}

.dropdown-content_toggle_ a {
    float: none;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: right;
    font-size: 0.7rem;
}

.dropdown-content_toggle_ a:hover {
    background-color: #303030;
}

.dropdown_toggle_:hover .dropdown-content_toggle_ {
    display: block;
}

@media screen and (max-width: 960px) {
    .navbar__container_ {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu_ {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu_.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo_ {
        padding-left: 25px;
    }

    .navbar__item_ {
        width: 100%;
    }

    .navbar__links_ {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 30%;
        right: 5%;
        transform: translate(5%, 20%);
        scale: 1.5;
    }

    .navbar__btn_ {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

}

/*---------------
4. SOBRE NÓS
---------------*/

.homeabout_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 7.5% auto 5% auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1330px;
    padding: 0 50px;
}

.about_container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 7.5% auto 5% auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1330px;
    padding: 0 50px;
}

.about_content h1 {
    font-size: 40px;
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: bold;
    line-height: normal;
    color: #303030;
    width: 40%;
    border-bottom: 2px solid #EF4134;
}

.about_content p {
    margin: 20px 20px;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #303030;
    line-height: 1.5;
    text-align: justify;
}

.about_bt a {
    width: 40%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    background-color: #EF4134;
    height: 50px;
    font-weight: bold;
    margin-top: 40px;
    text-align: center;
    padding-top: 12px;
    display: inline-block;
}

.about_bt a:hover {
    color: #fff;
    background-color: #303030;
    transition: all 0.3s ease;
}

.about_img-container {
    text-align: center;
}

#about_img {
    height: 100%;
    width: 100%;
}

#homeabout_img {
    height: 80%;
    width: 80%;
}

#service_img {
    height: 80%;
    width: 80%;
}

@media screen and (max-width: 768px) {
    .about_container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }
    .about_content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .about_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .about_content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 480px) {
    .about_content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .about_content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .about_bt a {
        padding: 12px 36px;
        margin: 2.5rem 0;
        width: 60%;
    }

}

/*-------------------------
5. RODAPÉ DE CONTACTOS
-------------------------*/

.contact_footer_container {
    background-color: #303030;
    display: flex;
    justify-content: center;
}

.contact_footer_bar {
    max-width: 1000px;
    width: 100%;
}

.contact_footer_bar h2{
    width: 20%;
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    color: #fff;
    border-bottom: 1px solid #EF4134;
    padding-top: 25px;
    text-transform: capitalize;
}

.contact_footer_bar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 10px auto 0 auto;
}

.contact_footer_text {
    width: 100%;
    height: fit-content;
    float: left;
    font-size: 18px;
    color: #EF4134;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 40px;
}

.contact_footer_icon {
    padding-left: 15px;
    padding-top: 10px;
}

.contact_footer_icon a {
    color: #fff;
}

.contact_footer_icon p {
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 820px) {

    .contact_footer_bar-wrap {
        flex-direction: column;
    }

    .contact_footer_container {
        margin-top: 200px;
    }
}




/*------------
8. SLOGAN
----------------*/

.slogan {
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    margin-top: 30px;
}

.slogan h2 {
    font-size: 1.6rem;
    color: #EF4134;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .slogan h2 {
        font-size: 1.5rem;
    }
}


/*----------------
9. PORTEFOLIO
----------------*/


.portefolio_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 7.5% auto 5% auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1330px;
    padding: 0 50px;
}

.portefolio_content h1 {
    font-size: 40px;
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: bold;
    line-height: normal;
    color: #303030;
    width: 60%;
    border-bottom: 2px solid #EF4134;
}

.portefolio_content p {
    margin: 20px 20px;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #303030;
}

.portefolio_bt a {
    width: 30%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    background-color: #EF4134;
    height: 50px;
    font-weight: bold;
    margin-top: 40px;
    text-align: center;
    padding-top: 12px;
    display: inline-block;
}

.portefolio_bt a:hover {
    color: #fff;
    background-color: #303030;
    transition: all 0.3s ease;
}

.portefolio_img-container {
    text-align: center;
}

#portefolio_img {
    height: 80%;
    width: 80%;
}

@media screen and (max-width: 768px) {
    .portefolio_container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }
    .portefolio_content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .portefolio_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .portefolio_content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

}

@media screen and (max-width: 480px) {
    .portefolio_content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .portefolio_content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .portefolio_bt a {
        padding: 12px 36px;
        margin: 2.5rem 0;
        width: 60%;
    }

}

/*------------------------
9. TIPOS DE MATERIAIS
------------------------*/

.portefolio_types {
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* height: 100vh; */
}

.portefolio_types h1 {
    background: #303030;
    background-size: 100%;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    border-bottom: 2px solid #EF4134;
    width: 20%;
    text-align: center;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.portefolio_types_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.portefolio_types_card {
    margin: 1rem;
    height: 425px;
    width: 300px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/escada_inox.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
}

.portefolio_types_card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/escada_tirantes_ferro.jpg');
}

.portefolio_types_card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/aco_corten.jpg');
}

.portefolio_types_card:nth-child(4) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/portinha_aluminio.jpg');
}

.portefolio_types h2 {
    position: absolute;
    top: 310px;
    left: 30px;
    color: #fff;
}

.portefolio_types_card button {
    color: #fff;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 30px;
    background: #EF4134;
    position: absolute;
    top: 360px;
    left: 30px;
    font-size: 1rem;
    cursor: pointer;
}

.portefolio_types_card button:hover {
    color: #fff;
    background-color: #303030;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px){
    .portefolio_types {
        height: 1600px;
    }

    .portefolio_types h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }
}

@media screen and (max-width: 480px){
    .portefolio_types {
        height: 1400px;
    }

    .portefolio_types h1 {
        font-size: 1.2rem;
    }

    .portefolio_types_card {
        width: 300px;
    }
}


/*----------------
10. CONTACTOS
----------------*/


.contacts_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 7.5% auto 0 auto;
    height: fit-content;
    z-index: 1;
    width: 100%;
    max-width: 1330px;
    padding: 0 50px;
}

.contacts_content h1 {
    font-size: 40px;
    letter-spacing: 0;
    font-weight: normal;
    position: relative;
    padding: 0 0 10px 0;
    font-weight: bold;
    line-height: normal;
    color: #303030;
    width: 60%;
    border-bottom: 2px solid #EF4134;
}

.contacts_content p {
    margin: 20px 20px;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    color: #303030;
}

.contacts_bt a {
    width: 40%;
    float: left;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    background-color: #EF4134;
    height: 50px;
    font-weight: bold;
    margin-top: 40px;
    text-align: center;
    padding-top: 12px;
    display: inline-block;
}

.contacts_bt a:hover {
    color: #fff;
    background-color: #303030;
    transition: all 0.3s ease;
}

.contacts_img-container {
    text-align: center;
}

#contacts_img {
    height: 60%;
    width: 60%;
}

@media screen and (max-width: 1000px) {
    .contacts_bt a {
        padding: 12px 36px;
        margin: 2.5rem 0;
        width: 60%;
    }
}

@media screen and (max-width: 850px) {
    .contacts_bt a {
        padding: 12px 36px;
        margin: 2.5rem 0;
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .contacts_container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 70%;
        margin: 0 auto;
        height: 90vh;
    }
    .contacts_content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .contacts_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    
    .contacts_content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .contacts_bt a {
        font-size: 0.7rem;
    }

}

@media screen and (max-width: 480px) {
    .contacts_content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .contacts_content p {
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .contacts_bt a {
        padding: 12px 36px;
        margin: 2.5rem 0;
        width: 60%;
        font-size: 0.7rem;
    }

}

/* Divisão Contactos Geral e Serralharia */

.contacts_types_container {
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contacts_types_bar {
    max-width: 1000px;
}

.contacts_types_bar h2{
    width: 35%;
    margin: 25px auto;
    text-align: center;
    font-size: 30px;
    color: #303030;
    border-bottom: 1px solid #EF4134;
    padding-top: 25px;
    text-transform: capitalize;
}

.contacts_types_bar_2 h2{
    width: 35%;
    margin: 25px auto;
    text-align: center;
    font-size: 30px;
    color: #303030;
    border-bottom: 1px solid #EF4134;
    padding-top: 25px;
    text-transform: capitalize;
}

.contacts_types_bar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 10px auto 0 auto;
}

.contacts_types_text {
    width: 100%;
    height: fit-content;
    float: left;
    font-size: 18px;
    color: #EF4134;
    display: flex;
    justify-content: center;
    padding-bottom: 25px;
}

.contacts_law_text {
    width: 100%;
    height: fit-content;
    float: left;
    font-size: 10px;
    display: flex;
    justify-content: center;
    padding-bottom: 25px;
}

.contacts_types_icon {
    padding-left: 15px;
    padding-top: 10px;
}

.contacts_types_icon a {
    color: #303030;
}

.contacts_types_icon p {
    color: #303030;
    font-size: 12px;
}

@media screen and (max-width: 820px) {

    .contacts_types_bar-wrap {
        flex-direction: column;
    }

    .contacts_types_container {
        margin-top: 150px;
    }
}

/* Localização (Map Embed) */

.contact_loc_container {
    background-color: #303030;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.contact_loc_bar {
    max-width: 1000px;
    width: 100%;
}

.contact_loc_bar h2{
    width: 20%;
    margin: 0 auto;
    text-align: center;
    font-size: 30px;
    color: #fff;
    border-bottom: 1px solid #EF4134;
    padding-top: 25px;
    text-transform: capitalize;
}

.contact_loc_bar-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0px auto 20px auto;
}

.contact_loc_text {
    width: fit-content;
    height: fit-content;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.contact_loc_icon {
    padding: 15px;
}

.contact_loc_icon a {
    color: #fff;
}

.contact_loc_icon p {
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 820px) {

    .contact_loc_bar-wrap {
        flex-direction: column;
    }

    .contact_loc_container {
        margin-top: 200px;
    }

    .contact_loc_bar h2{
        width: 30%;
    }
}


/*----------------
11. SERVIÇOS
----------------*/

.services_types {
  background: #fff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.services_types_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.services_types_card {
  background-color: #f3f3f3;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services_types_card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.services_types_card h2 {
  font-size: 1.4rem;
  color: #EF4134;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.services_types_card p {
  font-size: 0.95rem;
  color: #303030;
  margin-bottom: 25px;
}

.service_btn {
  display: inline-block;
  background-color: #EF4134;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.service_btn:hover {
  background-color: #303030;
}

@media screen and (max-width: 1024px) {
  .services_types_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .services_types_card h2 {
    font-size: 1.2rem;
  }

  .services_types_card p {
    font-size: 0.9rem;
  }

  .service_btn {
    font-size: 0.85rem;
    padding: 8px 20px;
  }
}

@media screen and (max-width: 768px) {
  .services_types {
    padding: 40px 15px;
  }

  .services_types_container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services_types_card {
    padding: 25px 20px;
  }

  .services_types_card h2 {
    font-size: 1.1rem;
  }

  .services_types_card p {
    font-size: 0.9rem;
  }

  .service_btn {
    width: 100%;
    padding: 10px;
  }
}







.homeservices_types_card {
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 40px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/planeamento.png');
    background-size: cover;
    position: relative;
    color: #fff;
}

.homeservices_types_card h2 {
    color: #EF4134;
    font-size: 30px;
}

.homeservices_types_card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/producao.JPG');
}

.homeservices_types_card:nth-child(3) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/images/aco_corten.jpg');
}

.homeservices_types_card p {
    position: absolute;
    top: 400px;
    left: 30px;
}

.homeservices_types_card:hover {
    animation: scale(0.95);
    transition: 0.2s ease-in;
}

@media screen and (max_width: 480px){
    .homeservices_types_card {
        width: 300px;
    }
}



/* Animação de Caixas de Serviços */
.s1 {
    animation: anim1 15s infinite;
}

.s2 {
    animation: anim2 15s infinite;
}

.s3 {
    animation: anim3 15s infinite;
}

@keyframes anim1 {
    0% {
        scale: 1;
    }
    17% {
        scale: 1.05;
    }
    33% {
        scale: 1;
    }
}

@keyframes anim2 {
    33% {
        scale: 1;
    }
    50% {
        scale: 1.05;
    }
    67% {
        scale: 1;
    }
}

@keyframes anim3 {
    67% {
        scale: 1;
    }
    83% {
        scale: 1.05;
    }
    100% {
        scale: 1;
    }
}


/*------------
6. RODAPÉ
------------*/

.widgets a {
  color: #EF4134;
  font-weight: 500;
  font-size: 18px;
}

.widgets a :hover {
    opacity: .5;
}

.widget {
  list-style: none;
}

.widget_nav_menu .menu {
  list-style: none; }


.vc_row {
  margin-left: -20px;
  margin-right: -20px; }

@media (min-width: 768px) {
  .vc_col-sm-6 {
    float: left; }

  .rtl .vc_rtl-columns-reverse .vc_col-sm-6 {
    float: right; }

  .vc_col-sm-6 {
    width: 50%; }

  .vc_col-sm-pull-6 {
    right: 50%; }

  .vc_col-sm-push-6 {
    left: 50%; }

  .vc_col-sm-offset-6 {
    margin-left: 50%; }

@media (min-width: 769px) {
  .vc_col-md-4 {
    float: left; }

  .rtl .vc_rtl-columns-reverse .vc_col-md-4 {
    float: right; }

  .vc_col-md-4 {
    width: 33.33333333%; }

  .vc_col-md-pull-4 {
    right: 33.33333333%; }

  .vc_col-md-push-4 {
    left: 33.33333333%; }

  .vc_col-md-offset-4 {
    margin-left: 33.33333333%; }

@media (min-width: 1200px) {
  .vc_col-lg-4 {
    float: left; }

  .rtl .vc_rtl-columns-reverse .vc_col-lg-4 {
    float: right; }

  .vc_col-lg-4 {
    width: 33.33333333%; }

  .vc_col-lg-pull-4 {
    right: 33.33333333%; }

  .vc_col-lg-push-4 {
    left: 33.33333333%; }

  .vc_col-lg-offset-4 {
    margin-left: 33.33333333%; }
}


.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .page-container {
      padding: 0px 20px;
    }
}

.page-container.full {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 768px) {
    .page-container.full {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.page-container.top-offset {
    padding-top: 8.8vh;
}

@media screen and (max-width: 768px) {
    .page-container.top-offset {
        padding-top: 40px;
    }
}

.page-container.bottom-offset {
    padding-bottom: 8.8vh;
}

@media screen and (max-width: 768px) {
    .page-container.bottom-offset {
        padding-bottom: 40px;
    }
}

.page-container:after {
    content: '';
    clear: both;
    display: table;
}

.site-footer {
  background-color: #303030;
}

@media screen and (min-width: 1025px) {
    .site-footer.sticky {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1;
        visibility: hidden;
    }
    .site-footer.sticky.visible {
        visibility: visible;
    }
}

.site-footer .widgets {
    padding-top: 8.8vh;
    padding-bottom: 8.8vh;
    list-style: none;
}

@media screen and (max-width: 768px) {
    .site-footer .widgets {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer .widgets {
        padding-bottom: 40px;
    }
}

.site-footer .page-container.full {
    padding-left: 4.4vh;
    padding-right: 4.4vh;
}

@media screen and (max-width: 1024px) {
    .site-footer .page-container.full {
        padding-left: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .site-footer .page-container.full {
        padding-right: 20px;
}
}

.site-footer, .site-info {
    font-size: 0.94rem;
    color: #fff;
}

.site-footer .site-info-holder {
      padding-top: 3.4vh;
      padding-bottom: 3.4vh;
}

@media screen and (max-width: 1024px) {
    .site-footer .site-info-holder {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .site-footer .site-info-holder {
        padding-bottom: 20px;
    } 
}

.site-footer .site-info-holder:after {
        content: '';
        display: table;
        clear: both; }

@media screen and (max-width: 768px) {
    .site-footer .left,
    .site-footer .right {
      width: 100%;
      text-align: left;
    }

    .site-footer .right {
      margin-top: 10px;
    } 
}

.padding_selo {
    padding-top: 90px;
}

.lined {
  border-bottom: 1px solid #EF4134;
  width: 20%;
}

.padding_logo {
    padding-top: 30px;
    padding-bottom: 50px;
}

.padding_top_selo {
    padding-top: 10px;
}

.direita {
    text-align: right;
}

.centro {
    text-align: center;
}

.social-footer {
  margin-top: 10px;
}

.social-footer a {
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-footer a:hover {
  color: #EF4134;
}

.site-info-holder.centro {
  border-top: 1px solid #444;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.site-info-holder.centro p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}


/* ABOUT */

.about {
  padding: 80px 0;
  background-color: #fff;
}

.container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  padding-right: 40px;
}

.about-image img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  height: 620px;
}

.about-content {
  flex: 1;
}

.about-content h5 {
  color: #EF4134;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 300;
  color: #111;
  margin-bottom: 10px;
}

.about-content h2 strong {
  font-weight: 800;
  color: #111;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #EF4134;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-content ul {
  list-style: none;
  margin-bottom: 30px;
}

.about-content ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.about-content ul li span {
  color: #EF4134;
  margin-right: 8px;
}

.about-content blockquote {
  background-color: #fff8f5;
  padding: 20px 30px;
  border-left: 4px solid #EF4134;
  font-style: italic;
}

.about-content blockquote p {
  margin-bottom: 10px;
  color: #333;
}

.about-content blockquote cite {
  font-size: 14px;
  color: #777;
}

/* HERO */

.hero {
  height: 100vh;
  background-image: url('images/maps.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #EF4134;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0 10px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.hero-buttons .orange {
  background-color: #EF4134;
  color: white;
}

.hero-buttons .white {
  background-color: white;
  color: black;
}

.hero-buttons .btn:hover {
    color: #fff;
    background-color: #303030;
    transition: all 0.3s ease;
}

/* HOME SERVICES */

.services-section {
  text-align: center;
  padding: 60px 20px;
}

.section-subtitle {
  color: #EF4134;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.section-title span {
  font-weight: 400;
  color: #2a2a2a;
}

.services-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-box {
  background: #fff;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 0;
}

.icon-title h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.icon {
  width: 24px;
  height: 24px;
}

.service-box p {
  font-size: 14px;
  color: #555;
  padding: 10px 20px 20px;
  margin: 0;
  text-align: left;
}

.underline {
  width: 150px;
  height: 3px;
  background-color: #EF4134;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}


.buttons .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 20px 10px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: larger;
}

.buttons .orange {
  background-color: #EF4134;
  color: white;
}

.buttons .white {
  background-color: white;
  color: black;
}

.buttons .btn:hover {
    color: #fff;
    background-color: #303030;
    transition: all 0.3s ease;
}

/* GALLERY (UPDATED) */

.gallery-masonry {
  column-width: 400px;
  column-gap: 1.5rem;
  padding: 1rem;
}


.gallery-masonry .item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-masonry .item:hover {
  transform: scale(1.02);
}

.gallery-masonry img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}


/* Responsivo */
@media (max-width: 1200px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 1;
  }
}

/* HORÁRIO */

.horario-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.sec-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.linha-vermelha {
  width: 150px;
  height: 1px;
  background-color: #EF4134;
  margin: 0 auto 30px;
}

.horario-section h3 {
  font-size: 22px;
  margin: 10px 0 5px;
  color: #333;
}

.horario-section p {
  font-size: 18px;
  color: #555;
}






/* =========================================================
   RESPONSIVO GERAL - MOBILE FIX
   Colocar no fim do style.css
========================================================= */

@media screen and (max-width: 960px) {

  .navbar_ {
    height: 70px;
    margin: 8px 10px;
    border-radius: 4px;
  }

  .navbar__container_ {
    height: 70px;
    padding: 0 15px;
  }

  #navbar__logo_ {
    font-size: 1rem;
    padding-left: 10px;
  }

  #navbar__logo_ img {
    height: 40px;
  }

  .navbar__menu_.active {
    height: auto;
    min-height: 250px;
    padding: 15px 0;
  }

  .navbar__links_ {
    padding: 1rem;
    font-size: 1rem;
  }

  .dropdown-content_ {
    position: static;
    transform: none;
    box-shadow: none;
    min-width: 100%;
  }

  .dropdown-content_ a {
    text-align: center;
  }
}


@media screen and (max-width: 768px) {

  body {
    font-size: 14px;
    line-height: 1.6;
  }

  .homeabout_container,
  .about_container,
  .portefolio_container,
  .contacts_container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin: 40px auto;
    padding: 0 20px;
    gap: 30px;
  }

  .about_content,
  .portefolio_content,
  .contacts_content {
    text-align: center;
    margin-bottom: 0;
  }

  .about_content h1,
  .portefolio_content h1,
  .contacts_content h1 {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 20px auto;
    font-size: 2rem;
    text-align: center;
  }

  .about_content p,
  .portefolio_content p,
  .contacts_content p {
    margin: 15px 0;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .about_img-container,
  .portefolio_img-container,
  .contacts_img-container {
    width: 100%;
  }

  #about_img,
  #homeabout_img,
  #service_img,
  #portefolio_img,
  #contacts_img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
  }

  .buttons .btn,
  .hero-buttons .btn,
  .about_bt a,
  .portefolio_bt a,
  .contacts_bt a {
    width: auto;
    min-width: 180px;
    max-width: 100%;
    float: none;
    display: inline-block;
    margin: 15px auto;
    font-size: 0.95rem;
  }

  .hero {
    height: 75vh;
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 12px auto;
    width: 220px;
  }

  .about {
    padding: 50px 0;
  }

  .container {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-image {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-image img {
    height: auto;
    max-height: 420px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .services-section {
    padding: 45px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-box {
    width: 100%;
    max-width: 360px;
  }

  .gallery-masonry {
    column-width: auto;
    column-count: 1;
    padding: 15px;
  }

  .gallery-masonry img {
    max-height: none;
  }

  .contact_footer_container,
  .contacts_types_container,
  .contact_loc_container {
    margin-top: 40px;
  }

  .contact_footer_bar h2,
  .contacts_types_bar h2,
  .contacts_types_bar_2 h2,
  .contact_loc_bar h2 {
    width: fit-content;
    font-size: 1.6rem;
  }

  .contact_footer_bar-wrap,
  .contacts_types_bar-wrap,
  .contact_loc_bar-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .contact_footer_text,
  .contacts_types_text,
  .contact_loc_text {
    font-size: 1rem;
    padding: 15px 10px;
    text-align: center;
  }

  .site-footer .left,
  .site-footer .right,
  .direita,
  .centro {
    text-align: center;
  }

  .lined {
    width: 120px;
    margin: 0 auto;
  }
}


@media screen and (max-width: 480px) {

  .navbar_ {
    margin: 6px 6px;
  }

  #navbar__logo_ img {
    height: 34px;
  }

  .about_content h1,
  .portefolio_content h1,
  .contacts_content h1 {
    font-size: 1.7rem;
  }

  .about_content p,
  .portefolio_content p,
  .contacts_content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .services_types_container {
    grid-template-columns: 1fr;
  }

  .services_types_card {
    padding: 22px 16px;
  }

  .portefolio_types h1 {
    width: fit-content;
    font-size: 1.5rem;
  }

  .portefolio_types_card,
  .homeservices_types_card {
    width: 100%;
    max-width: 330px;
    height: 420px;
  }

  .portefolio_types h2 {
    top: 300px;
    left: 20px;
  }

  .portefolio_types_card button {
    top: 350px;
    left: 20px;
  }

  .homeservices_types_card p {
    top: 320px;
    left: 20px;
    right: 20px;
  }

  .horario-section p {
    font-size: 1rem;
  }
}