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

:root {
    --primary-color: #2C59AD;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --blue: #17255a;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.nav-container .logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

/*
.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}
    
*/

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
   /* background: var(--primary-color);*/
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: var(--light-gray);
    border: 2px solid transparent;
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}


/* Hero */
.hero {
    background: linear-gradient(rgba(44,89,173,0.9), rgba(44,89,173,0.9)), 
                url('img/industras.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-contente h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-contente p .hero-subtitle{
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


/*Agente*/
.agente {
    padding: 90px 4px;
    text-align: center;
}

.agente-titulo {
    color: #17255a;
}

.agente-sub {
    margin: 20px;
}

.agente-img img {
    width: 600px;
    border-radius: 10px;
}


/*Cestas*/

.cestas {
    padding: 60px 4px;
    background-color: #2C59AD;
}

.cestas .flex {
    display: flex;
    justify-content: space-evenly;
}

.cestas-titulo {
    color: white;
    font-size: 2.0rem;
}

.cestas-sub {
    color: white;
}

.cestas-img img {
    width: 400px;
    border-radius: 15px
}


/*Gruas*/


.gruas {
    padding: 60px 4px;
    background-color: #2C59AD;
}

.gruas .flex {
    display: flex;
    justify-content: space-evenly;
}

.gruas-img img {
    width: 400px;
    border-radius: 15px;
}

.gruas-titulos {
    color: white;
    font-size: 2.0rem;
}

.gruas-sub {
    color: white;
}

/*Elevador*/

.elevador {
    padding: 60px 4px;
}

.elevador .flex {
    display: flex;
    justify-content: space-evenly;
}

.elevador-titulo {
    color: #17255a;
    font-size: 2.0rem;
}

.elevador-img img {
    width: 400px;
    border-radius: 15px;
}

/*Nosso*/

.nosso {
    padding: 60px 4px;
}

.nosso .flex {
    display: flex;
    justify-content: space-evenly;
}

.nosso-img img {
    width: 400px;
    border-radius: 15px;
}

.nosso-titulo {
    color: #17255a;
    font-size: 2.0rem;
}






/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section img{
    width: 150px;
}
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p a {
    text-decoration: none;
    color: white;
}



/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-contente h1 {
        font-size: 2.5rem;
    }
    
    .hero-contente p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .agente-titulo {
        font-size: 1.2rem;
    }

    .agente-sub {
        font-size: 0.9rem;
    }

    .agente-img img {
        width: 350px;
    }

    .cestas {
        text-align: center;
    }

    .cestas .flex {
        display: block;
        gap: 20px;
    }

    .cestas-sub {
        margin-bottom: 20px;
    }

    .cestas-img img {
        width: 350px;
    }

    .gruas {
        text-align: center;
    }

    .gruas-sub {
        margin-bottom: 20px;
    }

    .gruas .flex {
        flex-direction: column-reverse;
    }

    .gruas-img img {
        width: 350px;
    }

    .elevador {
        text-align: center;
    }

    .elevador-sub {
        margin-bottom: 20px;
    }

    .elevador .flex {
        display: block;
    }

    .elevador-img img {
        width: 350px;
    }

    .nosso {
        text-align: center;
    }

    .nosso-sub {
        margin-bottom: 20px;
    }

    .nosso .flex {
        flex-direction: column-reverse;
    }

    .nosso-img img {
        width: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}