/* ═══════════════════════════════════════════════
   Momentum Theme — Main Stylesheet v1.0.0
   ═══════════════════════════════════════════════ */

:root {
    --red:          #D0021B;
    --red-dark:     #A50015;
    --red-light:    #FF1A2E;
    --black:        #0A0A0A;
    --dark:         #141414;
    --dark2:        #1E1E1E;
    --gray:         #2A2A2A;
    --gray-mid:     #555;
    --gray-light:   #999;
    --off-white:    #F5F5F0;
    --white:        #FFFFFF;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── UTILITY ─── */
.mmt-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.mmt-section { padding: 100px 0; }
.mmt-section-black { background: var(--black); }
.mmt-section-dark  { background: var(--dark); }
.mmt-section-dark2 { background: var(--dark2); }
.mmt-text-center   { text-align: center; }
.mmt-section-header { margin-bottom: 3.5rem; }
.mmt-section-header.mmt-text-center .mmt-section-desc { margin: 0 auto; }

.mmt-section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem;
}
.mmt-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 800;
    text-transform: uppercase; line-height: 1; margin-bottom: 1.2rem;
}
.mmt-section-desc { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; max-width: 560px; }

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--red); color: var(--white);
    padding: 15px 30px; border-radius: 5px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    letter-spacing: 0.3px; transition: all 0.2s;
    border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); color: var(--white); }
/* Garantir texto dos botões sempre branco — independente do color mode */
.btn-primary, .btn-primary:hover, .btn-primary:focus,
.btn-white, .btn-outline-white { color: #fff !important; }
.btn-secondary { color: inherit; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    padding: 15px 30px; border-radius: 5px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.25); transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-white {
    background: var(--white); color: var(--red);
    padding: 15px 32px; border-radius: 5px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all 0.2s; display: inline-block;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); color: var(--red); }
.btn-outline-white {
    background: transparent; color: var(--white);
    padding: 15px 32px; border-radius: 5px;
    text-decoration: none; font-weight: 600; font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: white; transform: translateY(-2px); }

/* ─── TWO COL ─── */
.mmt-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.mmt-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 5%;
    background: rgba(10,10,10,0.92); /* sobrescrito em light mode via page-home.php */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(208,2,27,0.25);
    transition: padding 0.3s;
}
.mmt-nav.scrolled { padding: 12px 5%; }
.mmt-nav-logo { text-decoration: none; display: flex; align-items: center; }
.mmt-logo-img { max-height: var(--logo-height, 48px) !important; width: auto !important; max-width: 200px !important; display: block; object-fit: contain; }
.mmt-nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 900; letter-spacing: 1px; color: var(--white);
}
.mmt-nav-links { display: flex; gap: 2rem; list-style: none; }
.mmt-nav-links a {
    color: var(--mmt-white, rgba(255,255,255,0.85)); text-decoration: none; opacity: .85;
    font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s;
}
.mmt-nav-links a:hover { color: var(--red); }
.mmt-nav-cta {
    background: var(--mmt-primary, var(--red)); color: #fff !important;
    padding: 10px 22px; border-radius: 4px;
    text-decoration: none; font-weight: 700; font-size: 0.88rem;
    letter-spacing: 0.5px; transition: all 0.2s;
    white-space: nowrap;
}
.mmt-nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff !important; }
.mmt-hamburger {
    display: none; background: none; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px; padding: 8px 10px; cursor: pointer; flex-direction: column; gap: 5px;
}
.mmt-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: 0.3s; }
.mmt-mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); z-index: 99; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
}
.mmt-mobile-menu.open { display: flex; }
.mmt-mobile-menu ul { list-style: none; text-align: center; }
.mmt-mobile-menu ul li { margin: 1rem 0; }
.mmt-mobile-menu ul a {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
    text-transform: uppercase; text-decoration: none; color: var(--white);
    transition: color 0.2s;
}
.mmt-mobile-menu ul a:hover { color: var(--red); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.mmt-hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 100px 5% 60px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a0005 60%, #0A0A0A 100%);
}
.mmt-hero-grid-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image:
        linear-gradient(rgba(208,2,27,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(208,2,27,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPan 20s linear infinite;
}
@keyframes gridPan { 0%{background-position:0 0} 100%{background-position:60px 60px} }
.mmt-hero-glow {
    position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(208,2,27,0.15) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}
.mmt-hero-content {
    position: relative; z-index: 1;
    max-width: 640px; flex: 1;
    animation: fadeUp 0.6s ease both;
}
/* Hero image (right column) */
.mmt-hero-image-wrap {
    position: relative; z-index: 1;
    flex: 0 0 auto;
    width: clamp(240px, 35vw, var(--hero-img-size, 460px));
    aspect-ratio: 1 / 1;
    margin-left: 4rem;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(208,2,27,0.2);
}
.mmt-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.mmt-hero-image-wrap:hover .mmt-hero-img { transform: scale(1.04); }
.mmt-hero-logo-badge { display: none; } /* legacy — removed */

/* Logo lateral direita no hero — maior, mais à direita, base alinhada ao conteúdo */
.mmt-hero-logo-side {
    position: relative; z-index: 1;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-left: auto;
    padding-right: 2%;
    padding-bottom: 0;
    align-self: flex-end;
    padding-bottom: 60px; /* alinha a base com a área dos textos */
}
.mmt-hero-logo-side img {
    width: auto;
    height: auto;
    max-width: clamp(120px, 10vw, 180px);
    max-height: 120px;
    display: block;
    filter: drop-shadow(0 4px 32px rgba(208,2,27,0.3));
    opacity: 0.95;
    object-fit: contain;
}
@media (max-width: 1100px) { .mmt-hero-logo-side { display: none; } }
.mmt-hero-glow-only {
    position: relative; z-index: 0;
    flex: 0 0 auto; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(208,2,27,0.12) 0%, transparent 65%);
}

.mmt-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(208,2,27,0.15); border: 1px solid rgba(208,2,27,0.4);
    color: var(--red); padding: 7px 16px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.mmt-hero-badge-dot {
    width: 7px; height: 7px; background: var(--red);
    border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.mmt-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 900; line-height: 0.92;
    text-transform: uppercase; letter-spacing: -1px;
}
.mmt-hero-title span { color: var(--red); }
.mmt-hero-sub {
    font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.65);
    margin-top: 1.4rem; line-height: 1.6; max-width: 500px;
}
.mmt-hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem;
}
.mmt-hero-stats {
    display: flex; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.mmt-hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1;
}
.mmt-hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.mmt-services-grid {
    display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 1.5px;
    background: rgba(208,2,27,0.2);
    border: 1.5px solid rgba(208,2,27,0.2);
    border-radius: 8px; overflow: hidden;
}
.mmt-service-card {
    background: var(--dark2); padding: 2.5rem 2rem;
    position: relative; overflow: hidden; transition: background 0.3s; cursor: default;
}
.mmt-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--red);
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.mmt-service-card:hover { background: #1a1a1a; }
.mmt-service-card:hover::before { transform: scaleX(1); }
.mmt-service-icon { font-size: 2.2rem; margin-bottom: 1.2rem; display: block; }
.mmt-service-name {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.6rem;
}
.mmt-service-desc { color: rgba(255,255,255,0.5); font-size: 0.92rem; line-height: 1.6; }

/* ════════════════════════════════════════
   DIFERENCIAIS
   ════════════════════════════════════════ */
.mmt-diff-img-col { position: relative; }
.mmt-diff-img { width: 100%; border-radius: 8px; filter: brightness(0.85) contrast(1.1); }
.mmt-diff-img-placeholder {
    width: 100%; min-height: 300px; border-radius: 8px;
    background: var(--dark2); border: 2px dashed rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 0.9rem; text-align: center; padding: 2rem;
}
.mmt-diff-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--red); padding: 1.5rem 2rem;
    border-radius: 6px; text-align: center;
}
.mmt-diff-badge-num {
    font-family: var(--font-heading); font-size: 3rem; font-weight: 900; line-height: 1;
}
.mmt-diff-badge-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.mmt-diff-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.mmt-diff-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; transition: border-color 0.2s;
}
.mmt-diff-item:hover { border-color: rgba(208,2,27,0.3); }
.mmt-diff-check {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(208,2,27,0.15); border: 1px solid rgba(208,2,27,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 0.9rem; font-weight: 700; margin-top: 1px;
}
.mmt-diff-title { font-weight: 600; font-size: 0.97rem; margin-bottom: 3px; }
.mmt-diff-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.5; }

/* ════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════ */
.mmt-testimonials-wrap { margin-top: 1rem; }

/* ════════════════════════════════════════
   PORTFOLIO — random grid + lightbox
   ════════════════════════════════════════ */
.mmt-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 0.5rem;
}

.mmt-photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--gray);
    cursor: pointer;
    height: 300px;
}
.mmt-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.82);
}
.mmt-photo-item:hover img { transform: scale(1.05); filter: brightness(1); }
.mmt-photo-overlay {
    position: absolute; inset: 0;
    background: rgba(208,2,27,0.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.mmt-photo-item:hover .mmt-photo-overlay { opacity: 1; }
.mmt-photo-zoom { font-size: 2rem; }

/* Logo watermark no canto das fotos do portfólio */
.mmt-photo-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 7px;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 2;
    pointer-events: none;
}
.mmt-photo-watermark img {
    height: 22px;
    width: auto;
    display: block;
    opacity: 0.85;
}

/* +N more tile */
.mmt-photo-more {
    background: var(--gray);
    border: 2px dashed rgba(208,2,27,0.4);
    border-radius: 8px; cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    transition: border-color 0.2s, background 0.2s;
}
.mmt-photo-more:hover { border-color: var(--red); background: rgba(208,2,27,0.08); }
.mmt-photo-more-num {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900;
    color: var(--red); line-height: 1;
}
.mmt-photo-more-label { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.mmt-photo-more-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* Footer row */
.mmt-portfolio-footer { margin-top: 1.5rem; }
.mmt-portfolio-note {
    display: flex; align-items: center; justify-content: space-between;
    color: rgba(255,255,255,0.4); font-size: 0.88rem; flex-wrap: wrap; gap: 1rem;
}
.mmt-btn-ver-todas {
    background: none; border: 1px solid rgba(208,2,27,0.4); color: var(--red);
    padding: 8px 18px; border-radius: 4px; cursor: pointer;
    font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
    transition: all 0.2s;
}
.mmt-btn-ver-todas:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.mmt-portfolio-empty { text-align: center; padding: 4rem 2rem; color: rgba(255,255,255,0.4); }
.mmt-portfolio-empty a { color: var(--red); }

@media (max-width: 768px) {
    .mmt-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mmt-photo-item { height: 180px; }
}
@media (max-width: 480px) {
    .mmt-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mmt-photo-item { height: 140px; }
}

/* ════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════ */
.mmt-contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.mmt-contact-card {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 1.2rem;
    text-decoration: none; color: var(--white); transition: border-color 0.2s, background 0.2s;
}
.mmt-contact-card:hover { border-color: rgba(208,2,27,0.4); background: rgba(208,2,27,0.05); }
.mmt-contact-card-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(208,2,27,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.mmt-contact-card-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.mmt-contact-card-value { font-weight: 600; font-size: 1rem; }
.mmt-contact-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 1px; }
.mmt-hours-block {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 1.2rem 1.5rem;
}
.mmt-hours-title { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.mmt-hours-row { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; }
.mmt-hours-row:last-child { border-bottom: none; }
.mmt-hours-day { color: rgba(255,255,255,0.5); }
.mmt-hours-time { font-weight: 600; }
.mmt-closed { color: rgba(255,255,255,0.25) !important; }

/* Form column */
.mmt-form-col { }
.mmt-form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.4rem;
}
.mmt-form-subtitle { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-bottom: 1.5rem; }
.mmt-form-wrap {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px; padding: 2rem;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.mmt-faq-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.mmt-faq-list { display: flex; flex-direction: column; gap: .5rem; }
.mmt-faq-item { border-radius: 10px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }

/* Classes usadas pelo page-home.php */
.mmt-faq-q {
    width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
    padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between;
    font-family: var(--mmt-font-heading, var(--font-heading)); font-size: 1rem; font-weight: 600;
    color: var(--mmt-white, #fff); transition: color .2s; gap: 1rem;
}
.mmt-faq-q:hover { color: var(--mmt-primary, var(--red)); }
.mmt-faq-icon { font-size: 1.3rem; color: var(--mmt-primary, var(--red)); flex-shrink: 0; transition: transform .3s; font-weight: 300; }
.mmt-faq-q[aria-expanded="true"] .mmt-faq-icon { transform: rotate(45deg); }
.mmt-faq-a { padding: 0 1.25rem 1.1rem; color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }

/* Light mode FAQ */
.mmt-color-light .mmt-faq-item,
.mmt-theme-light .mmt-faq-item { background: #fff !important; border-color: #e5e7eb !important; }
.mmt-color-light .mmt-faq-q,
.mmt-theme-light .mmt-faq-q { color: #111 !important; }
.mmt-color-light .mmt-faq-a,
.mmt-theme-light .mmt-faq-a { color: #555 !important; }

.mmt-faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.3rem 0; gap: 1rem;
    color: var(--white); font-family: var(--font-body);
    font-size: 0.97rem; font-weight: 500; text-align: left; transition: color 0.2s;
}
.mmt-faq-question:hover { color: var(--red); }
.mmt-faq-icon { font-size: 1.2rem; color: var(--red); flex-shrink: 0; transition: transform 0.3s; }
.mmt-faq-item.open .mmt-faq-icon { transform: rotate(45deg); }
.mmt-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mmt-faq-item.open .mmt-faq-answer { max-height: 600px; }
.mmt-faq-answer-inner {
    padding-bottom: 1.2rem;
    color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7;
}
.mmt-faq-answer-inner p { margin-bottom: 0.5rem; }
.mmt-faq-empty { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.mmt-faq-empty a { color: var(--red); }

/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.mmt-cta-banner {
    background: var(--red); padding: 80px 5%;
    text-align: center; position: relative; overflow: hidden;
}
.mmt-cta-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.mmt-cta-content { position: relative; z-index: 1; }
.mmt-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem,5vw,4rem); font-weight: 900;
    text-transform: uppercase; line-height: 1.05; margin-bottom: 1rem;
}
.mmt-cta-sub { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2.5rem; }
.mmt-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.mmt-footer { background: var(--dark); padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,0.07); }
.mmt-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.mmt-footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
    padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mmt-footer-logo-img { max-height: 60px; width: auto; margin-bottom: 1rem; }
.mmt-footer-logo-text {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900;
    letter-spacing: 1px; margin-bottom: 0.8rem; color: var(--white);
}
.mmt-footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.mmt-footer-col-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.mmt-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.mmt-footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.mmt-footer-col ul a:hover { color: var(--red); }
.mmt-footer-bottom {
    padding: 1.8rem 0; display: flex; align-items: center; justify-content: space-between;
    color: rgba(255,255,255,0.25); font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
}
.mmt-footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.mmt-footer-bottom a:hover { color: var(--red); }

/* ════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════ */
.mmt-wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.mmt-wa-tooltip {
    background: var(--dark2); color: var(--white);
    padding: 8px 14px; border-radius: 6px; font-size: 0.82rem; font-weight: 500;
    white-space: nowrap; box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    opacity: 0; transform: translateX(10px); transition: 0.25s;
}
.mmt-wa-float:hover .mmt-wa-tooltip { opacity: 1; transform: translateX(0); }
.mmt-wa-bubble {
    background: #25D366; color: var(--white);
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 1.6rem;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s;
}
.mmt-wa-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.mmt-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.mmt-reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mmt-two-col { grid-template-columns: 1fr; gap: 3.5rem; }
    .mmt-faq-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .mmt-footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .mmt-diff-badge { right: 0; bottom: -16px; }
    .mmt-hero { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .mmt-hero-image-wrap { width: 100%; max-width: 400px; margin-left: 0; aspect-ratio: 1/1; }
    .mmt-hero-glow-only { display: none; }
    /* Tablet: reduzir gap e tamanho dos links mas manter visíveis */
    .mmt-nav-links { gap: 1.2rem; }
    .mmt-nav-links a { font-size: 0.82rem; }
    .mmt-nav-cta { padding: 8px 14px; font-size: 0.82rem; }
}
@media (max-width: 640px) {
    .mmt-nav-links, .mmt-nav-cta { display: none; }
    .mmt-hamburger { display: flex; }
    .mmt-section { padding: 70px 0; }
    .mmt-hero { padding: 100px 5% 60px; }
    .mmt-hero-stats { gap: 2rem; }
    .mmt-services-grid { grid-template-columns: 1fr; }
    .mmt-portfolio-grid { grid-template-columns: 1fr 1fr; }
    .mmt-footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .mmt-cta-banner { padding: 60px 5%; }
}
@media (max-width: 480px) {
    .mmt-portfolio-grid { grid-template-columns: 1fr; }
    .mmt-hero-title { font-size: 3rem; }
    .mmt-footer-bottom { flex-direction: column; text-align: center; }
    .mmt-gallery-modal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════
   FOOTER MAPS (v0.1.0)
   ════════════════════════════════════════ */
.mmt-footer-maps {
    width: 100%;
    line-height: 0;
    border-bottom: 3px solid var(--red);
}
.mmt-footer-maps iframe {
    width: 100%;
    height: 320px;
    display: block;
    filter: grayscale(0.3) contrast(1.05);
}
@media (max-width: 768px) {
    .mmt-footer-maps iframe { height: 220px; }
}

/* Logo SVG — aplica cor primária via filter quando ativado */
.mmt-nav-logo img.mmt-logo-img.mmt-logo-colorize {
    filter: brightness(0) saturate(100%) invert(13%) sepia(97%) saturate(7471%) hue-rotate(359deg) brightness(97%) contrast(117%);
}
/* Versão dinâmica via CSS var — funciona com qualquer cor primária */
.mmt-logo-img { transition: filter 0.2s; }
