:root {
	--rodolider-blue: #0045A5;
	--rodolider-red: #EE1C25;
	--light-bg: #F8F9FA;
	--text-dark: #222;
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--text-dark);
	background-color: #fff;
}

h2 {
	color: var(--rodolider-blue);
}

/* HEADER */

/* --- NOVO HEADER MODERNO --- */
.top-bar { 
	background: var(--rodolider-blue); 
	color: rgba(255,255,255,0.9); 
	font-size: 0.8rem; 
	padding: 8px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
	padding: 15px 0;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px); /* Efeito de vidro moderno */
}

.navbar-brand {
	font-size: 1.4rem;
	letter-spacing: -0.5px;
}

.nav-link { 
	font-weight: 600; 
	color: #444 !important; 
	text-transform: uppercase; 
	font-size: 0.85rem; 
	padding: 10px 15px !important;
	position: relative;
	transition: 0.3s;
}

/* Linha animada ao passar o mouse */
.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 5px;
	left: 15px;
	background-color: var(--rodolider-red);
	transition: 0.3s;
}

.nav-link:hover::after {
	width: calc(100% - 30px);
}

.nav-link:hover { 
	color: var(--rodolider-blue) !important; 
}

/* Botão de Destaque no Menu */
.btn-nav-highlight {
	background-color: var(--rodolider-red);
	color: white !important;
	border-radius: 50px;
	padding: 10px 25px !important;
	margin-left: 15px;
	box-shadow: 0 4px 15px rgba(238, 28, 37, 0.3);
}

.btn-nav-highlight:hover {
	background-color: var(--rodolider-blue);
	color: white !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 69, 165, 0.3);
}

.btn-nav-highlight i {
	margin-right: 2px;
}

.btn-nav-highlight::after { display: none; } /* Remove a linha do hover neste botão */

@media (max-width: 991px) {
	.btn-nav-highlight { margin-left: 0; margin-top: 10px; text-align: center; }
}




/* --- ESTILO DO CARROSSEL RODOLIDER --- */
.carousel-item {
	height: 70vh;
	min-height: 500px;
	background-color: #000;
}

.carousel-item img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	opacity: 0.6;
}

/* Gradiente para garantir leitura independente da foto */
.carousel-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%);
}

.carousel-caption {
	bottom: 20%;
	z-index: 5;
	text-align: left; /* Alinhamento moderno à esquerda */
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.carousel-caption h1 {
	font-size: 3.8rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 15px;
	animation: fadeInUp 0.8s ease-out;
	text-align: center;
}

.carousel-caption p {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 25px;
	color: rgba(255,255,255,0.9);
	animation: fadeInUp 1s ease-out;
	text-align: center;
}

.badge-frota {
	background: var(--rodolider-red);
	color: white;
	padding: 5px 15px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9rem;
	display: inline-block;
	margin-bottom: 15px;
	border-radius: 4px;
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Ajustes Mobile */
@media (max-width: 768px) {
	.carousel-item { height: 60vh; }
	.carousel-caption { left: 5%; bottom: 15%; text-align: center; }
	.carousel-caption h1 { font-size: 2.2rem; }
	.carousel-caption p { font-size: 1rem; }
}
		




/* Efeito da Busca flutuando sobre o Slider */
.search-wrapper {
	position: relative;
	margin-top: -60px; /* Faz a caixa subir para cima do banner */
	z-index: 20;
}
.search-container {
	background: white;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Cards de Veículos */
.card-veiculo {
	border: none;
	border-radius: 12px;
	transition: transform 0.3s, box-shadow 0.3s;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.card-veiculo:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.badge-price {
	background-color: var(--rodolider-blue);
	color: white;
	padding: 5px 15px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 1.1rem;
}
.btn-ver-mais {
	background-color: var(--rodolider-red);
	border: none;
	color: white;
	font-weight: bold;
	transition: 0.3s;
}
.btn-ver-mais:hover { background-color: #c1171e; color: white; }

/* --- SECTION DIFERENCIAIS COM BOXES --- */
.benefits-section {
	background-color: #fcfcfc;
	padding: 80px 0;
}

.benefit-card {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 15px;
	border: 1px solid #eee;
	transition: all 0.4s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 69, 165, 0.1);
	border-color: rgba(0, 69, 165, 0.1);
}

/* Linha colorida discreta no topo do card no hover */
.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: var(--rodolider-red);
	transition: width 0.4s ease;
}

.benefit-card:hover::before {
	width: 100%;
}

.benefit-icon-wrapper {
	width: 80px;
	height: 80px;
	background: rgba(0, 69, 165, 0.05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: 0.4s;
}

.benefit-card:hover .benefit-icon-wrapper {
	background: var(--rodolider-blue);
}

.benefit-icon {
	font-size: 2.2rem;
	color: var(--rodolider-blue);
	transition: 0.4s;
}

.benefit-card:hover .benefit-icon {
	color: #fff;
}

.benefit-card h5 {
	font-weight: 700;
	color: var(--rodolider-blue);
	margin-bottom: 15px;
	font-size: 1.15rem;
}

.benefit-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

/* --- FOOTER MODERNO --- */
footer {
	background-color: #111; /* Cinza quase preto */
	color: #999;
	padding: 80px 0 30px;
	font-size: 0.95rem;
}

footer h5 {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
}

/* Linha decorativa sob os títulos do rodapé */
footer h5::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background-color: var(--rodolider-red);
}

footer p {
	line-height: 1.8;
}

footer .nav-link {
	color: #999 !important;
	padding: 5px 0 !important;
	text-transform: none;
	font-weight: 400;
	transition: 0.3s;
}

footer .nav-link:hover {
	color: var(--rodolider-red) !important;
	transform: translateX(5px);
}

.footer-contact-info i {
	color: var(--rodolider-blue);
	width: 25px;
}

/* Redes Sociais no Rodapé */
.footer-social .social-icon {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.05);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	margin-right: 10px;
	transition: 0.3s;
	text-decoration: none;
}

.footer-social .social-icon:hover {
	background: var(--rodolider-blue);
	transform: translateY(-3px);
}

/* Ajuste Input Newsletter */
.footer-newsletter .form-control {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	color: #fff;
	padding: 12px 20px;
}

.footer-newsletter .form-control:focus {
	background: rgba(255,255,255,0.1);
	box-shadow: none;
	border-color: var(--rodolider-blue);
}

.copyright {
	border-top: 1px solid rgba(255,255,255,0.05);
	padding-top: 30px;
	margin-top: 50px;
}

/* --- PÁGINA DE DETALHES DO VEÍCULO --- */
.product-gallery { margin-bottom: 30px; }
.main-img-container { 
	border-radius: 12px; 
	overflow: hidden; 
	margin-bottom: 15px; 
	cursor: zoom-in;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.main-img-container img { width: 100%; height: auto; transition: 0.3s; }

.thumb-slider .slick-slide { padding: 0 5px; outline: none; }
.thumb-slider img { 
	border-radius: 8px; 
	cursor: pointer; 
	border: 2px solid transparent; 
	transition: 0.3s;
	height: 100px;
	object-fit: cover;
}
.thumb-slider .slick-current img { border-color: var(--rodolider-red); }

.veiculo-info-box {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	border: 1px solid #eee;
}
.price-tag-detail {
	font-size: 2.5rem;
	color: var(--rodolider-blue);
	font-weight: 800;
	margin: 15px 0;
}
.spec-item {
	padding: 12px 0;
	border-bottom: 1px solid #f4f4f4;
	display: flex;
	justify-content: space-between;
}
.spec-label { font-weight: 700; color: #666; text-transform: uppercase; font-size: 0.8rem; }
.spec-value { font-weight: 500; color: var(--text-dark); }

.btn-wpp-detail {
	background-color: #25D366;
	color: white;
	font-weight: 700;
	padding: 15px;
	border-radius: 50px;
	display: block;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
	font-size: 1.1rem;
}
.btn-wpp-detail:hover { background-color: #1ebe57; color: white; transform: scale(1.02); }

/* --- GALERIA PREMIUM --- */
.product-gallery {
	position: relative;
	padding-bottom: 20px;
}

.main-img-container {
	border-radius: 15px;
	overflow: hidden;
	background-color: #f8f8f8;
	margin-bottom: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	aspect-ratio: 16 / 10; /* Mantém a proporção independente do tamanho da foto */
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Garante que a foto preencha o espaço sem distorcer */
	transition: transform 0.5s ease;
}

.main-img-container:hover img {
	transform: scale(1.03); /* Leve zoom ao passar o mouse */
}

/* Customização do Slider de Miniaturas */
.thumb-slider {
	margin: 0 -5px;
	padding-left: 20px;
	padding-right: 20px;
}

.thumb-slider .slick-slide {
	padding: 0 5px;
}

.thumb-item {
	border-radius: 10px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: 0.3s;
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: 0.3s;
}

.thumb-slider .slick-current .thumb-item {
	border-color: var(--rodolider-red);
}

.thumb-slider .slick-current .thumb-item img {
	opacity: 1;
}


/* --- CUSTOMIZAÇÃO DAS SETAS SLICK (APENAS ÍCONES) --- */

/* Estilo Base dos Botões */
.slick-prev, .slick-next {
	font-size: 0; /* Esconde o texto original "Next/Previous" */
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 40px;
	padding: 0;
	transform: translateY(-50%);
	cursor: pointer;
	border: none;
	outline: none;
	background: var(--rodolider-blue); /* Fundo azul da marca */
	color: #fff;
	border-radius: 50%;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Efeito Hover nas Setas */
.slick-prev:hover, .slick-next:hover {
	background: var(--rodolider-red); /* Troca para vermelho no hover */
	transform: translateY(-50%) scale(1.1);
}

/* Ícone da Seta Esquerda (Previous) */
.slick-prev {
	left: 0;
}
.slick-prev:before {
	content: "\f053"; /* Código Unicode da seta esquerda no Font Awesome */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 18px;
	color: white;
}

/* Ícone da Seta Direita (Next) */
.slick-next {
	right: 0;
}
.slick-next:before {
	content: "\f054"; /* Código Unicode da seta direita no Font Awesome */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 18px;
	color: white;
}

/* Ajuste para não cortar as setas em telas menores */
@media (max-width: 768px) {
	.slick-prev { left: 5px; }
	.slick-next { right: 5px; }
}

/* --- PÁGINA DE CONTATO (ESTILOS ESPECÍFICOS) --- */

/* Header da Página de Contato */
.contact-header {
    background: linear-gradient(rgba(0, 69, 165, 0.9), rgba(0, 69, 165, 0.9)), 
                url('https://images.unsplash.com/photo-1586769852836-bc069f19e1b6?q=80&w=2070') center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Cards de Contato e Formulário */
.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
}

/* Itens de Informação (Telefone, WhatsApp, Email) */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 69, 165, 0.1);
    color: var(--rodolider-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-text h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-info-text p {
    font-size: 0.95rem;
}

/* Estilo do Container do Iframe (Formulário) */
.iframe-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.iframe-container iframe {
    border: none;
    border-radius: 8px;
}

/* Loader para o Iframe */
.iframe-loader {
    background: url('https://i.gifer.com/ZZ5H.gif') no-repeat center;
    background-size: 30px;
}

/* Mapa */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid #eee;
    margin-bottom: 80px;
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1);
    transition: 0.5s;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Ajustes de Responsividade */
@media (max-width: 991px) {
    .contact-header {
        padding: 50px 0;
    }
    .contact-card {
        margin-bottom: 20px;
    }
}



/* --- COMPLEMENTOS DA PÁGINA SOBRE --- */

/* Estilo do Banner superior da página Sobre */
.about-header {
    background: linear-gradient(rgba(0, 69, 165, 0.85), rgba(0, 43, 102, 0.9)), 
                url('https://rodolider.com/assets/images/21.jpg') center/cover;
    padding: 100px 0;
    min-height: 350px;
    position: relative;
}

/* Transição de zoom nas imagens conceituais */
.transition-zoom {
    transition: transform 0.5s ease;
}

.overflow-hidden:hover .transition-zoom {
    transform: scale(1.05);
}

/* Letras mais gordinhas para as estatísticas */
.fw-extrabold {
    font-weight: 800 !important;
}

/* Espaçamento de caracteres para subtítulos */
.tracking-wider {
    letter-spacing: 1px;
}

/* Ajustes de botões CTA */
.gap-3 {
    gap: 1rem !important;
}