* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1d1d1b;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* ================= FHEADER ================= */

header {
    background: #fdfdfb;
    height: 80px;
    display: flex;
    align-items: ceFnter;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 2.25rem;
    width: auto;
    display: block;
    margin-left: 1rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-right: 1rem;
}

nav a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
    transition: 0.3s;
}

nav a:hover {
    color: #07652E;
}

.btn-nav {
    background: #07652E;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    position: relative;
    z-index: 1001;
    margin-right: 1rem;
}

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index: 999;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

/* ================= HERO ================= */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)),
        url('assets/caminhoes_patio.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.hero-content {
    border-left: 4px solid #07652E;
    padding-left: 20px;
    margin-top: 10rem;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}


/* ================= SEÇÕES ================= */

section {
    padding: 100px 0;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #07652E;
}

.empresa {
    padding: 120px 0;
    background: #f7f7f7;
    min-height: 100vh;
}

.empresa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sec-tag {
    display: inline-block;
    background: #07652E;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
}

.empresa h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1d1d1b;
}

.empresa p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.empresa-destaques {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.empresa-destaques strong {
    display: block;
    font-size: 22px;
    color: #07652E;
}

.empresa-destaques span {
    font-size: 14px;
    color: #777;
}

.empresa-imagem {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* ================= NUMEROS ================= */

.numeros {
    background: #1d1d1b;
    color: #fff;
    padding: 100px 0;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

.numero-item h3 {
    font-size: 48px;
    color: #07652E;
    margin-bottom: 10px;
}

.numero-item p {
    font-size: 16px;
}

/* ================= SERVIÇOS / EQUIPAMENTOS ================= */

.servicos {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.servicos h2 {
    color: #07652E;
    margin-bottom: 10px;
}

.subtitulo {
    max-width: 600px;
    margin: auto;
    color: #666;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .35s;
    border-top: 4px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    border-top: 4px solid #07652E;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.card h3 {
    color: #1d1d1b;
    margin-bottom: 10px;
}

.frota {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.frota::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 700px;
    height: 700px;

    background: url("assets/JG.jpeg") no-repeat center;
    background-size: contain;

    opacity: 0.08;

    pointer-events: none;
}

.frota .container {
    position: relative;
    z-index: 2;
}

.frota h2 {
    color: #07652E;
    margin-bottom: 10px;
}

.frota .subtitulo {
    max-width: 650px;
    margin: auto;
    color: #666;
}

.frota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.frota-card {
    text-align: left;
}

.frota-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
}

.frota-card h3 {
    margin-top: 15px;
    color: #1d1d1b;
}

.frota-card p {
    margin-top: 8px;
    color: #555;
    line-height: 1.5;
}

/* ================= PARCEIROS ================= */

.parceiros {
    padding: 80px 0;
    background: #f7f7f7;
    text-align: center;
}

.parceiros h2 {
    color: #07652E;
    margin-bottom: 10px;
}

.parceiros .subtitulo {
    max-width: 650px;
    margin: auto;
    color: #666;
}

.logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.logos img {
    max-width: 120px;
    max-height: 120px;
    margin: auto;
    opacity: 0.7;
    transition: .3s;
    object-fit: contain;
}

.logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ================= CONTATO ================= */

.contato {
    padding: 90px 0;
    background: #f5f5f5;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.formulario h2 {
    color: #07652E;
    margin-bottom: 10px;
}

.formulario .subtitulo {
    color: #666;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form select,
form input,
form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

form button {
    background: #07652E;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: .3s;
}

form button:hover {
    background: #054a22;
}

.mapa {
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

/* ================= FOOTER ================= */

.footer{
    background:#1d1d1b;
    color:#fff;
    padding:60px 0 20px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    flex-wrap:wrap;
}

/* LOGO + TEXTO */
.footer-brand img{
    height:45px;
    margin-bottom:15px;
}

.footer-brand p{
    max-width:350px;
    color:#ccc;
    line-height:1.6;
}

/* REDES */
.footer-social h4{
    margin-bottom:15px;
    color:#07652E;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2a2a2a;
    border-radius:50%;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#07652E;
    transform:translateY(-3px);
}

/* LINHA FINAL */
.footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid #333;
    padding-top:20px;
    font-size:14px;
    color:#aaa;
}

@keyframes fadeIn{
from{opacity:0; transform:translateY(10px);}
to{opacity:1; transform:translateY(0);}
}

/* ================= RESPONSIVO ================= */

/* TABLET */

@media (max-width: 1024px) {

    .hero h1 {
        font-size: 48px;
    }

    .empresa-grid {
        grid-template-columns: 1fr;
    }

    .empresa-imagem {
        height: 300px;
    }

    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-toggle{
        display:block;
    }

    nav{
        display: flex;
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        padding:80px 20px;
        box-shadow:-5px 0 15px rgba(0,0,0,.1);
        transition:.3s;
        z-index: 1000;
    }

    nav a{
        margin:15px 0;
        font-size:18px;
    }

    nav.active{
        right:0;
    }

}

/* MOBILE */

@media (max-width: 768px) {

    header {
        height: 70px;
    }

    nav {
        display: flex;
    }

    .hero {
        text-align: left;
        padding: 0 20px;
    }

    .hero-content {
        margin-top: 8rem;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 70px 0;
    }

    .empresa {
        height: auto;
    }

    .empresa h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .numeros-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width:768px) {
    .logos {
        grid-template-columns: repeat(2, 1fr);
    }
    }

@media (max-width:768px) {

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .mapa {
        height: 300px;
    }

     .footer-content{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .footer-brand p{
        max-width:100%;
    }

    }

/* MOBILE PEQUENO */

@media (max-width:480px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 15px;
    }

    .logo img {
        height: 2rem;
    }

}