/*
  Camada de redesign mobile-first aplicada por cima do Bootstrap/main.css
  existentes (index.html, about.html, contact.html, faq.html).
  Não substitui main.css — só adiciona/sobrescreve o necessário para o
  visual "estilo app" pedido (cantos arredondados, sombras suaves,
  cards, espaçamento generoso, tipografia limpa, CTA em destaque).
  Usa exclusivamente as variáveis de assets/css/theme.css (mesma paleta
  do site).
  Mobile-first: regras base valem até 767px; 768px+ e 1024px+ via
  media queries abaixo.
*/

html {
    scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
.section-title h2,
.theme-btn {
    font-family: var(--font-heading);
}

/* ---------- Botões: toque confortável + cantos arredondados ---------- */
.theme-btn {
    border-radius: var(--radius);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    color: var(--white);
    transform: scale(1.08);
}

/* ---------- Hero CTA em destaque ---------- */
.vv-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.vv-hero-cta .theme-btn {
    padding: 16px 32px;
    font-size: 16px;
}

/* ---------- Cards genéricos (Serviços / Frota / Como Funciona) ---------- */
.vv-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
}
.vv-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.vv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(12, 20, 46, 0.14);
}
.vv-card .vv-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: var(--radius);
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--theme);
}
.vv-card h3,
.vv-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--header);
}
.vv-card p {
    color: var(--text);
    margin-bottom: 0;
}

/* ---------- Passos numerados (Como Funciona) ---------- */
.vv-step {
    position: relative;
}
.vv-step .vv-step-number {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* ---------- Banner CTA de orçamento ---------- */
.vv-cta-banner {
    background-color: var(--header);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
    color: var(--white);
    margin: 0 auto;
}
.vv-cta-banner h2 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
}
.vv-cta-banner p {
    color: #C7CCDA;
    margin-bottom: 24px;
}

/* ---------- Badges de status reutilizáveis (consistência com /admin) ---------- */
.vv-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}
.vv-badge--pendente { background-color: var(--ratting); }
.vv-badge--em_analise { background-color: var(--text); }
.vv-badge--orcado { background-color: var(--theme2); }
.vv-badge--aprovado { background-color: var(--success); }
.vv-badge--concluido { background-color: var(--header); }
.vv-badge--cancelado { background-color: var(--theme); }

/* ---------- Polimento do drawer / offcanvas já existente (só visual) ---------- */
.offcanvas__info {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* ---------- Rodapé: garante contraste dos contatos ---------- */
.footer-widgets-wrapper .single-footer-widget .footer-content a {
    color: #C7CCDA;
}
.footer-widgets-wrapper .single-footer-widget .footer-content a:hover {
    color: var(--white);
}

/* =========================================================
   Tablet (768px+)
   ========================================================= */
@media (min-width: 768px) {
    .vv-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .vv-cta-banner {
        padding: 56px 40px;
        max-width: 720px;
    }
    .vv-cta-banner h2 {
        font-size: 30px;
    }
}

/* =========================================================
   Desktop (1024px+)
   ========================================================= */
@media (min-width: 1024px) {
    .vv-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
    .vv-cards-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .whatsapp-float {
        right: 32px;
        bottom: 32px;
    }
}
