﻿/* ============================================================
   app.css – VIDEMOTORES Landing Page
   Paleta: azul industrial escuro + dourado âmbar + branco
   Autor: GitHub Copilot  |  Data: 2026
   ============================================================ */

/* ── Variáveis de Design ─────────────────────────────────── */
:root {
    --vm-primary:      #0f2744;   /* Azul marinho escuro – cor principal */
    --vm-primary-mid:  #1565c0;   /* Azul médio para botões/destaque */
    --vm-accent:       #ffa000;   /* Dourado âmbar – cor de destaque */
    --vm-accent-light: #ffca28;   /* Âmbar claro para hover */
    --vm-dark:         #0a1929;   /* Fundo muito escuro */
    --vm-light:        #f4f6f9;   /* Cinza claro para fundos alternados */
    --vm-white:        #ffffff;
    --vm-text:         #2c3e50;   /* Texto principal */
    --vm-text-light:   #5a7184;   /* Texto secundário */
    --vm-border:       #e2e8f0;   /* Bordas suaves */
    --vm-shadow:       0 4px 24px rgba(15, 39, 68, 0.10);
    --vm-shadow-hover: 0 8px 32px rgba(15, 39, 68, 0.18);
    --vm-radius:       12px;
    --vm-radius-lg:    20px;
    --vm-transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --vm-font:         'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--vm-font);
    color: var(--vm-text);
    background: var(--vm-white);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--vm-primary);
}

p { line-height: 1.7; margin-bottom: 1rem; }

a { color: var(--vm-primary-mid); text-decoration: none; transition: color var(--vm-transition); }
a:hover { color: var(--vm-accent); }

/* ── Tela de Carregamento ────────────────────────────────── */
.vm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--vm-primary);
}
.vm-loading-inner { text-align: center; }
.vm-spinner {
    width: 60px; height: 60px;
    border: 5px solid rgba(255,160,0,0.3);
    border-top-color: var(--vm-accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: vmSpin 0.8s linear infinite;
}
.vm-loading-text {
    color: var(--vm-white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
@keyframes vmSpin { to { transform: rotate(360deg); } }

/* ── Blazor error banner ──────────────────────────────────── */
#blazor-error-ui {
    color-scheme: light only;
    background: #fff3cd;
    border-top: 2px solid var(--vm-accent);
    bottom: 0; left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    display: none;
    font-size: 0.9rem;
}
#blazor-error-ui .reload { font-weight: 600; margin-left: 0.5rem; }
#blazor-error-ui .dismiss { cursor: pointer; float: right; font-size: 1.1rem; }

/* ── Wordmark do Hero (substitui imagem de logo sobre fundo escuro) ── */
.vm-hero-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}
.vm-hero-wordmark-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-accent-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--vm-primary);
    flex-shrink: 0;
}
.vm-hero-wordmark-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.vm-hero-wordmark-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--vm-white);
    line-height: 1;
    text-transform: uppercase;
}
.vm-hero-wordmark-name strong {
    color: var(--vm-accent);
    font-weight: 900;
}
.vm-hero-wordmark-sub {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Navbar wordmark (logo original continua na navbar) ── */
.vm-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 25, 41, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,160,0,0.15);
    transition: background var(--vm-transition), box-shadow var(--vm-transition);
}
.vm-navbar.scrolled {
    background: rgba(10, 25, 41, 0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.vm-navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; }
.vm-navbar-brand { display: flex; align-items: center; gap: 0.75rem; }
.vm-navbar-logo { height: 42px; width: auto; object-fit: contain; }
.vm-navbar-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--vm-white);
    letter-spacing: 0.04em;
}
.vm-navbar-name span { color: var(--vm-accent); }
.vm-navbar-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.vm-navbar-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--vm-transition);
    position: relative;
    padding-bottom: 3px;
}
.vm-navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--vm-accent);
    transition: width var(--vm-transition);
}
.vm-navbar-links a:hover { color: var(--vm-accent); }
.vm-navbar-links a:hover::after { width: 100%; }

/* Hamburger mobile */
.vm-navbar-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    color: var(--vm-white);
    font-size: 1.3rem;
}
.vm-mobile-menu {
    display: none;
    background: var(--vm-dark);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,160,0,0.15);
}
.vm-mobile-menu.open { display: block; }
.vm-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.vm-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.vm-mobile-menu ul li a {
    display: block;
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.vm-mobile-menu ul li a:hover { color: var(--vm-accent); }

@media (max-width: 991px) {
    .vm-navbar-links { display: none; }
    .vm-navbar-toggle { display: block; }
}

/* ── Seção Utilitários ──────────────────────────────────── */
.vm-section { padding: 6rem 0; }
.vm-section-alt { background: var(--vm-light); }
.vm-section-dark { background: var(--vm-primary); color: var(--vm-white); }
.vm-section-dark h2, .vm-section-dark h3 { color: var(--vm-white); }

.vm-section-header { text-align: center; margin-bottom: 3.5rem; }
.vm-section-header .vm-badge {
    display: inline-block;
    background: rgba(255,160,0,0.12);
    color: var(--vm-accent);
    border: 1px solid rgba(255,160,0,0.3);
    border-radius: 50px;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.vm-section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.vm-section-header p { font-size: 1.1rem; color: var(--vm-text-light); max-width: 600px; margin: 0 auto; }
.vm-section-dark .vm-section-header p { color: rgba(255,255,255,0.7); }
.vm-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--vm-accent), var(--vm-accent-light));
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}

/* ── Botões ──────────────────────────────────────────────── */
.vm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all var(--vm-transition);
    text-decoration: none;
}
.vm-btn-primary {
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-accent-light));
    color: var(--vm-primary);
}
.vm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,160,0,0.4);
    color: var(--vm-primary);
}
.vm-btn-outline {
    background: transparent;
    color: var(--vm-white);
    border: 2px solid rgba(255,255,255,0.6);
}
.vm-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--vm-white);
    color: var(--vm-white);
    transform: translateY(-2px);
}
.vm-btn-dark {
    background: var(--vm-primary);
    color: var(--vm-white);
}
.vm-btn-dark:hover {
    background: var(--vm-primary-mid);
    color: var(--vm-white);
    transform: translateY(-2px);
    box-shadow: var(--vm-shadow-hover);
}

/* ── HERO ────────────────────────────────────────────────── */
.vm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vm-dark);
}
.vm-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10,25,41,0.92) 0%, rgba(21,101,192,0.5) 100%),
        url('https://images.unsplash.com/photo-1565008576549-57569a49371d?w=1600&q=80') center/cover no-repeat;
}
.vm-hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,160,0,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: vmParticlesMove 20s linear infinite;
    opacity: 0.4;
}
@keyframes vmParticlesMove { to { background-position: 60px 60px; } }

.vm-hero-content {
    position: relative;
    z-index: 2;
    padding: 7rem 0 4rem;
    width: 100%;
}
.vm-hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)) brightness(1.05);
}
.vm-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--vm-white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.vm-hero h1 span { color: var(--vm-accent); }
.vm-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.vm-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.vm-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
}
.vm-hero-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--vm-accent);
    line-height: 1;
}
.vm-hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}
.vm-hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    animation: vmBounce 2s infinite;
}
.vm-hero-scroll i { font-size: 1.3rem; color: var(--vm-accent); }
@keyframes vmBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── QUEM SOMOS ──────────────────────────────────────────── */
.vm-about-img-wrap {
    border-radius: var(--vm-radius-lg);
    overflow: hidden;
    box-shadow: var(--vm-shadow-hover);
    position: relative;
}
.vm-about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.vm-about-badge {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    background: var(--vm-accent);
    color: var(--vm-primary);
    border-radius: var(--vm-radius);
    padding: 0.8rem 1.2rem;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(255,160,0,0.4);
}
.vm-about-badge span { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.vm-about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.vm-about-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--vm-radius);
    background: var(--vm-light);
    transition: box-shadow var(--vm-transition);
}
.vm-about-value:hover { box-shadow: var(--vm-shadow); }
.vm-about-value-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-accent-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--vm-primary);
    flex-shrink: 0;
}
.vm-about-value h5 { margin: 0 0 0.2rem; font-size: 0.95rem; }
.vm-about-value p { margin: 0; font-size: 0.88rem; color: var(--vm-text-light); }

/* ── SERVIÇOS ────────────────────────────────────────────── */
.vm-service-card {
    background: var(--vm-white);
    border-radius: var(--vm-radius-lg);
    padding: 2rem;
    box-shadow: var(--vm-shadow);
    transition: transform var(--vm-transition), box-shadow var(--vm-transition);
    height: 100%;
    border: 1px solid var(--vm-border);
    position: relative;
    overflow: hidden;
}
.vm-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vm-accent), var(--vm-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--vm-transition);
}
.vm-service-card:hover { transform: translateY(-6px); box-shadow: var(--vm-shadow-hover); }
.vm-service-card:hover::before { transform: scaleX(1); }
.vm-service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--vm-primary), var(--vm-primary-mid));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--vm-white);
    margin-bottom: 1.2rem;
    transition: background var(--vm-transition);
}
.vm-service-card:hover .vm-service-icon {
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-accent-light));
    color: var(--vm-primary);
}
.vm-service-card h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.vm-service-card p { font-size: 0.9rem; color: var(--vm-text-light); margin: 0; }
.vm-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vm-primary-mid);
    transition: gap var(--vm-transition), color var(--vm-transition);
}
.vm-service-link:hover { gap: 0.6rem; color: var(--vm-accent); }

/* ── CLIENTES ─────────────────────────────────────────────── */
.vm-sector-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--vm-radius-lg);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    transition: background var(--vm-transition), transform var(--vm-transition);
}
.vm-sector-card:hover {
    background: rgba(255,160,0,0.08);
    border-color: rgba(255,160,0,0.3);
    transform: translateY(-4px);
}
.vm-sector-icon {
    font-size: 2.5rem;
    color: var(--vm-accent);
    margin-bottom: 1rem;
    display: block;
}
.vm-sector-card h5 {
    color: var(--vm-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.vm-sector-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.vm-testimonial {
    background: rgba(255,255,255,0.06);
    border-radius: var(--vm-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.vm-testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(255,160,0,0.2);
    position: absolute;
    top: -0.5rem; left: 1.25rem;
    line-height: 1;
    font-family: Georgia, serif;
}
.vm-testimonial p { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-style: italic; margin-bottom: 1.25rem; z-index: 1; position: relative; }
.vm-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.vm-testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vm-accent), var(--vm-primary-mid));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--vm-white);
    font-weight: 700;
    flex-shrink: 0;
}
.vm-testimonial-name { font-weight: 700; color: var(--vm-white); font-size: 0.9rem; }
.vm-testimonial-role { color: var(--vm-accent); font-size: 0.8rem; }

/* ── GALERIA ──────────────────────────────────────────────── */
.vm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.vm-gallery-item {
    border-radius: var(--vm-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--vm-primary);
}
.vm-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vm-gallery-item:hover img { transform: scale(1.08); }
.vm-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,41,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--vm-transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.vm-gallery-item:hover .vm-gallery-overlay { opacity: 1; }
.vm-gallery-overlay span { color: var(--vm-white); font-size: 0.9rem; font-weight: 600; }
.vm-gallery-overlay i { font-size: 1rem; margin-right: 0.4rem; color: var(--vm-accent); }

/* Lightbox */
.vm-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.vm-lightbox.open { display: flex; }
.vm-lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.vm-lightbox img { width: 100%; border-radius: var(--vm-radius); box-shadow: 0 20px 60px rgba(0,0,0,0.8); }
.vm-lightbox-close {
    position: absolute;
    top: -2.5rem; right: 0;
    background: none;
    border: none;
    color: var(--vm-white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
.vm-lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.75);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ── LOCALIZAÇÃO ──────────────────────────────────────────── */
.vm-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--vm-radius);
    background: var(--vm-light);
    margin-bottom: 1rem;
    transition: box-shadow var(--vm-transition);
}
.vm-info-card:hover { box-shadow: var(--vm-shadow); }
.vm-info-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--vm-primary), var(--vm-primary-mid));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--vm-white);
    flex-shrink: 0;
}
.vm-info-card h6 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vm-text-light); margin: 0 0 0.25rem; }
.vm-info-card p { margin: 0; font-weight: 500; font-size: 0.95rem; }
.vm-map-wrap {
    border-radius: var(--vm-radius-lg);
    overflow: hidden;
    box-shadow: var(--vm-shadow-hover);
    border: 3px solid var(--vm-border);
}
.vm-map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }
.vm-social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.vm-social-btn {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--vm-light);
    color: var(--vm-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all var(--vm-transition);
    border: 1px solid var(--vm-border);
}
.vm-social-btn:hover {
    background: var(--vm-primary);
    color: var(--vm-white);
    border-color: var(--vm-primary);
    transform: translateY(-2px);
}
.vm-social-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.vm-social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; }
.vm-social-btn.facebook:hover  { background: #1877F2; border-color: #1877F2; }

/* ── CONTATO ──────────────────────────────────────────────── */
.vm-contact-form {
    background: var(--vm-white);
    border-radius: var(--vm-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--vm-shadow-hover);
    border: 1px solid var(--vm-border);
}
.vm-form-group { margin-bottom: 1.25rem; }
.vm-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--vm-text);
    margin-bottom: 0.4rem;
}
.vm-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--vm-border);
    border-radius: 10px;
    font-family: var(--vm-font);
    font-size: 0.95rem;
    color: var(--vm-text);
    background: var(--vm-white);
    transition: border-color var(--vm-transition), box-shadow var(--vm-transition);
    outline: none;
}
.vm-form-control:focus {
    border-color: var(--vm-primary-mid);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}
.vm-form-control.invalid { border-color: #dc3545; }
.vm-form-control.valid   { border-color: #28a745; }
textarea.vm-form-control { resize: vertical; min-height: 130px; }
.vm-form-error { color: #dc3545; font-size: 0.8rem; margin-top: 0.3rem; }
.vm-form-success {
    text-align: center;
    padding: 3rem 2rem;
    animation: vmFadeIn 0.5s ease;
}
.vm-form-success .vm-success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
    display: block;
}
.vm-form-success h4 { color: var(--vm-primary); margin-bottom: 0.5rem; }
.vm-form-success p  { color: var(--vm-text-light); }
@keyframes vmFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.vm-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: var(--vm-white);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--vm-transition);
    margin-top: 1rem;
}
.vm-whatsapp-btn:hover {
    background: #1ebe57;
    color: var(--vm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.vm-footer {
    background: var(--vm-dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,160,0,0.15);
}
.vm-footer-logo { height: 48px; margin: 0 auto 1.25rem; }
.vm-footer-name { font-size: 1.1rem; font-weight: 700; color: var(--vm-white); margin-bottom: 0.3rem; }
.vm-footer-sub  { font-size: 0.85rem; margin-bottom: 1.5rem; }
.vm-footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; }
.vm-footer-links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--vm-transition); }
.vm-footer-links a:hover { color: var(--vm-accent); }
.vm-footer-copy { font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; margin-top: 0.5rem; }
.vm-footer-copy span { color: var(--vm-accent); }

/* ── Utilitários gerais ───────────────────────────────────── */
.vm-weg-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21,101,192,0.1);
    border: 1px solid rgba(21,101,192,0.25);
    color: var(--vm-primary-mid);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-flex;
}

/* ================================================================
   RESPONSIVIDADE
   Apenas sobrescreve o necessário – todo o layout desktop é mantido.
   ================================================================ */

/* ── Tablet (≤ 991px) ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .vm-section { padding: 4.5rem 0; }
}

/* ── Mobile (≤ 767px) ─────────────────────────────────────────── */
@media (max-width: 767px) {

    /* Seções genéricas */
    .vm-section  { padding: 4rem 0; }
    .vm-contact-form { padding: 1.75rem; }
    .vm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .vm-about-img-wrap img { height: 260px; }

    /* ── Hero mobile ──────────────────────────────────────────── */

    .vm-hero {
        align-items: flex-start;
        min-height: 100svh;
    }

    /* Padding lateral generoso para não colar nas bordas */
    .vm-hero-content {
        padding: 5.5rem 1.5rem 5rem;
        text-align: center;
    }

    /* Wordmark: reduz levemente e centraliza */
    .vm-hero-wordmark {
        margin-left: auto;
        margin-right: auto;
    }

    /* Título: maior e com respiro */
    .vm-hero h1 {
        font-size: clamp(1.85rem, 7.5vw, 2.3rem);
        line-height: 1.22;
        margin-bottom: 1.1rem;
    }

    /* Parágrafo: tamanho confortável de leitura */
    .vm-hero-sub {
        max-width: 100%;
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }

    /* CTAs: coluna, largura total, centralizados */
    .vm-hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .vm-hero-ctas .vm-btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }

    /* Stats: coluna única, cada card é uma linha horizontal
       com o valor à esquerda e o label à direita              */
    .vm-hero-stats {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .vm-hero-stats > div {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 14px;
        padding: 0.85rem 1.25rem;
        text-align: left;
    }
    .vm-hero-stat-value {
        font-size: 1.8rem;
        min-width: 64px;
        text-align: center;
        flex-shrink: 0;
    }
    .vm-hero-stat-label {
        font-size: 0.82rem;
        line-height: 1.3;
        text-align: left;
    }

    /* Indicador de scroll: escondido no mobile */
    .vm-hero-scroll { display: none; }
}

/* ── Mobile pequeno (≤ 480px) ─────────────────────────────────── */
@media (max-width: 480px) {
    .vm-gallery-grid { grid-template-columns: 1fr 1fr; }

    .vm-hero-content   { padding-left: 1rem; padding-right: 1rem; }
    .vm-hero h1        { font-size: 1.7rem; }
    .vm-hero-stat-value { font-size: 1.6rem; min-width: 56px; }
    .vm-hero-stat-label { font-size: 0.78rem; }
}


