:root {
    --primary-green: #004d40;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
}
@font-face {
    font-family: 'Dodger';
    src: url('fonts/Dodgv2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--black);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;

}

.hero-overlay {
    background: rgba(0, 77, 64, 0.7);
    padding: 2rem;
    border-radius: 10px;
}
.brand-font {
    font-family: 'Dodger', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--black);
}

.section {
    padding: 4rem 2rem;
    background: var(--gray);
}

.section:nth-child(even) {
    background: var(--white);
}

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

.section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.section-image {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--primary-green);
    border-radius: 5px;
}

.contact-form button {
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: var(--black);
}

footer {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .section h2 {
        font-size: 2rem;
    }
}
.image-row {
    display: flex;
    gap: 20px;              /* espaço entre as imagens */
    justify-content: center; /* centraliza */
}

.image-row img {
    width: 48%;             /* duas imagens lado a lado */
    height: auto;

}
.image-row {
    background: linear-gradient(
        rgba(0,77,64,0.85),
        rgba(0,77,64,0.85)
    ), url("images/ship.jpeg") center/cover;
    color: white;
}
.image-row2 {
    display: flex;
    gap: 20px;              /* espaço entre as imagens */
    justify-content: center; /* centraliza */
}

.image-row2 img {
    width: 48%;             /* duas imagens lado a lado */
    height: auto;
}
.image-row2 {
    background: linear-gradient(
        rgba(0,77,64,0.85),
        rgba(0,77,64,0.85)
    ), url("images/bg.jpeg") center/cover;
    color: white;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}
.section-highlight {
    background: linear-gradient(
        rgba(0,77,64,0.9),
        rgba(0,77,64,0.9)
    ), url("images/bg-quality.jpg") center/cover;
    color: white;
}

.quality-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.quality-box h2 {
    color: white;
}

.quality-text {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 1.8rem;
    text-align: center;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.section-contato {
    background: var(--gray);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.contato-info p {
    margin-bottom: 1rem;
}

.contato-cta {
    background: var(--primary-green);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.contato-cta h3 {
    margin-bottom: 1rem;
}

.contato-cta .cta-button {
    margin-top: 1.5rem;
    display: inline-block;
}
.section-suporte {
    background: linear-gradient(
        rgba(0,77,64,0.9),
        rgba(0,77,64,0.9)
    ), url("images/bg-suporte.jpg") center/cover;
    color: white;
}

.section.suporte {
    background: var(--primary-green) !important;
    color: white;
}
.suporte-intro {
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

.suporte-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.suporte-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease;
}

.suporte-card:hover {
    transform: translateY(-6px);
}

.suporte-card h3 {
    margin-bottom: 1rem;
}
.suporte {
    background: var(--primary-green);
    color: white;
}

.suporte h2 {
    color: white;
}

.suporte-intro {
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 3rem;
    font-size: 1.1rem;
}

.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.suporte-box {
    background: rgba(255,255,255,0.12);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.suporte-box:hover {
    transform: translateY(-6px);
}

.suporte-box h3 {
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.section.pmo {
    background: #0e2f2a;
    color: white;
}

.pmo-box {
    max-width: 900px;
    margin: auto;
    background: rgba(255,255,255,0.08);
    padding: 3rem;
    border-radius: 18px;
    text-align: center;
}

.section.pmo h2 {
    color: white;
    margin-bottom: 1.5rem;
}
.transporte-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 2rem;
}

.transporte-texto ul {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.transporte-texto li {
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.transporte-texto li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.transporte-imagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.transporte-imagens img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.transporte-imagens img:hover {
    transform: scale(1.04);
}

/* Responsivo */
@media (max-width: 900px) {
    .transporte-grid {
        grid-template-columns: 1fr;
    }

    .transporte-imagens {
        grid-template-columns: 1fr;
    }
}
.missao-visao {
    background: linear-gradient(135deg, #0b3d35, #062622);
    color: white;
}

.missao-visao .section-title {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: #a6f4d4;
    font-size: 1.4rem;
}

.mv-card p {
    line-height: 1.7;
}

/* Responsivo */
@media (max-width: 900px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}
/* POLÍTICA DA QUALIDADE – FIX DEFINITIVO */
.section.section-highlight {
    background: linear-gradient(135deg, #0b3d35, #062622) !important;
    color: white !important;
}

.section.section-highlight h2 {
    color: #a6f4d4;
}

.section.section-highlight .quality-text {
    color: white;
}

/* Caixa central */
.quality-box {
    max-width: 900px;
    margin: auto;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}
/* HERO – TOPO INSTITUCIONAL */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 20, 18, 0.92),
        rgba(0, 77, 64, 0.85)
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    color: white;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a6f4d4;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    font-weight: 400;
    font-size: 2.2rem;
    display: block;
}

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-outline {
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: white;
    color: var(--primary-green);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero h1 span {
        font-size: 1.6rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 20, 18, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 48px;
}

/* Menu principal */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #a6f4d4;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Ações */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    background: var(--primary-green);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #062622;
}

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

.hamburger span {
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
}

/* Responsivo */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}
/* ===== MENU MOBILE ===== */

@media (max-width: 900px) {

    .nav {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 20, 18, 0.97);
        backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 2rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.1rem;
        color: white;
    }

    .hamburger {
        display: flex;
    }
}
