@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --primary-color-text:#202020;
    --secundary-color:#fafafa;
    --terciary-color: #00264D;
    --fourth-color: #003b5c;
    --primary-font-family: "Poppins", sans-serif;
    --secundary-font-family: "Oswald", sans-serif;
    --title-font-size: 32px;
    --text-font-size: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    margin: auto;
    max-width: 1200px;
    padding: 0px 20px;
}

.logo {
    margin-left: 20px;
}

.logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* HEADER */
header {
    background-color: #fff;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-top: 10px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

header nav li {
    margin: 0 30px;
}

header nav li a {
    font-family: var(--secundary-font-family);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color-text);
    text-decoration: none;
    transition: ease-in-out .2s;
}

header nav li a:hover {
    color: var(--fourth-color);
}

/* MENU MOBILE*/
.menu-mobile {
    display: none;
}

.menu-icon {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color-text); 
    transition: all 0.3s;
    transform-origin: left; 
}

.menu-icon.active .bar1 {
    transform: rotate(45deg);
}

.menu-icon.active .bar2 {
    opacity: 0; 
}

.menu-icon.active .bar3 {
    transform: rotate(-45deg);
}

.menu-mobile ul {
    position: absolute;
    top: 138px;
    right: 0px;
    display: none; 
    flex-direction: column;
    gap: 15px;
    padding: 10px 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    z-index: 99; 
}

.menu-mobile ul.active {
    display: flex; 
}

.menu-mobile li {
    list-style: none; 
    text-align: center;
}

.menu-mobile li a{
    display: block;
    padding: 10px 20px;
    color: var(--secundary-color);
    transition: ease-in-out .3s;
}

.menu-mobile li a:hover {
    color: var(--fourth-color);
}

header .menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

header .menu-icon div {
    height: 6px;
    background-color: var(--primary-color-text);
}

/*PÁGINA INICIAL */

.hero .container {
    position: relative;
    z-index: 2;
}

.hero {
    position: relative;
    height: auto;
    background: url('../image/caminhao_paisagem.png') no-repeat bottom center;
    background-size: cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* controla a intensidade */
    z-index: 1;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-family: var(--secundary-font-family);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 80px;
    font-family: var(--primary-font-family);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--fourth-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    font-family: var(--primary-font-family);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--terciary-color);
    text-decoration: underline;
}

.btn-secondary {
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    color: #fff;
    transition: 0.3s;
    font-family: var(--primary-font-family);
    text-decoration: none;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    text-decoration: underline;
}

.about-home {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--secundary-font-family);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
    font-family: var(--primary-font-family);
}

.about-text .btn-primary {
    display: inline-block;
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    max-width: 90vw;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}
.services-home {
    padding: 90px 0;
    background: #dfdfdf;
    text-align: center;
}

.services-home h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #111;
    font-family: var(--secundary-font-family);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin: 0px 10px;
}

.service-card {
    font-family: var(--primary-font-family);
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--fourth-color);
    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.why-us {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.why-us h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #111;
    font-family: var(--secundary-font-family);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 0px 10px;
}

.why-item {
    font-family: var(--primary-font-family);
    background: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #c5c5c5;
}

.why-item:hover {
    background: var(--terciary-color);
    color: #fff;
    transform: translateY(-5px);
}

.coverage {
    padding: 90px 0;
    background: var(--terciary-color);
    color: #fff;
    text-align: center;
}

.coverage h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-family: var(--secundary-font-family);
}

.coverage p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    font-family: var(--primary-font-family);
}

/* PÁGINA QUEM SOMOS.PHP*/
.about-hero {
    background: linear-gradient(
        rgba(0, 38, 77, 0.75),
        rgba(0, 38, 77, 0.75)
    ),
    url('../image/caminhao_paisagem.png') center/cover no-repeat;

    padding: 120px 0;
    text-align: center;
    color: var(--secundary-color);
}

.about-hero h1 {
    font-family: var(--secundary-font-family);
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: var(--text-font-size);
    opacity: 0.9;
    font-family: var(--primary-font-family);
}

.about-company {
    padding: 90px 0;
    background: var(--secundary-color);
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-company-text h2 {
    font-size: var(--title-font-size);
    color: var(--terciary-color);
    margin-bottom: 20px;
    font-family: var(--secundary-font-family);
}

.about-company-text p {
    font-size: var(--text-font-size);
    color: var(--primary-color-text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: var(--primary-font-family);
}

.about-company-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}

.mission-vision-values {
    padding: 90px 0;
    background: var(--terciary-color);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mvv-card h3 {
    font-family: var(--secundary-font-family);
    font-size: var(--title-font-size);
    color: var(--fourth-color);
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: var(--text-font-size);
    color: var(--primary-color-text);
    line-height: 1.6;
    font-family: var(--primary-font-family);
}

/*PÁGINA TRANSPORTE */
/* BANNER */
.transport-banner {
    background: linear-gradient(
        120deg,
        rgba(0, 38, 77, 0.9),
        rgba(0, 59, 92, 0.85)
    ),
    url("../image/transporteimg.jpg") center/cover no-repeat;
    padding: 120px 20px;
    color: #fff;
}

.banner-content {
    display: flex;
    align-items: center;
    min-height: 350px;
}

.banner-text {
    max-width: 600px;
}

.badge {
    font-family: var(--secundary-font-family);
    display: inline-block;
    background: #fff;
    color: var(--terciary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.banner-text h1 {
    font-family: var(--secundary-font-family);
    font-size: 40px;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: var(--text-font-size);
    margin-bottom: 30px;
    font-family: var(--primary-font-family);
}

.btn-transport {
    background-color: #1fad53;
    color: #fff;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
    font-family: var(--primary-font-family);
    text-decoration: none;
    transition: 0.3s;
}

.btn-transport:hover {
    background-color: #157237;
}

.transport-process {
    padding: 90px 20px;
    background: #f4f6f8;
}

.transport-process h2 {
    text-align: center;
    font-size: var(--title-font-size);
    color: var(--terciary-color);
    margin-bottom: 60px;
    font-family: var(--secundary-font-family);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.step span {
    font-size: 40px;
    font-weight: 700;
    color: var(--fourth-color);
    display: block;
    margin-bottom: 10px;
    font-family: var(--secundary-font-family);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--terciary-color);
    font-family: var(--secundary-font-family);
}

.step p {
    font-family: var(--primary-font-family);
}

.transport-highlight {
    padding: 70px 20px;
    background: var(--terciary-color);
    color: #fff;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-item h3 {
    font-family: var(--secundary-font-family);
    font-size: 22px;
    margin-bottom: 10px;
}

.highlight-item p {
    font-family: var(--primary-font-family);
}

.transport-cargo {
    padding: 90px 20px;
    background: var(--secundary-color);
}

.transport-cargo h2 {
    text-align: center;
    color: var(--terciary-color);
    margin-bottom: 40px;
    font-size: var(--title-font-size);
    font-family: var(--secundary-font-family);
}

.cargo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cargo-item {
    background: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: var(--primary-font-family);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.3);
    min-width: 240px;
    text-align: center;
}

.cargo-item:hover {
    background: var(--terciary-color);
    color: #fff;
    transform: translateY(-5px);
}

.transport-cta-alt {
    background: linear-gradient(
        135deg,
        var(--fourth-color),
        var(--terciary-color)
    );
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.transport-cta-itens {
    padding: 15px;
}

.transport-cta-itens h2 {
    font-family: var(--secundary-font-family);
    font-size: var(--title-font-size);
}

.transport-cta-itens p {
    padding-bottom: 50px;
    font-size: var(--text-font-size);
    font-family: var(--primary-font-family);
}

/*PÁGINA DE CONTATO */
.contact-banner {
    background: linear-gradient(
        rgba(0, 38, 77, 0.9),
        rgba(0, 38, 77, 0.9)
    ),
    url("../image/contato.jpg") center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.contact-banner h1 {
    font-family: var(--secundary-font-family);
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: var(--text-font-size);
    font-family: var(--primary-font-family);
}

.contact-section {
    padding: 90px 20px;
    background: var(--secundary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: var(--title-font-size);
    color: var(--terciary-color);
    margin-bottom: 20px;
    font-family: var(--secundary-font-family);
}

.contact-info p {
    font-size: var(--text-font-size);
    margin-bottom: 25px;
    font-family: var(--primary-font-family);
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    font-size: var(--text-font-size);
    font-family: var(--secundary-font-family);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.4);
}

.redes-sociais ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.redes-sociais ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.redes-sociais ul li a{
    text-decoration: none;
    color: var(--primary-color-text);
    display: flex;
    align-items: center;
}

.redes-sociais ul li a:hover {
    text-decoration: underline;
}

.redes-sociais ul li img {
    max-width: 30px;
    margin-right: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    font-family: var(--primary-font-family);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: var(--primary-font-family);
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terciary-color);
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* GERAL */

.whatsapp-fluton {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 30px;
    background-color: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    width: 100%;
    height: auto;
    background-color: var(--primary-color-text);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.text-footer a{
    color: var(--secundary-color);
    font-family: var(--primary-font-family);
    text-decoration: none;
}

.text-footer a:hover {
    text-decoration: underline;
}

/*RESPONSIVIDADE DO SITE */
@media screen and (max-width:850px) {
    .menu-mobile {
        display: flex;
        margin-right: 30px;
    }
    .menu {
        display: none;
    }
    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 18px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        order: -1;
    }
    .logo img {
        width: 130px;
    }
    .about-company-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-company-image {
        order: -1;
    }
    .about-hero h1 {
        font-size: 34px;
    }
    .banner-text h1 {
        font-size: 32px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }
}

@media screen and (max-width:450px) {
    .logo img {
        width: 180px;
    }
    .text-footer {
        text-align: center;
    }
    .logo img {
        width: 120px;
    }
    .menu-mobile ul { 
        top: 128px;
    }
}