/* ============================================
   ASSIS RENTAL — Industrial Premium LP
   ============================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2D8C3C;
    --green-dark: #1E6B2B;
    --green-light: #3AA64D;
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #6B7280;
    --gray-light: #F5F5F5;
    --gray-mid: #E5E5E5;
    --gray-dark: #374151;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-green { color: var(--green); }
.text-white { color: var(--white); }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 80px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(45, 140, 60, 0.4);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--black);
    overflow: hidden;
}

/* Blueprint grid background */
.hero-blueprint {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 140, 60, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 140, 60, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(45, 140, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 140, 60, 0.03) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 65%);
    animation: blueprint-drift 30s linear infinite;
}

@keyframes blueprint-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* Diagonal moving stripes */
.hero-stripes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stripe {
    position: absolute;
    background: linear-gradient(135deg, transparent, rgba(45, 140, 60, 0.04), transparent);
    transform: rotate(-35deg);
}

.stripe-1 {
    width: 200px;
    height: 200%;
    top: -50%;
    right: 15%;
    animation: stripe-move 12s ease-in-out infinite;
}

.stripe-2 {
    width: 120px;
    height: 200%;
    top: -50%;
    right: 35%;
    animation: stripe-move 16s ease-in-out infinite reverse;
    opacity: 0.7;
}

.stripe-3 {
    width: 80px;
    height: 200%;
    top: -50%;
    right: 55%;
    animation: stripe-move 20s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes stripe-move {
    0%, 100% { transform: rotate(-35deg) translateY(-5%); }
    50% { transform: rotate(-35deg) translateY(5%); }
}

/* Grain */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}

/* Glowing orb */
.hero-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 140, 60, 0.12) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    animation: orb-breathe 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orb-breathe {
    0%, 100% { transform: translate(0, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(0, -50%) scale(1.15); opacity: 1; }
}

.hero-diagonal {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 3;
}

/* Split layout */
.hero-split {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 140, 60, 0.1);
    border: 1px solid rgba(45, 140, 60, 0.25);
    color: var(--green-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 140, 60, 0.15), transparent);
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Title — stacked lines */
.hero-title {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-line {
    display: block;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    overflow: hidden;
}

.hero-line-1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-line-2 {
    font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero-line-accent {
    color: var(--white);
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    letter-spacing: 4px;
    position: relative;
    padding: 4px 0;
}

.hero-line-accent::before {
    display: none;
}

.hero-line-3 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--red);
    font-weight: 800;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 140, 60, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-pulse {
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(45, 140, 60, 0.4); }
    50% { box-shadow: 0 0 0 16px rgba(45, 140, 60, 0); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 18px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.btn-secondary svg {
    transition: var(--transition);
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    border-radius: 2px;
    background: var(--green);
    margin-top: 6px;
    animation: scroll-wheel-anim 2s ease-in-out infinite;
}

@keyframes scroll-wheel-anim {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.2; }
}

/* RIGHT SIDE — Logo showcase */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.hero-logo-showcase {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.logo-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 140, 60, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(45, 140, 60, 0.15);
}

.logo-ring-1 {
    inset: -10%;
    animation: ring-rotate 25s linear infinite;
    border-style: dashed;
}

.logo-ring-2 {
    inset: -25%;
    animation: ring-rotate 35s linear infinite reverse;
    border-color: rgba(45, 140, 60, 0.08);
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating stat cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 14px 18px;
    color: var(--white);
    z-index: 3;
    animation: float-card 5s ease-in-out infinite;
    white-space: nowrap;
}

.hero-float-card svg {
    color: var(--green);
    flex-shrink: 0;
}

.hero-float-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-float-card span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
}

.hero-float-1 {
    top: 12%;
    right: -5%;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 25%;
    left: -10%;
    animation-delay: -1.5s;
}

.hero-float-3 {
    bottom: 10%;
    right: 0%;
    animation-delay: -3s;
}

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

/* --- TRUST BAR --- */
.trust-bar {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05));
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    gap: 8px;
    min-width: 160px;
}

.trust-item svg {
    opacity: 0.8;
    margin-bottom: 4px;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 2px;
}

.trust-number::after {
    display: none;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

/* --- SECTION COMMON --- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--green);
}

.section-tag-light {
    color: var(--green-light);
}

.section-tag-light::before {
    background: var(--green-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 550px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- SOBRE --- */
.sobre {
    padding: 100px 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.sobre-text strong {
    color: var(--black);
    font-weight: 700;
}

.sobre-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mini-card {
    background: var(--gray-light);
    padding: 24px 16px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mini-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mini-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--green);
    box-shadow: var(--shadow-sm);
}

.mini-card h4 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--black);
}

.mini-card p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.4;
}

.sobre-image {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--green);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: 0;
}

/* --- SEÇÃO HILTI --- */
.hilti-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.hilti-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hilti-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hilti-content {
    position: relative;
    z-index: 1;
}

.text-red {
    color: var(--red);
}

.hilti-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hilti-text strong {
    color: #fff;
}

.hilti-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.hilti-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.hilti-cat-card:hover {
    background: rgba(211, 47, 47, 0.08);
    border-color: rgba(211, 47, 47, 0.3);
    transform: translateY(-2px);
    cursor: pointer;
}

.hilti-cat-icon {
    color: var(--red);
    flex-shrink: 0;
}

.hilti-cat-card span {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-hilti {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--red);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}

.btn-hilti:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3);
}

.btn-hilti svg {
    transition: transform 0.3s ease;
}

.btn-hilti:hover svg {
    transform: translateX(4px);
}

.hilti-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hilti-badge-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.08);
    border: 2px solid rgba(211, 47, 47, 0.25);
    position: relative;
}

.hilti-badge-large::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

.hilti-logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.hilti-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hilti-stats {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.hilti-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    flex: 1;
}

.hilti-stat strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 4px;
}

.hilti-stat span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
}

@media (max-width: 900px) {
    .hilti-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hilti-text {
        max-width: 100%;
    }

    .hilti-categories {
        grid-template-columns: 1fr 1fr;
    }

    .btn-hilti {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hilti-categories {
        grid-template-columns: 1fr;
    }

    .hilti-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* --- CATÁLOGO --- */
.catalogo {
    padding: 100px 0;
    background: var(--gray-light);
}

.catalogo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Equipment card */
.equip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.equip-img {
    width: 100%;
    height: 200px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.equip-img-placeholder {
    background: linear-gradient(135deg, #f0faf2, #e8f5e9);
}

.equip-img-placeholder svg {
    opacity: 0.5;
}

.placeholder-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--green);
    opacity: 0.25;
    user-select: none;
}

.equip-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.equip-card:hover .equip-img img {
    transform: scale(1.08);
}

.equip-card.hidden {
    display: none;
}

.equip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    opacity: 0;
    transition: var(--transition);
}

.equip-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.equip-card:hover::before {
    opacity: 1;
}

.equip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 20px 24px 0;
}

.equip-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 6px;
    background: var(--green);
    color: var(--white);
}

.equip-badge.badge-red {
    background: var(--red);
}

.equip-badge.badge-yellow {
    background: #E6A817;
}

.equip-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equip-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--black);
    padding: 0 24px;
}

.equip-desc {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 0 24px;
}

.equip-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 24px 20px;
    padding: 14px;
    background: #f8f9fa;
    border-radius: 10px;
    flex-grow: 1;
}

.equip-specs li {
    font-size: 0.82rem;
    color: var(--black);
    line-height: 1.4;
}

.equip-specs li strong {
    color: var(--green-dark);
}

.equip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    text-align: center;
    margin: 0 24px 24px;
    margin-top: auto;
}

.equip-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 140, 60, 0.3);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-cta {
    background: var(--green);
    color: var(--white);
}

.product-card-cta::before {
    background: var(--white);
}

.product-card-cta:hover {
    border-color: var(--green-light);
    background: var(--green-dark);
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(45, 140, 60, 0.08);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: rgba(45, 140, 60, 0.15);
    transform: scale(1.05);
}

.product-icon-red {
    background: rgba(211, 47, 47, 0.08);
    color: var(--red);
}

.product-card:hover .product-icon-red {
    background: rgba(211, 47, 47, 0.15);
}

.product-icon-white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.product-card-cta:hover .product-icon-white {
    background: rgba(255,255,255,0.25);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 6px;
}

.badge-red {
    background: var(--red);
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--black);
}

.product-card-cta .product-name {
    color: var(--white);
}

.product-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-card-cta .product-desc {
    color: rgba(255,255,255,0.8);
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-btn svg {
    transition: var(--transition);
}

.product-btn:hover {
    gap: 12px;
}

.product-btn-white {
    color: var(--white);
}

/* --- DIFERENCIAIS --- */
.diferenciais {
    padding: 100px 0;
    background: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dif-card {
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dif-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: var(--transition);
}

.dif-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dif-card:hover::after {
    transform: scaleX(1);
}

.dif-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: rgba(45, 140, 60, 0.2);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.dif-card:hover .dif-number {
    color: rgba(45, 140, 60, 0.35);
}

.dif-icon {
    color: var(--green);
    margin-bottom: 16px;
}

.dif-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black);
}

.dif-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- DEPOIMENTOS --- */
.depoimentos {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(45, 140, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 140, 60, 0.03) 0%, transparent 50%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.depo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}

.depo-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(45, 140, 60, 0.3);
    transform: translateY(-4px);
}

.depo-quote {
    color: var(--green);
    margin-bottom: 16px;
    opacity: 0.6;
}

.depo-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.depo-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.depo-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.depo-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.depo-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
}

.depo-author span {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* --- FORMULÁRIO DE ORÇAMENTO --- */
.form-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 500;
}

.lead-form {
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--white);
    color: var(--black);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 140, 60, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.form-privacy {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: -8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success svg {
    color: var(--green);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
}

/* --- CTA FINAL --- */
.cta-final {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--green-dark), var(--black) 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--green-light);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--green-dark);
    padding: 20px 48px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-cta-final:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.cta-region {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    margin-top: 20px;
    font-weight: 500;
}

/* --- CONTATO --- */
.contato-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-mid);
    transition: var(--transition);
}

.contato-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contato-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(45, 140, 60, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.contato-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.contato-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.contato-card a {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
}

.contato-card a:hover {
    color: var(--green);
    text-decoration: underline;
}

.btn-contato-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--green);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    margin-top: 4px;
}

.btn-contato-wpp:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 140, 60, 0.3);
}

.contato-mapas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-mapa {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-mid);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mapa-label {
    padding: 12px 20px;
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid var(--gray-mid);
}

.contato-mapa iframe {
    width: 100%;
    flex: 1;
    min-height: 200px;
    display: block;
}

/* --- PARCEIROS --- */
.parceiros-section {
    padding: 80px 0;
    background: var(--white);
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.parceiro-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    background: #FFFFFF;
    border-radius: var(--radius);
    border: 1px solid var(--gray-mid);
    width: 100%;
    height: 130px;
    transition: var(--transition);
}

.parceiro-logo:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.parceiro-logo img {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-mapa iframe {
        height: 250px;
    }

    .parceiros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .parceiros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }

    .parceiro-logo {
        padding: 20px 16px;
        height: 110px;
        width: 100%;
        max-width: 180px;
    }

    .parceiro-logo img {
        max-width: 120px;
        max-height: 55px;
    }

    .parceiro-logo:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

/* --- FOOTER --- */
.footer {
    background: #111111;
    padding: 60px 0 0;
    color: rgba(255,255,255,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 115px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-col li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}

.footer-col a {
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

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

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
        color: var(--white);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-split {
        grid-template-columns: 1fr;
        padding: 100px 24px 120px;
        gap: 32px;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .hero-logo-showcase {
        width: 220px;
        height: 220px;
    }

    .hero-logo-img {
        width: 140px;
    }

    .hero-float-card {
        display: none;
    }

    .hero-orb {
        width: 300px;
        height: 300px;
        right: -10%;
        top: 30%;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-image {
        order: 1;
    }

    .sobre-mini-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalogo-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .catalogo-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: repeat(3, 85vw);
        padding-bottom: 16px;
    }

    .depo-card {
        scroll-snap-align: center;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        gap: 24px;
    }

    .trust-divider {
        display: none;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lead-form {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-final {
        padding: 80px 0;
    }

    .btn-cta-final {
        padding: 18px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-right {
        min-height: 240px;
    }

    .hero-logo-showcase {
        width: 180px;
        height: 180px;
    }

    .hero-logo-img {
        width: 120px;
    }

    .trust-number {
        font-size: 2.2rem;
    }

    .btn-primary {
        padding: 16px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .product-card {
        padding: 28px 20px;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(3, 90vw);
    }
}
