:root {
    --primary-blue: #004E97;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* Esconder barra de rolagem do site inteiro (Desktop e Mobile) */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Opera */
}

/* Garante que o scroll continue funcionando */
body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

/*--- Navbar ---*/
/*--- Navbar ---*/
.navbar {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 65px;
    background-color: var(--primary-blue);
    
    /* Linha branca sólida de 2px conforme a imagem */
    border-bottom: 2px solid #FFFFFF; 
    
    /* Garante que a linha fique por cima de qualquer conteúdo */
    z-index: 9999; 
    display: flex; 
    align-items: center;
}

.container {
    max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}

/*--- Logo ---*/
.logo-container { width: 200px; display: flex; align-items: center; }
.logo-container img { height: 14px; width: auto; object-fit: contain; }

/*--- Nav Links Desktop ---*/
.nav-links-wrapper { flex: 1; display: flex; justify-content: center; height: 100%; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; height: 100%; }

.nav-link-item {
    text-decoration: none; color: var(--white); font-size: 13px;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; height: 100%;
}

/*--- Dropdown Desktop ---*/
.dropdown { position: relative; height: 100%; display: flex; align-items: center; }
/* Ajuste no Dropdown para ele "encostar" na linha branca */
.dropdown-content {
    position: absolute; 
    top: 63px; /* 65px da altura - 2px da borda */
    left: 50%; 
    transform: translateX(-50%) translateY(10px);
    width: 280px; 
    background: var(--white); 
    border-radius: 0 0 12px 12px;
    opacity: 0; 
    visibility: hidden; 
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 20px; text-decoration: none; color: var(--text-dark);
    font-size: 13px; font-weight: 600; border-bottom: 1px solid #f1f1f1;
}
.dropdown-item img { width: 45px; }

/*--- Botão Test Ride (O seu botão oficial) ---*/
.btn-wrapper { width: 200px; display: flex; justify-content: flex-end; }
.btn-test-ride {
    color: var(--white); text-decoration: none; font-size: 14px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    padding-bottom: 4px; border-bottom: 2px solid var(--white);
    transition: var(--transition); white-space: nowrap;
}

/*--- Mobile Menu (Branco Premium) ---*/
.menu-button { 
    display: none; background: none; border: none; 
    color: var(--white); cursor: pointer; z-index: 10001; padding: 10px;
}

.side-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--white); z-index: 10000; padding: 100px 40px;
    display: flex; flex-direction: column; gap: 10px;
    transform: translateY(-100%); transition: transform var(--transition);
    /* Esconder barra de rolagem */
    overflow-y: scroll; scrollbar-width: none; -ms-overflow-style: none;
}
.side-menu::-webkit-scrollbar { display: none; }
.side-menu.open { transform: translateY(0); }

.mobile-item {
    color: var(--text-dark); text-decoration: none; font-size: 26px;
    font-weight: 600; border-bottom: 1px solid #eee; padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center;
}

.mobile-submenu {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    display: flex; flex-direction: column; background: #f9f9f9;
}
.mobile-submenu.active { max-height: 500px; padding: 10px 0; }

.mobile-sub-link {
    color: #555; text-decoration: none; padding: 15px 20px;
    font-size: 18px; display: flex; align-items: center; justify-content: space-between;
}
.mobile-sub-link img { width: 50px; }

.mobile-footer-btn { padding: 40px 0; }
.dark-btn { color: var(--text-dark); text-decoration: none; font-size: 14px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    padding-bottom: 4px; border-bottom: 2px solid var(--text-dark);
    transition: var(--transition); white-space: nowrap; }

@media (max-width: 1024px) {
    .nav-links-wrapper, .btn-wrapper { display: none; }
    .menu-button { display: block; position: absolute; left: 15px; }
    .logo-container { width: 100%; justify-content: center; }
    .menu-button.active-toggle { color: var(--text-dark); }
}



/*--- Banner Slider Hero ---*/
.banner-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.banner-slider {
    height: 100%;
    width: 100%;
}

.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.banner-slide.active { opacity: 1; z-index: 1; }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    padding-top: 100px; /* Compensa a navbar */
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Setas */
.nav-arrows {
    position: absolute;
    top: 50%; width: 100%;
    display: flex; justify-content: space-between;
    padding: 0 30px; transform: translateY(-50%);
    z-index: 4;
}

.nav-arrows span {
    color: white; font-size: 30px; cursor: pointer;
    opacity: 0.5; transition: 0.3s;
}

.nav-arrows span:hover { opacity: 1; }

/* Barras de Navegação (Dots) */
.dots1 {
    position: absolute;
    bottom: 50px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 40px;
    z-index: 4;
}

.dot1 {
    cursor: pointer;
    text-align: left;
    width: 150px;
}

.dot1 p {
    color: white; font-size: 12px; font-weight: 700;
    margin-bottom: 8px; opacity: 0.6; transition: 0.3s;
}

.dot1-bar {
    display: block;
    width: 100%; height: 3px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.dot1.active p { opacity: 1; }
.dot1.active .dot1-bar::after {
    content: "";
    position: absolute; left: 0; top: 0;
    height: 100%; width: 100%;
    background: var(--white);
    animation: slideProgress 5s linear forwards;
}

@keyframes slideProgress {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 28px; }
    .dots1 { gap: 15px; width: 90%; }
    .dot1 { width: auto; flex: 1; }
}


/*--- Botão TEST RIDE (Ajuste Final conforme imagem) ---*/
.btn-test-ride {
    color: var(--white);
    text-decoration: none;
    font-size: 18px; /* Um pouco maior */
    font-weight: 900; /* Peso Black */
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--white); /* Linha branca colada */
    transition: var(--transition);
}

/*--- Seção Manifesto Grid (Estilo Imagem 2) ---*/
.manifesto-premium {
    background-color: #D1D1D1; /* Cinza da imagem */
    padding: 120px 20px;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Divide em duas colunas */
    gap: 60px;
    align-items: center;
    max-width: 1100px !important;
    margin: 0 auto;
}

/* Coluna do Título */
.manifesto-title-area {
    text-align: center; /* Centraliza o empilhamento dentro da coluna */
}

.m-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.9;
    color: #000;
    margin: 0;
    letter-spacing: -2px;
}

.m-divider {
    font-size: 40px;
    font-weight: 900;
    margin: 10px 0;
}

/* Coluna do Texto */
.manifesto-text-area p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    text-align: left; /* Alinhamento conforme a imagem */
}

/* Responsivo para Celular */
@media (max-width: 991px) {
    .manifesto-grid {
        grid-template-columns: 1fr; /* Volta para uma coluna no mobile */
        text-align: center;
        gap: 40px;
    }
    .manifesto-text-area p {
        text-align: center;
    }
    .m-title { font-size: 48px; }
}


/* Container Principal */
.nav-container {
    background-color: #f8f8f8;
    padding: 100px 0;
    text-align: center;
}

.model-line-subtitle { font-size: 24px; font-weight: 800; color: #999; margin-bottom: 10px; }
.model-name-main { font-size: 60px; font-weight: 900; color: #000; letter-spacing: -2px; margin-bottom: 50px; }

/* Slideshow Wrapper */
.slideshow-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slide {
    display: none; /* Esconde todos por padrão */
    animation: fadeIn 0.8s ease;
}

.slide.active {
    display: block; /* Mostra apenas o ativo */
}

.slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
}

.slide-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.slide-content { text-align: left; }

.slide-title { font-size: 32px; font-weight: 900; color: #000; margin-bottom: 20px; line-height: 1.1; }

.slide-description { font-size: 17px; color: #444; line-height: 1.6; margin-bottom: 30px; }

/* Botão EXPLORE */
.explore-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}
.explore-btn:hover { background: var(--primary-blue); transform: translateY(-3px); }

/* Controles */
.nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.nav-button {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    padding: 10px;
    user-select: none;
}

.dot {
    height: 4px;
    width: 30px;
    background-color: #bbb;
    display: inline-block;
    margin: 0 5px;
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-blue);
    width: 50px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
    .slide-grid { grid-template-columns: 1fr; text-align: center; }
    .slide-content { text-align: center; }
}


.premium-location-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Inter', Arial, sans-serif;
}

.main-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide meio a meio */
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cabeçalho Esquerdo */
.loc-header-minimal {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.brand-logo { width: 100px; height: auto; }

.brand-address h1 { font-size: 26px; font-weight: 900; text-transform: uppercase; margin-bottom: 5px; }
.brand-address p { font-size: 14px; color: #444; margin: 2px 0; }
.link-maps { font-weight: 800; color: #000; text-decoration: underline; font-size: 14px; }

.map-frame {
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Conteúdo Direito */
.main-services-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.services-dual-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-block h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
}

.service-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.highlight-call {
    display: block;
    margin-top: 15px;
    font-weight: 900;
    font-size: 13px;
}

.section-line {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 40px 0;
}

/* Responsivo para Tablet/Celular */
@media (max-width: 1024px) {
    .main-layout-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .services-dual-column {
        grid-template-columns: 1fr;
    }
}




.custom-footer {
    background-color: #000000; /* Fundo Preto */
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: 'Inter', sans-serif; /* Ou Arial como fallback */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-links li a:hover {
    opacity: 0.7;
}

/* Divisor Vertical igual ao da imagem */
.vertical-line {
    width: 1.5px;
    background-color: #444; /* Cor suave para o divisor no preto */
    height: 140px;
    margin: 0 60px;
}

/* Estilo da Newsletter */
.newsletter-col {
    flex: 1.5;
}

.newsletter-input-wrapper input {
    width: 100%;
    background-color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px; /* Formato pílula */
    font-size: 14px;
    color: #333;
    outline: none;
    margin-bottom: 20px;
    text-align: center;
}

.subscribe-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
}

/* Rodapé Inferior */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* Estiliza o parágrafo de copyright */
.copyright {
    color: #ffffff;
    font-size: 13px;
    opacity: 0.8; /* Deixa o texto levemente mais suave */
}

/* Estiliza especificamente o link dentro do copyright */
.copyright a {
    color: #ffffff; 
    text-decoration: none; /* Remove o sublinhado padrão */
    font-weight: bold;
    transition: 0.3s;
}

/* Efeito ao passar o mouse */
.copyright a:hover {
    opacity: 1;
    color: #004E97; /* Opcional: uma cor para o coração ou para o link no hover */
}

.icon-circle {
    background-color: #ffffff; /* Círculo branco igual aos ícones da imagem original */
    color: #000000; /* Ícone preto */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.icon-circle:hover {
    transform: scale(1.1);
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    .vertical-line {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}






/* ==========================================================
   CSS LINHAS VEICULOS
   ========================================================== */

/* ESTRUTURA BASE (Premium UI) */
.banner-w3l-main-base {
    position: relative;
    min-height: 800px; /* Altura imponente conforme solicitado */
    width: 100%;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efeito Parallax */
    overflow: hidden;
    z-index: 1;
}

/* OVERLAY DARK (O segredo do visual Premium) */
.banner-overlay {
    position: absolute;
    inset: 0;
    /* Gradiente que escurece as bordas para destacar o texto no centro */
    background: radial-gradient(circle, rgba(3, 15, 39, 0.5) 0%, rgba(3, 15, 39, 0.85) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
}

/* CONTEÚDO CENTRAL */
.banner-content-premium {
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.line-logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1); /* Força a logo a ficar branca */
}

.premium-headline {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.premium-headline span {
    font-weight: 300;
    opacity: 0.8;
}

/* BOTÕES E AÇÕES */
.premium-actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.btn-premium-pill {
    background: #ffffff;
    color: #000000;
    padding: 15px 35px;
    border-radius: 5px; /* Formato pill idêntico ao footer */
    font-weight: 900;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    border: 2px solid #ffffff;
}

.btn-premium-pill:hover {
    background: transparent;
    color: #ffffff;
}

.link-explore-premium {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.link-explore-premium:hover {
    border-bottom: 2px solid #ffffff;
}

.vertical-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
}


/* ==========================================================================
   BIBLIOTECA DE IMAGENS DE BANNER
   ========================================================================== */
.img-general-xp-1000-my24-b6c9-pillar-02-carousel-01-lg { background-image: url(img/banner/general-xp-1000-my24-b6c9-pillar-02-carousel-01-lg.jpg); }
.img-rzr-my25-4b61-shopping-tools-compare-lg { background-image: url(img/banner/rzr-my25-4b61-shopping-tools-compare-lg.jpg); }
.img-rgr-family-my25-4b61-discover-04-xxs { background-image: url(img/banner/rgr-family-my25-4b61-discover-04-xxs.jpg); }
.img-sportsman-570-my25-4b61-pillar-01-section-5-lg { background-image: url(img/banner/sportsman-570-my25-4b61-pillar-01-section-5-lg.jpg); }
.img-WebMedium_PNG-2024-orv-xpeditio { background-image: url(img/banner/WebMedium_PNG-2024-orv-xpedition-adv-northstar-orange-rust-image-detail-UTW22-0062.png); }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .banner-w3l-main-base { min-height: 600px; background-attachment: scroll; }
    .premium-headline { font-size: 36px; }
    .premium-actions-row { flex-direction: column; gap: 20px; }
    .vertical-divider { display: none; }
}



/* Seção Geral */
.section-about-premium {
    background-color: #ffffff; /* Fundo Preto solicitado */
    padding: 120px 0;
    color: #272727;
    font-family: 'Inter', sans-serif;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Coluna da Logo */
.about-brand-visual {
    flex: 1;
    text-align: center;
}

.about-logo {
    max-width: 320px;
  
    opacity: 0.9;
}

/* Coluna de Texto */
.about-content-text {
    flex: 1.2;
}

.about-headline {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #272727;
}

.divider-small {
    width: 60px;
    height: 4px;
    background-color: #272727;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #272727; /* Cinza suave para leitura premium */
    font-weight: 400;
}

.about-description strong {
    color: #272727;
    font-weight: 700;
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .divider-small {
        margin: 0 auto 30px;
    }
    
    .about-headline {
        font-size: 28px;
    }
}


.section-features-premium-v2 {
    background-color: #ffffff;
    padding: 100px 5%;
}

.main-features-wrapper {
    display: flex;
    gap: 80px; /* Espaço generoso para o título não colar */
    align-items: flex-start;
}

/* Sidebar do Título */
.features-sidebar {
    flex: 0 0 350px; /* Aumentei um pouco a largura para garantir o respiro */
    position: relative; /* Mudado de sticky para relative */
    padding-top: 10px; /* Alinhamento fino com o topo da primeira imagem */
}

.side-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    color: #000;
    margin-bottom: 25px;
}

.side-line {
    width: 60px;
    height: 6px;
    background: #000;
}

/* Grid de Conteúdo */
.features-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    flex: 1;
}

.feature-item-static {
    display: flex;
    flex-direction: column;
}


/* Tipografia */
.f-category {
    font-size: 11px;
    font-weight: 800;
    color: #999;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.f-title {
    font-size: 22px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.f-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}




/* --- Imagens com Pontas Diagonais Arredondadas (Ajuste Aqui) --- */
.f-image-box-diagonal {
    width: 100%;
    margin-bottom: 25px;
    
    
    /* Configuração dos cantos: 
       Topo-Esquerda: 20px
       Topo-Direita: 0 (Canto Vivo)
       Baixo-Direita: 20px
       Baixo-Esquerda: 0 (Canto Vivo) */
    border-radius: 20px 0 20px 0;
    
    overflow: hidden; /* Garante que a imagem siga a curvatura da borda */
}

.f-image-box-diagonal img {
  width: 100%;
    height: auto;
    display: block;
}




/* Ajuste para telas menores - CORRIGIDO */
@media (max-width: 1200px) {
    .main-features-wrapper { 
        flex-direction: column; 
        gap: 40px; 
        padding: 0;
        width: 100%;
    }

    .features-content-grid { 
        grid-template-columns: repeat(2, 1fr); /* No tablet mantém 2 colunas */
    }

    .features-sidebar { 
        flex: none;       /* Remove o 350px fixo */
        width: 100%;      /* Ocupa a largura total */
        max-width: 100%;  /* Impede de sair da página */
        position: static; 
        text-align: center;
        padding: 0 15px;  /* Margem interna para o texto não colar no vidro */
    }

    .side-title {
        font-size: 32px; /* Reduz um pouco o tamanho */
        width: 100%;
        margin-bottom: 15px;
    }

    .side-line { 
        margin: 0 auto 25px auto; 
    }
}

@media (max-width: 768px) {
    .features-content-grid { 
        grid-template-columns: 1fr; /* No celular volta para 1 coluna */
        padding: 0 15px;
    }
    
    .side-title {
        font-size: 28px; /* Tamanho ideal para leitura em celular */
    }
}


/* ==========================================================================
   BIBLIOTECA DE IMAGENS PREMIUM
   ========================================================================== */
.img-general-1000 { background-image: url(img/banner/general-my25-4b61-homepage-promo-block-lg.jpg); }
.img-rzr-pro-r-my25-4b61-pillar-02-5-lg { background-image: url(img/banner/rzr-pro-r-my25-4b61-pillar-02-5-lg.jpg); }
.img-WebLarge_JPG-2022-ranger-sp570-sage-green-image-lifestyle_SIX6602_12170 { background-image: url(img/banner/WebLarge_JPG-2022-ranger-sp570-sage-green-image-lifestyle_SIX6602_12170.jpg); }
.img-sportman-my25-4fc6-discover-next-generation-lg { background-image: url(img/banner/sportman-my25-4fc6-discover-next-generation-lg.jpg); }
.img-polaris-xpedition-xp-my24-8jl1-gallery-03 { background-image: url(img/banner/polaris-xpedition-xp-my24-8jl1-gallery-03.jpg); }


/* Ajuste do Botão (Efeito Hover) */
.explore-btn:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Se quiser usar imagens em grid abaixo dessa seção com as pontas redondas: */
.img-premium-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    /* Diagonal: Superior Esquerda e Inferior Direita */
    border-radius: 30px 0 30px 0; 
    border: 1px solid rgba(255,255,255,0.1);
}



.secao-premium-polaris {
    background: #fff;
    padding: 80px 4%;
}

.container-premium {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
}

/* Título Geral XP na Esquerda */
.coluna-titulo-fixo {
    min-width: 250px;
}
.tag-linha { color: #999; font-weight: 800; font-size: 11px; letter-spacing: 2px; display: block; }
.titulo-principal { color: #000; font-weight: 900; font-size: 45px; line-height: 0.9; margin-top: 10px; text-transform: uppercase; }

/* Área do Slider */
.coluna-slider-premium {
    flex-grow: 1;
}

.premium-item {
    display: none;
}

.premium-item.active {
    display: block;
    animation: fadeSimple 0.5s ease;
}

/* O Segredo: Grid para alinhar Carro e Texto */
.grid-conteudo-carro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Carro maior, texto menor ao lado */
    align-items: center;
    gap: 40px;
}

.area-imagem img {
    width: 100%;
    height: auto;
    max-width: 750px;
}

/* Textos */
.nome-modelo-premium { font-weight: 900; font-size: 32px; text-transform: uppercase; line-height: 1.1; margin-bottom: 20px; }
.descricao-premium { font-size: 16px; color: #444; line-height: 1.6; margin-bottom: 30px; }

/* Botões */
.botoes-premium { display: flex; gap: 15px; }
.btn-preto { background: #000; color: #fff !important; padding: 18px 30px; font-weight: 900; text-decoration: none; font-size: 12px; text-transform: uppercase; white-space: nowrap; }
.btn-seta { background: transparent; border: 2px solid #000; padding: 15px 25px; font-weight: 900; cursor: pointer; font-size: 12px; white-space: nowrap; }

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 1100px) {
    .grid-conteudo-carro { grid-template-columns: 1fr; } /* No tablet/celular, empilha */
    .container-premium { flex-direction: column; }
    .titulo-principal { font-size: 35px; margin-bottom: 30px; }
    .area-imagem { text-align: center; }
}

@keyframes fadeSimple { from { opacity: 0; } to { opacity: 1; } }