/* DESIGN SYSTEM & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #141414;
    overflow-x: hidden;
}

/* NAVBAR HEADER */
.navbar {
    background-color: #ffffff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 35px;
}

.logo-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text span {
    color: #76bc21;
}

.logo-sub {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #666;
    margin-top: 2px;
}

.nav-links a {
    text-decoration: none;
    color: #141414;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin-left: 25px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #76bc21;
}

/* MASTER HERO BLOCK BLOCK (ASPAS ASSIMÉTRICAS) */
.master-hero {
    margin-top: 65px;
    position: relative;
    background-color: #ffffff;
    min-height: 580px;
    border-bottom: 5px solid #141414;
}

/* Fundo Escuro inclinado do mockup */
.hero-bg-split {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: #1c1c1c;
    z-index: 1;
}

/* Listra Verde Dinâmica */
.hero-stripe {
    position: absolute;
    top: 0;
    left: 55%;
    width: 25px;
    height: 100%;
    background-color: #76bc21;
    transform: skewX(-15deg);
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 580px;
    z-index: 3;
}

/* Caminhão flutuando na esquerda */
.hero-truck-image {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 52%;
    z-index: 4;
}

.hero-truck-image img {
    width: 100%;
    object-fit: contain;
}

/* Badge de texto colada em cima da caçamba do caminhão */
.truck-slogan-badge {
    position: absolute;
    top: 38%;
    left: 45%;
    background: rgba(20, 20, 20, 0.85);
    padding: 8px 15px;
    border-left: 3px solid #76bc21;
    color: #ffffff;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
}

.truck-slogan-badge strong { color: #ffffff; }
.truck-slogan-badge span { color: #76bc21; }

/* Bloco Slogan Direita Superior */
.hero-slogan-block {
    position: absolute;
    top: 80px;
    right: 40px;
    text-align: right;
    color: #ffffff;
    z-index: 4;
    width: 40%;
}

.slogan-main {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
}

.slogan-delivered {
    font-size: 50px;
    color: #76bc21;
    font-weight: 900;
    margin-top: 5px;
}

/* Bloco do Mapa Okanagan encaixado no canto inferior direito */
.okanagan-map-block {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 40%;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 5;
}

.okanagan-map-block h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}

.okanagan-map-block h4 {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-container {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pins {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
}

.map-pins .pin {
    background: rgba(255,255,255,0.9);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    border: 1px solid #76bc21;
}

/* TWO-COLUMN GRID CONTENT SECTION */
.content-grid-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* COLUNA ESQUERDA - EXCELÊNCIA OPERACIONAL */
.left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ops-header h2 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 15px;
}

.ops-header p {
    color: #444;
    font-size: 15px;
    margin-bottom: 15px;
    max-width: 550px;
}

.ops-header .ops-highlight {
    font-weight: 700;
    color: #141414;
}

.btn-green {
    display: inline-block;
    background-color: #76bc21;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-green:hover { background-color: #5fa316; }

/* Fotos Lado a Lado / Sobrepostas na base esquerda */
.split-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-top: 40px;
    align-items: flex-end;
}

.img-box img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: block;
}

/* COLUNA DIREITA - REVIEWS E CAMPO POSTAL */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reviews-section h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.review-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.review-meta .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.review-meta strong { color: #141414; }
.review-meta span { color: #76bc21; font-weight: 600; }

.review-img-thumb-desc {
    font-size: 10px;
    color: #666;
    margin-bottom: 8px;
}

.review-thumb {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 3px;
}

/* Caixa de validação postal do Okanagan */
.coverage-box {
    background-color: #141414;
    color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
}

.coverage-box h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 800;
}

.coverage-box p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}

.coverage-form {
    display: flex;
    gap: 10px;
}

.coverage-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
}

.coverage-form button {
    padding: 0 25px;
    font-weight: 700;
}

/* FOOTER PREMIUM COM CERTIFICAÇÕES */
.footer {
    background-color: #0b0b0b;
    color: #ffffff;
    padding: 50px 0 20px 0;
    border-top: 4px solid #141414;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col a:hover { color: #76bc21; }

.footer-right-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.badges-row {
    display: flex;
    gap: 15px;
}

.cert-badge {
    border: 1px solid #333;
    background: #141414;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
    color: #ccc;
}

.footer-bottom-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.phone-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #76bc21;
}

.copyright {
    font-size: 12px;
    color: #555;
}

/* RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS */
@media (max-width: 1024px) {
    .hero-bg-split, .hero-stripe { display: none; }
    .master-hero { background-color: #141414; min-height: auto; padding-bottom: 40px; }
    .hero-container { height: auto; display: flex; flex-direction: column; padding: 20px; }
    .hero-truck-image, .hero-slogan-block, .okanagan-map-block { position: static; width: 100%; text-align: center; margin-bottom: 20px; }
    .slogan-main, .slogan-delivered { text-align: center; }
    .truck-slogan-badge { display: none; }
    .content-container { grid-template-columns: 1fr; gap: 40px; }
    .reviews-list { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; gap: 40px; align-items: center; text-align: center; }
    .footer-links { justify-content: center; width: 100%; }
    .footer-right-badges { align-items: center; width: 100%; }
    .footer-bottom-info { align-items: center; }
}