/* ===== LANDING PAGE HV LOCAÇÕES ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Variáveis CSS globais */
:root {
    --hv-dark: #0d0f17;
    --hv-yellow: #FFD000;
    --hv-whatsapp: #25d366;
    --hv-light-gray: #f1f1f1;
    --hv-white: #ffffff;
    /* Altura aproximada do header fixo (padding + logo) — mantém o conteúdo do hero abaixo da barra */
    --hv-header-offset: 76px;
    --hv-topbar-offset: 56px;
    --hv-ease-scroll-line: cubic-bezier(0.65, 0, 0.35, 1);
    --hv-font-condensed: 'Bebas Neue', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset e variáveis */
.hv-landing-page {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--hv-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hv-landing-page * {
    box-sizing: border-box;
}

/* Melhorias globais de tipografia */
.hv-landing-page,
.hv-landing-page p,
.hv-landing-page span,
.hv-landing-page a,
.hv-landing-page li {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.hv-landing-page h1,
.hv-landing-page h2,
.hv-landing-page h3,
.hv-landing-page h4,
.hv-landing-page h5,
.hv-landing-page h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.02em;
}

/* ===== PÁGINA POLÍTICA DE PRIVACIDADE ===== */
.hv-privacy-shell {
    padding-top: var(--hv-header-offset);
}

.hv-header--privacy .hv-header-content {
    width: 100%;
}

.hv-privacy-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.hv-nav-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--hv-white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hv-nav-back:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.hv-nav-back:active {
    transform: translateY(0);
}

.hv-privacy-page {
    padding: 60px 0 80px;
    background: #f8f8f8;
    color: var(--hv-dark);
}

.hv-privacy-page .hv-section-title {
    margin-bottom: 24px;
}

.hv-privacy-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #222;
}

.hv-privacy-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin: 26px 0 10px;
    color: var(--hv-dark);
}

.hv-privacy-content p,
.hv-privacy-content li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(13, 15, 23, 0.88);
}

.hv-privacy-content ul {
    padding-left: 18px;
    margin: 10px 0 0;
}

@media (max-width: 768px) {
    .hv-privacy-page {
        padding: 40px 0 70px;
    }

    .hv-privacy-content {
        padding: 26px 18px;
    }
}

/* Melhorias no body/footer também */
body,
footer,
.hv-footer {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Melhorias gerais de legibilidade */
.hv-footer *,
.hv-footer p,
.hv-footer a,
.hv-footer span {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Container */
.hv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER ===== */
.hv-header {
    background-color: rgba(13, 15, 23, 0.68);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
    padding: 12px 0;
    position: fixed;
    top: var(--hv-topbar-offset);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.hv-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hv-header-logo {
    flex-shrink: 0;
    margin-right: auto;
}

.hv-header-logo .hv-logo {
    max-width: 220px;
    height: auto;
    display: block;
}

.hv-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.hv-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.hv-nav-menu li {
    margin: 0;
}

.hv-nav-menu a {
    color: var(--hv-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.hv-nav-menu a:hover {
    color: var(--hv-yellow);
}

.hv-nav-menu a[href^="#"] {
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.hv-nav-menu a[href^="#"].hv-nav-active {
    color: var(--hv-yellow);
    border-bottom-color: var(--hv-yellow);
}

.hv-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hv-whatsapp) !important;
    color: var(--hv-white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: 600 !important;
    transition: box-shadow 0.42s ease;
}

.hv-nav-cta:hover {
    background-color: var(--hv-whatsapp) !important;
    color: var(--hv-white) !important;
    box-shadow:
        0 0 0 1px rgba(37, 211, 102, 0.38) inset,
        0 0 32px rgba(37, 211, 102, 0.28);
}

@media (prefers-reduced-motion: reduce) {
    .hv-nav-cta {
        transition: box-shadow 0.2s ease;
    }
}

.hv-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.hv-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--hv-white);
    transition: all 0.3s ease;
}

/* ===== TOP BAR HILTI (antes do header) ===== */
.hv-topbar-hilti {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--hv-topbar-offset);
    z-index: 1100;
    overflow: hidden;
    background: #d2051e;
}

.hv-topbar-hilti__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, #d2051e00 72%, #d2051e),
        url('https://www.hvrental.com.br/wp-content/uploads/2026/04/bg-toolbox-hilti.webp');
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, left center;
    filter: saturate(1.05) contrast(1.05);
}

.hv-topbar-hilti__overlay {
    display: none;
}

.hv-topbar-hilti__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hv-topbar-hilti__product {
    flex-shrink: 0;
    height: 100%;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.hv-topbar-hilti__product img {
    height: 100% !important;
    width: auto !important;
    max-height: 100% !important;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.hv-topbar-hilti__text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
}

.hv-topbar-hilti__kicker {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hv-yellow);
    white-space: nowrap;
}

.hv-topbar-hilti__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hv-topbar-hilti__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 208, 0, 0.92);
    color: rgba(13, 15, 23, 0.98);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.hv-topbar-hilti__cta:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.hv-topbar-hilti__cta:active {
    transform: translateY(0);
}


@media (max-width: 768px) {
    :root {
        --hv-topbar-offset: 76px;
    }

    .hv-topbar-hilti__product {
        padding: 10px 0;
    }

    .hv-topbar-hilti__product img {
        height: 100% !important;
        max-width: 72px;
    }

    .hv-topbar-hilti__text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .hv-topbar-hilti__kicker,
    .hv-topbar-hilti__title {
        font-size: 10px;
        letter-spacing: 0.10em;
        line-height: 1.15;
    }

    .hv-topbar-hilti__kicker {
        white-space: nowrap;
    }

    .hv-topbar-hilti__title {
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hv-topbar-hilti__cta {
        height: 28px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.05em;
    }
}

/* ===== HERO SECTION ===== */
.hv-hero {
    background-color: var(--hv-dark);
    /* Espaço interno para o conteúdo não ficar sob o header; mídia absoluta preenche desde o topo */
    padding: calc(var(--hv-header-offset) + var(--hv-topbar-offset)) 0 0;
    /* Metade da janela: a seção equipamentos aparece logo abaixo ao carregar */
    min-height: 80vh;
    height: 80vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(var(--hv-header-offset) + var(--hv-topbar-offset));
}

.hv-hero-media {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hv-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hv-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 15, 23, 0.9) 0%, rgba(13, 15, 23, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.hv-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(12px, 3vh, 32px) 20px clamp(16px, 4vh, 40px);
}

.hv-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 7vw, 64px);
    background: linear-gradient(135deg, var(--hv-white) 0%, var(--hv-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 780px;
    margin: 0 auto 24px;
    text-wrap: balance;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hv-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2.8vw, 22px);
    color: var(--hv-light-gray);
    max-width: 680px;
    margin: 0 auto clamp(12px, 2vh, 20px);
    text-wrap: balance;
    line-height: 1.45;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hv-hero-scroll {
    position: absolute;
    bottom: clamp(10px, 2vh, 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hv-scroll-line {
    width: 4px;
    height: 52px;
    position: relative;
}

.hv-scroll-line__track {
    position: relative;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 208, 0, 0.12);
    overflow: hidden;
    box-shadow: 0 0 12px rgba(255, 208, 0, 0.08);
}

.hv-scroll-line__bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 55%;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255, 208, 0, 0.15),
        rgba(255, 208, 0, 0.92)
    );
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.45);
    animation: hvScrollLineDrip 2.5s var(--hv-ease-scroll-line) infinite;
}

@keyframes hvScrollLineDrip {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hv-scroll-line__bar {
        animation: none;
        transform: translateY(22%);
        opacity: 0.75;
    }
}

/* Botões */
.hv-btn-primary {
    display: inline-block;
    background-color: var(--hv-yellow);
    color: var(--hv-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--hv-yellow);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hv-btn-primary:hover {
    background-color: transparent;
    color: var(--hv-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 208, 0, 0.3);
}

/* Botão no CTA amarelo */
.hv-cta-final .hv-btn-primary {
    background-color: var(--hv-dark);
    color: var(--hv-yellow);
    border: 2px solid var(--hv-dark);
}

.hv-cta-final .hv-btn-primary:hover {
    background-color: transparent;
    color: var(--hv-dark);
    border-color: var(--hv-dark);
}

.hv-btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* ===== SEÇÕES ===== */
.hv-equipamentos,
.hv-beneficios,
.hv-instagram,
.hv-localizacao,
.hv-cta-final {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hv-equipamentos {
    background-color: #f8f8f8;
    color: var(--hv-dark);
    padding-top: 48px;
    padding-bottom: 72px;
}

.hv-beneficios {
    background-color: var(--hv-dark);
}

.hv-instagram {
    background-color: #f8f8f8;
    color: var(--hv-dark);
}

.hv-localizacao {
    background-color: var(--hv-dark);
    position: relative;
    overflow: hidden;
}

.hv-cta-final {
    background: linear-gradient(135deg, var(--hv-yellow) 0%, #FFE000 100%);
    color: var(--hv-dark);
}

/* Títulos de seção com gradiente */
.hv-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 42px);
    text-align: center;
    margin: 0 0 60px;
    background: linear-gradient(135deg, var(--hv-dark) 0%, var(--hv-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hv-equipamentos .hv-section-title,
.hv-instagram .hv-section-title {
    background: linear-gradient(135deg, var(--hv-dark) 0%, var(--hv-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hv-beneficios .hv-section-title,
.hv-localizacao .hv-section-title {
    background: linear-gradient(135deg, var(--hv-white) 0%, var(--hv-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hv-cta-final .hv-section-title {
    color: var(--hv-dark);
}

/* ===== EQUIPAMENTOS - NOVO DESIGN ===== */
/* Carrossel de equipamentos */
.hv-equipamentos-carousel {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 18px 0 12px;
    background-color: transparent;
}

.hv-equipamentos-viewport {
    overflow: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    padding: 14px 0 18px;
}

.hv-equipamentos-viewport::-webkit-scrollbar {
    display: none;
}

.hv-equipamentos-viewport {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none;    /* Firefox */
}

.hv-equipamentos-track {
    display: flex;
    width: 100%;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
    will-change: transform, opacity;
}

.hv-equipamentos-track.hv-equip-fade {
    opacity: 0;
}

.hv-equipamentos-page {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.15vw, 16px);
    padding: 0 clamp(14px, 2vw, 28px);
}

.hv-equipamento-slide {
    display: block;
}

.hv-equipamento-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
}

.hv-equipamento-card--overlay {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
}

.hv-equipamento-media {
    aspect-ratio: 3 / 2;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.hv-equipamento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transform: translateZ(0) scale(1);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hv-equipamento-card--overlay:hover .hv-equipamento-img {
    transform: translateZ(0) scale(1.05);
    filter: saturate(1.1) contrast(1.06);
}

.hv-equipamento-card--overlay:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    outline: 1px solid rgba(255, 208, 0, 0.35);
    outline-offset: -1px;
}

.hv-equipamento-card--overlay::after {
    content: none;
}

.hv-equipamento-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 14px 10px;
    background: linear-gradient(180deg, #FFE45A 0%, var(--hv-yellow) 55%, #FFC800 100%);
}

.hv-equipamento-top {
    text-align: left;
}

.hv-equipamento-nome {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(13, 15, 23, 0.92);
    text-shadow: none;
}

.hv-equipamento-desc {
    margin: 6px 0 0;
    max-width: 100%;
    font-family: var(--hv-font-condensed);
    font-weight: 400;
    font-size: clamp(18px, 1.9vw, 30px);
    line-height: 0.98;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(13, 15, 23, 0.95);
    text-shadow: none;
}

.hv-equipamento-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: end;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.hv-equipamento-price {
    text-align: center;
    padding: 10px 10px 8px;
}

.hv-equipamento-price + .hv-equipamento-price {
    border-left: 1px solid rgba(13, 15, 23, 0.12);
}

.hv-equipamento-price-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(13, 15, 23, 0.75);
    font-style: italic;
    text-shadow: none;
}

.hv-equipamento-price-value {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 1.05;
    color: rgba(13, 15, 23, 0.95);
    text-shadow: none;
}

.hv-price-currency {
    font-size: 16px;
    font-weight: 800;
    opacity: 0.85;
}

.hv-price-amount {
    font-size: 26px;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .hv-equipamento-desc {
        font-size: clamp(22px, 6.2vw, 34px);
    }
}

.hv-equipamento-card::before {
    content: none;
}

.hv-equipamentos-nav {
    background-color: var(--hv-yellow);
    color: var(--hv-white);
    border: 0;
    border-radius: 999px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.hv-equipamentos-nav span {
    font-size: 26px;
    line-height: 1;
}

/* Override de reset.css (evita fundo #c36 / estilos globais de button) */
.hv-equipamentos-carousel .hv-equipamentos-nav {
    -webkit-appearance: none;
    appearance: none;
    background: var(--hv-yellow) !important;
    background-color: var(--hv-yellow) !important;
    color: var(--hv-white) !important;
    border: 0 !important;
    text-decoration: none !important;
}

.hv-equipamentos-carousel .hv-equipamentos-nav span {
    color: var(--hv-white) !important;
}

.hv-equipamentos-nav:hover {
    filter: brightness(0.95);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hv-equipamentos-nav:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.hv-equipamentos-nav--prev {
    left: clamp(8px, 1.2vw, 18px);
}

.hv-equipamentos-nav--next {
    right: clamp(8px, 1.2vw, 18px);
}

@media (max-width: 768px) {
    .hv-equipamentos-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .hv-equipamentos-page {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .hv-equipamentos-page {
        grid-template-columns: 1fr;
    }
}

/* Grid de benefícios */
.hv-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hv-beneficio-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 208, 0, 0.2);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hv-beneficio-card.hv-visible {
    opacity: 1;
    transform: translateY(0);
}

.hv-beneficio-card:hover {
    transform: translateY(-5px);
    border-color: var(--hv-yellow);
    background-color: rgba(255, 208, 0, 0.1);
    box-shadow: 0 8px 24px rgba(255, 208, 0, 0.2);
}

.hv-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hv-beneficio-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--hv-white);
    margin: 0;
}

/* Marcas parceiras */
.hv-marcas {
    margin-top: 60px;
    text-align: center;
}

.hv-marcas-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin: 0 0 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hv-marcas-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.hv-marca-logo {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 calc((100% - (18px * 4)) / 5);
    max-width: calc((100% - (18px * 4)) / 5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

@media (max-width: 1024px) {
    .hv-marca-logo {
        flex: 0 1 calc((100% - (18px * 2)) / 3);
        max-width: calc((100% - (18px * 2)) / 3);
    }
}

@media (max-width: 640px) {
    .hv-marcas-logos {
        gap: 14px;
    }

    .hv-marca-logo {
        flex: 0 1 calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
        padding: 12px 16px;
    }
}

.hv-marca-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
    filter: brightness(1.05) contrast(1.05);
}

.hv-marca-logo:hover {
    transform: none;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ===== INSTAGRAM ===== */
.hv-instagram-card {
    background-color: var(--hv-white);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hv-instagram-top-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #8B5CF6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
}

.hv-instagram-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 40px;
    letter-spacing: -1px;
}

.hv-instagram-logo-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    width: 140px;
    height: 140px;
}

.hv-instagram-logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hv-instagram-logo-circle::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    border-radius: 50%;
    border: 3px dashed #E4405F;
    border-top-color: #833AB4;
    border-right-color: #833AB4;
    animation: rotate 20s linear infinite;
    z-index: 1;
    top: -15%;
    left: -15%;
}

.hv-instagram-logo-circle svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hv-instagram-handle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #E4405F;
    margin: 40px 0 30px;
}

.hv-instagram-link {
    display: inline-block;
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 100%);
    color: var(--hv-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.hv-instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    background: linear-gradient(135deg, #833AB4 0%, #E4405F 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== LOCALIZAÇÃO ===== */
.hv-localizacao {
    position: relative;
}

.hv-mapa-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hv-mapa-background iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%);
}

.hv-localizacao .hv-container {
    position: relative;
    z-index: 2;
}

.hv-localizacao-balloon {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.hv-localizacao-balloon-content {
    background-color: var(--hv-yellow);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    animation: balloonFloat 3s ease-in-out infinite;
}

.hv-localizacao-balloon-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--hv-yellow);
}

.hv-endereco {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--hv-dark);
    margin: 0 0 30px;
    line-height: 1.6;
}

.hv-horario-funcionamento {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--hv-dark);
    margin: -10px 0 24px;
    line-height: 1.5;
}

.hv-btn-maps {
    display: inline-block;
    background-color: var(--hv-dark);
    color: var(--hv-yellow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--hv-dark);
}

.hv-btn-maps:hover {
    background-color: transparent;
    color: var(--hv-dark);
    border-color: var(--hv-dark);
    transform: translateY(-2px);
}

@keyframes balloonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===== CTA FINAL ===== */
.hv-cta-final {
    text-align: center;
}

.hv-cta-hilti {
    position: relative;
    overflow: hidden;
    background: #0d0f17;
    color: var(--hv-white);
}

.hv-cta-hilti .hv-container {
    position: relative;
    z-index: 2;
}

.hv-cta-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hv-cta-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hv-cta-hilti::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(13, 15, 23, 0.88) 0%, rgba(13, 15, 23, 0.62) 100%);
    pointer-events: none;
}

.hv-cta-hilti .hv-cta-title {
    color: var(--hv-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hv-cta-title-highlight {
    background: linear-gradient(135deg, var(--hv-white) 0%, var(--hv-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hv-cta-hilti .hv-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hv-cta-hilti .hv-btn-primary {
    background-color: var(--hv-yellow);
    color: var(--hv-dark);
    border-color: var(--hv-yellow);
}

.hv-cta-hilti .hv-btn-primary:hover {
    background-color: transparent;
    color: var(--hv-yellow);
    border-color: var(--hv-yellow);
}

.hv-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    color: var(--hv-dark);
    margin: 0 0 20px;
}

.hv-cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 22px);
    color: var(--hv-dark);
    margin: 0 0 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.hv-footer {
    background-color: #000000;
    padding: 60px 0 30px;
    /*border-top: 2px solid var(--hv-yellow);*/
}

.hv-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.hv-footer-content .hv-google-review {
    max-width: 350px;
}

.hv-footer-col h4 {
    color: var(--hv-yellow);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hv-footer-col p {
    color: var(--hv-white);
    margin: 10px 0;
    font-size: 14px;
}

.hv-footer-col a {
    color: var(--hv-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hv-footer-col a:hover {
    color: var(--hv-yellow);
}

.hv-footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.hv-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 208, 0, 0.2);
}

.hv-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hv-footer-copyright {
    margin: 0;
    font-size: 14px;
    color: var(--hv-white);
}

.hv-footer-copy {
    margin: 0;
    text-align: right;
}

.hv-footer-copy-small {
    display: inline;
    font-size: 12px;
    color: var(--hv-white);
    margin-right: 5px;
}

.hv-footer-copy-brand {
    display: inline;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #75FABD 0%, #4dd99f 50%, #75FABD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hv-footer-copy-brand:hover {
    background-position: 100% 50%;
    transform: scale(1.05);
}

/* ===== GOOGLE REVIEW CARD ===== */
.hv-google-review-card {
    /*background-color: var(--hv-white);*/
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

/* Balão de fala - borda superior colorida */
.hv-google-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        #4285F4 0%, 
        #4285F4 20%,
        #34A853 25%, 
        #34A853 45%,
        #FBBC05 50%, 
        #FBBC05 70%,
        #EA4335 75%, 
        #EA4335 100%
    );
    border-radius: 20px 20px 0 0;
}

.hv-google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hv-google-review-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #555555;
    margin: 5px 0 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hv-google-logo {
    margin: 12px 0 16px;
    font-size: 40px;
    font-weight: 400;
    font-family: 'Product Sans', 'Roboto', 'Arial', sans-serif;
    letter-spacing: -3px;
    line-height: 1;
    display: inline-block;
}

.hv-google-g {
    color: #4285F4;
}

.hv-google-o1 {
    color: #EA4335;
}

.hv-google-o2 {
    color: #FBBC05;
}

.hv-google-g2 {
    color: #4285F4;
}

.hv-google-l {
    color: #34A853;
}

.hv-google-e {
    color: #EA4335;
}

.hv-google-stars {
    margin: 18px 0;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 3px;
}

.hv-star {
    color: #FFB800;
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.4);
    display: inline-block;
}

.hv-google-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #777777;
    margin: 18px 0 24px;
    line-height: 1.5;
    font-weight: 400;
}

.hv-google-review-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: var(--hv-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    border: none;
    cursor: pointer;
}

.hv-google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
    background: linear-gradient(135deg, #34A853 0%, #4285F4 100%);
}

/* Responsividade do card do Google */
@media (max-width: 768px) {
    .hv-google-review-card {
        padding: 25px 20px;
    }
    
    .hv-google-logo {
        font-size: 32px;
    }
    
    .hv-google-stars {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.hv-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    color: var(--hv-white);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.hv-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.hv-scroll-top {
    position: fixed;
    bottom: 96px; /* acima do WhatsApp */
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50% !important;
    border: none !important;
    background: #0d0f17 !important;
    color: var(--hv-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    line-height: 0;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hv-scroll-top svg {
    width: 28px;
    height: 28px;
}

.hv-scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hv-scroll-top:active {
    transform: translateY(0);
}

.hv-scroll-top:focus {
    outline: none;
}

.hv-scroll-top:focus-visible {
    outline: 3px solid var(--hv-yellow);
    outline-offset: 3px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== RESPONSIVIDADE MOBILE FIRST ===== */
@media (max-width: 768px) {
    .hv-header-content {
        flex-wrap: wrap;
    }

    .hv-nav-toggle {
        display: flex;
    }

    .hv-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(13, 15, 23, 0.86);
        -webkit-backdrop-filter: blur(18px) saturate(1.1);
        backdrop-filter: blur(18px) saturate(1.1);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    }

    .hv-nav-menu.active {
        display: flex;
    }

    .hv-header-logo .hv-logo {
        max-width: 210px;
    }

    .hv-hero-content {
        padding: clamp(10px, 2.5vh, 24px) 20px clamp(12px, 3vh, 28px);
    }

    .hv-hero-title {
        font-size: clamp(1.8rem, 7.2vw, 2.6rem);
        font-weight: 800;
        max-width: 90%;
        letter-spacing: 0.03em;
        line-height: 1.08;
    }

    .hv-hero-subtitle {
        font-size: clamp(1.05rem, 4.1vw, 1.25rem);
        font-weight: 600;
        max-width: 90%;
        line-height: 1.45;
        margin-top: 10px;
    }

    .hv-equipamentos,
    .hv-beneficios,
    .hv-instagram,
    .hv-localizacao,
    .hv-cta-final {
        padding: 60px 0;
        min-height: auto;
    }

    .hv-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .hv-equipamentos-carousel {
        gap: 10px;
    }

    .hv-equipamento-slide {
        flex: 0 0 50%;
    }

    .hv-equipamentos-subtitle {
        font-size: 16px;
        margin: -30px 0 40px;
    }

    .hv-beneficios-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hv-localizacao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hv-mapa-wrapper {
        height: 300px;
    }

    .hv-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hv-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hv-footer-copy {
        text-align: center;
    }

    .hv-footer-copyright {
        text-align: center;
    }

    .hv-whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .hv-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .hv-scroll-top {
        bottom: 86px;
        right: 20px;
        width: 56px !important;
        height: 56px;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 480px) {
    .hv-container {
        padding: 0 16px;
    }

    .hv-hero {
        min-height: 50vh;
        height: 50vh;
    }

    .hv-equipamento-slide {
        flex: 0 0 100%;
    }


    .hv-cta-title {
        font-size: 24px;
    }

    .hv-footer-content .hv-google-review {
        max-width: 100%;
    }

    /* Instagram Mobile */
    .hv-instagram-card {
        padding: 40px 25px;
    }

    .hv-instagram-title {
        font-size: 36px;
    }

    .hv-instagram-logo-wrapper {
        width: 120px;
        height: 120px;
    }

    .hv-instagram-logo-circle svg {
        width: 60px;
        height: 60px;
    }

    .hv-instagram-handle {
        font-size: 18px;
        margin: 30px 0 25px;
    }

    .hv-instagram-link {
        font-size: 14px;
        padding: 12px 28px;
    }
}

/* ===== OTIMIZAÇÕES E ACESSIBILIDADE ===== */
.hv-landing-page img {
    max-width: 100%;
    height: auto;
}

.hv-landing-page a {
    text-decoration: none;
}

.hv-whatsapp-float:focus,
.hv-btn-primary:focus,
.hv-btn-maps:focus {
    outline: 3px solid var(--hv-yellow);
    outline-offset: 2px;
}

/* Sem retângulo ao clicar; mantém foco visível só no teclado (Tab) */
.hv-nav-menu a:focus {
    outline: none;
}

.hv-nav-menu a:focus-visible {
    outline: 3px solid var(--hv-yellow);
    outline-offset: 2px;
}

/* Smooth scroll - instantâneo */
html {
    scroll-behavior: auto;
    scroll-padding-top: 100px;
}

/* Performance - will-change para animações */
.hv-equipamento-card,
.hv-beneficio-card {
    will-change: transform, opacity;
}

/* Meta tags para Google Ads */
.hv-landing-page {
    /* Otimizado para conversão */
    position: relative;
}
