@import url('base.css');
/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'montserrat', sans-serif;
}

:root {
--blue-primary: #1E3A8A;
    --blue-secondary: #3B82F6;
    --blue-light: #93C5FD;
    --blue-lighter: #DBEAFE;
    --gray-dark: #1F2937;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --accent: #2563EB;
    --text-color: #111827;
    --background-color: #FFFFFF;
--font-family: 'montserrat', sans-serif;
}

/* FONTE */
body {
    font-family: var(--font-family);
    background-color: #e8e9e9;
    color: #1a1a1a;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #eeeeee;
    color: white;
    padding: 18px 0 5 0;
    width: 100%;
    position: fixed;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    width: 150px;
    height: auto;
}

.menu a {
    color: #00b4ff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    transition: 0.3s;
    font-family: var(--font-family);
    font-weight: 500;
}

.menu a:hover {
    color: #1E3A8A;
}

.btn-header button {
    background: #00b4ff;
    border: none;
    padding: 10px 18px;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 500;
}

.btn-header button:hover {
    background: #0095d4;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #0b1c2c, #142f47);
    color: white;
    padding: 70px 0;
    background-image: url('img/shipyard-cargo-container-sea-port-freight-forwardi-2026-03-16-02-34-07-utc.jpg');
    background-size: cover;
    background-position: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.hero-text {
    width: 50%;
}
 
.hero-text h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #ffffff;
}
 
.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #d6e2f0;
}
 
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
 
.hero-buttons a {
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}
 
.hero-buttons a:first-child {
    background: #00b4ff;
    color: white;
}
 
.hero-buttons a:first-child:hover {
    background: #0095d4;
}
 
.btn-outline {
    background: white !important;
    border: 2px solid #00b4ff !important;
    color: #00b4ff !important;
}
 
.btn-outline:hover {
    background: #f0faff !important;
}
 
.hero-image img {
    width: 600px;
    border-radius: 20px;
    margin-bottom: -350px;
}
 
/* ─── SERVIÇOS ─── */
.servicos {
    background: #e8e9e9;
    padding: 70px 0;
    margin-top: 15px;
}
 
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    margin: auto;
    border-radius: 12px;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin: 20px 20px 10px -3px;
    font-weight: 700;
}

.card p {
    font-size: 14px;
    color: #555;
   line-height: 1.7;
    text-align: justify;
    word-spacing: -1px;
    hyphens: auto;
    word-break: break-word;
}
 
/* ─── SOBRE PREVIEW ─── */
.sobre-preview {
    background: white;
    padding: 70px 0;
}
 
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
 
.sobre-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
 
.sobre-texto h1 {
    font-size: 40px;
    color: #1E3A8A;
    margin-bottom: 16px;
    font-weight: 700;
    margin-top: -100px;
}
 
.sobre-texto p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
}
 
.sobre-texto a {
    display: inline-block;
    margin-top: 10px;
    background: #00b4ff;
    color: white;
    padding: 11px 22px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
 
.sobre-texto a:hover { background: #0095d4; }
 
/* ─── PORQUE ESCOLHER-NOS ─── */
.porque-section {
    background: white;
    padding: 70px 0;
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.porque-card {
    background: #e8e9e9;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid #00b4ff;
}

.porque-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.porque-icon {
    width: 60px;
    height: 60px;
    background: #00b4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.porque-icon svg {
    width: 28px;
    height: 28px;
}

.porque-card h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin-bottom: 12px;
    font-weight: 700;
}

.porque-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
    word-spacing: -1px;
    hyphens: auto;
    word-break: break-word;
}
 
/* ─── FAQ ─── */
.faq-section {
    background: #e8e9e9;
    padding: 70px 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1E3A8A;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-brand .logo{
    width: 150px;
}
 
/* ─── RESPONSIVO ─── */
@media (max-width: 1024px) {
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { grid-template-columns: 1fr; gap: 130px; }
    .porque-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 768px) {
    .hero .container { flex-direction: column; gap: 30px; margin-top: 80px; }
    .hero-text { width: 100%; }
    .hero-image img { width: 100%; display: none; }
    .hero-text h1 { font-size: 28px; }
    .porque-grid { grid-template-columns: 1fr; }
}

/* ── 1280px ── */
@media (max-width: 1280px) {
    .hero-image img { width: 420px; }
    .hero-text h1 { font-size: 38px; }
    .servicos-grid { grid-template-columns: repeat(4, 1fr); }
}
 
/* ── 1024px ── */
@media (max-width: 1024px) {
    .hero .container { gap: 30px; }
    .hero-text { width: 55%; }
    .hero-text h1 { font-size: 32px; }
    .hero-image img { width: 360px; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .porque-grid { grid-template-columns: repeat(2, 1fr); }
    .sobre-grid { gap: 130px; }
}
 
/* ── 768px ── */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero .container {
        flex-direction: column;
        padding-top: 20px;
        gap: 32px;
        text-align: center;
    }
    .hero-text { width: 100%; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 15px; }
    .hero-buttons { justify-content: center; }
    .hero-image { width: 100%; }
    .hero-image img { width: 100%; max-width: 480px; margin: 0 auto; }
 
    .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 110px; }
    .porque-grid { grid-template-columns: 1fr; }
 
    .sobre-texto h2 { font-size: 22px; }

    .card-image { height: 150px; }

}
 
/* ── 600px ── */
@media (max-width: 600px) {
    .hero { padding: 90px 0 50px; }
    .hero-text h1 { font-size: 24px; }
    .hero-text p { font-size: 14px; }
    .servicos-grid { grid-template-columns: 1fr; }
    .hero-buttons a { width: 100%; text-align: center; }

    .faq-question { font-size: 14px; padding: 18px 20px; }
    .faq-answer p { font-size: 13px; }
}
 
/* ── 480px ── */
@media (max-width: 480px) {
    .hero-text h1 { font-size: 22px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; }
    .porque-card { padding: 25px 20px; }
    .sobre-texto h2 { font-size: 20px; }
}
 
/* ── 360px ── */
@media (max-width: 360px) {
    .hero-text h1 { font-size: 19px; }
    .hero-text p { font-size: 13px; }
}