@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;600&family=Dancing+Script:wght@700;800&display=swap');

:root {
    --red: #c0392b;
    --red-dark: #922b21;
    --red-bright: #e74c3c;
    --yellow: #f39c12;
    --yellow-bright: #f1c40f;
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #1a1a1a;
    --black-4: #222222;
    --white: #ffffff;
    --gray: #cccccc;
    --gray-dim: #888888;
    --blue: #2980b9;
    --orange: #e67e22;
    --green: #27ae60;
    --radius: 12px;
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

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

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 100;
    background: #000000;
    border-bottom: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.8);
    border-bottom: 1px solid #c0392b;
}

header.scrolled .logo img {
    height: 55px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    filter: brightness(1.05);
    transition: 0.4s ease;
    display: block;
}

.logo img:hover { transform: scale(1.05); }

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: 0.3s;
}

nav a:hover { color: var(--white); }
nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(192,57,43,0.5);
    transition: 0.3s;
    white-space: nowrap;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192,57,43,0.7);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: 0.3s;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wa-label { font-size: 13px; font-weight: 700; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at top left, #1a0000 0%, #0a0a0a 40%, #000000 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(192,57,43,0.03) 100px,
        rgba(192,57,43,0.03) 101px
    );
    z-index: 0;
}

.hero-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-particles::before,
.hero-bg-particles::after {
    content: '✦ ✦ ✦';
    position: absolute;
    font-size: 60px;
    color: rgba(192,57,43,0.08);
    font-weight: 900;
    letter-spacing: 20px;
}

.hero-bg-particles::before {
    top: 20%; right: -5%;
    transform: rotate(20deg);
    font-size: 100px;
}

.hero-bg-particles::after {
    bottom: 10%; left: -5%;
    transform: rotate(-15deg);
    font-size: 80px;
}

.hero .container { position: relative; z-index: 1; }

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

/* Brand Title */
.brand-title { 
    margin-bottom: 25px; 
    display: inline-block;
}

.brand-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-servicosninja {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 46px;
    color: white;
    text-shadow: 
        -1px -1px 0 #c0392b,  
         1px -1px 0 #c0392b,
        -1px  1px 0 #c0392b,
         1px  1px 0 #c0392b,
         0 6px 15px rgba(192,57,43,0.8);
    letter-spacing: 2px;
    transform: skew(-4deg);
    line-height: 1;
}

.brand-shurikens {
    font-size: 32px;
    color: #e74c3c;
    animation: rotateShuriken 4s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(192,57,43,0.5));
}

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

.brand-ninja-text {
    font-family: 'Dancing Script', cursive;
    font-size: 85px;
    font-weight: 800;
    color: #e74c3c;
    -webkit-text-stroke: 1.5px white;
    text-shadow: 0 5px 20px rgba(192,57,43,0.8);
    line-height: 0.8;
    margin-top: -8px;
    margin-left: 20px;
    transform: rotate(-3deg);
}

/* Hero H1 */
.hero h1 {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    letter-spacing: -0.02em;
}

.hero h1 .color-blue { color: #3498db; }
.hero h1 .color-orange { color: #e67e22; }
.hero h1 .color-green { color: #27ae60; }
.hero h1 .color-yellow { color: #f1c40f; }

.hero-desc {
    font-size: 17px;
    color: #e0e0e0;
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-main {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(192,57,43,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(192,57,43,0.7);
    color: white;
}

.btn-sec {
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-sec:hover {
    background: white;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Responsavel Badge */
.responsavel-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.responsavel-badge:hover {
    transform: translateY(-2px);
    border-left-color: #f1c40f;
    box-shadow: 0 8px 25px rgba(192,57,43,0.3);
}

.responsavel-icon {
    font-size: 20px;
}
.responsavel-label { font-size: 10px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.responsavel-name { font-family: 'Dancing Script', cursive; font-size: 28px; font-weight: 800; color: #f1c40f; line-height: 1; }

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    max-width: 100%;
    max-height: 480px;
    filter: drop-shadow(0 20px 40px rgba(192,57,43,0.4));
    animation: heroFloat 3s ease-in-out infinite;
}

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

/* ===== SECTION BASE ===== */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: rgba(192,57,43,0.2);
    border: 1px solid rgba(192,57,43,0.4);
    color: #e74c3c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-dim);
    font-size: 16px;
    margin-top: 12px;
}

/* ===== CATEGORIAS ===== */
.categorias-section {
    background: var(--black-2);
}

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

.categoria-card {
    background: var(--black-3);
    border: 1px solid var(--black-4);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
    cursor: default;
}

.categoria-card:hover {
    transform: translateY(-5px);
    border-color: #c0392b;
    box-shadow: 0 15px 40px rgba(192,57,43,0.2);
}

.categoria-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.categoria-content h3 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
}

.categoria-sub {
    font-size: 12px;
    font-weight: 700;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.categoria-desc {
    font-size: 13px;
    color: var(--gray-dim);
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.servicos-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.servicos-section::before {
    content: 'NOSSOS SERVIÇOS';
    position: absolute;
    top: 40px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--black-3);
    border: 1px solid var(--black-4);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, #c0392b, transparent);
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192,57,43,0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

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

.svc-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.service-card:hover .svc-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.svc-content h3 {
    font-size: 15px;
    color: white;
    margin-bottom: 6px;
}

.svc-content p {
    font-size: 13px;
    color: var(--gray-dim);
    line-height: 1.5;
}

/* ===== MISSÃO ===== */
.missao-section {
    background: linear-gradient(135deg, #1a0505 0%, #2c0808 50%, #1a0505 100%);
    padding: 50px 0;
    border-top: 2px solid #c0392b;
    border-bottom: 2px solid #c0392b;
    position: relative;
    overflow: hidden;
}

.missao-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(192,57,43,0.15), transparent 70%);
}

.missao-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.missao-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.missao-target {
    font-size: 60px;
    animation: targetPulse 1.5s ease-in-out infinite;
}

@keyframes targetPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.missao-text h2 {
    font-size: 26px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.missao-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #e74c3c;
    font-style: italic;
}

.missao-responsavel {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(241,196,15,0.4);
}

.resp-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resp-name {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais-section {
    background: var(--black-2);
}

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

.diferencial-card {
    background: var(--black-3);
    border: 1px solid var(--black-4);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: 0.3s;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192,57,43,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.dif-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.diferencial-card h3 {
    font-size: 14px;
    color: white;
    line-height: 1.4;
    margin-bottom: 10px;
}

.diferencial-card p {
    font-size: 12px;
    color: var(--gray-dim);
    line-height: 1.5;
}

/* ===== STEPS ===== */
.steps-section {
    background: var(--black);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: var(--black-3);
    border: 1px solid var(--black-4);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    transition: 0.3s;
    flex: 1;
    position: relative;
    max-width: 300px;
}

.step-card:hover {
    border-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192,57,43,0.2);
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: rgba(192,57,43,0.15);
    position: absolute;
    top: 15px; right: 20px;
    line-height: 1;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(192,57,43,0.4);
    transition: 0.3s;
    color: white;
}

.step-card:hover .step-icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(192,57,43,0.6);
}

.step-card h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: var(--gray-dim);
    line-height: 1.6;
}

.step-arrow {
    font-size: 36px;
    color: rgba(192,57,43,0.5);
    font-weight: 900;
    flex-shrink: 0;
}

/* ===== CONTATO ===== */
.contato-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 50%, #0a0a0a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(192,57,43,0.1), transparent 70%);
    pointer-events: none;
}

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

.contato-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.contato-card:hover {
    border-color: rgba(192,57,43,0.5);
    transform: translateY(-3px);
}

.contato-card-wa {
    border-color: rgba(37,211,102,0.3);
}

.contato-card-wa:hover {
    border-color: rgba(37,211,102,0.6);
    box-shadow: 0 10px 30px rgba(37,211,102,0.2);
}

.contato-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.contato-phone {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.contato-phone:hover { color: #25D366; }

.contato-links { width: 100%; }

.contato-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contato-link-item:last-child { border-bottom: none; }

.contato-link-icon { font-size: 20px; }
.contato-link-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contato-link-val { color: white; text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.3s; }
.contato-link-val:hover { color: #e74c3c; }

.contato-loc-title { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.contato-loc-city { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: white; }
.contato-loc-desc { font-size: 13px; color: #888; margin-top: 4px; }

/* ===== CTA FINAL ===== */
.cta-final {
    background: #0a0a0a;
    padding: 0;
    border-top: 1px solid #1a1a1a;
}

.cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #1a0505, #0d0d0d, #0a1a05);
    padding: 30px 20px;
    gap: 30px;
    border-top: 3px solid #c0392b;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon { font-size: 45px; }

.cta-precisou {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.cta-chama {
    color: #f1c40f;
    font-style: italic;
}

.cta-solucoes {
    font-size: 13px;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.cta-right {
    flex-shrink: 0;
}

.cta-pagamentos {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px 20px;
}

.cta-pag-icon { font-size: 30px; }
.cta-aceitamos { font-size: 11px; color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cta-formas { font-size: 13px; color: white; font-weight: 700; max-width: 200px; line-height: 1.3; margin-top: 3px; }

.cta-btn-wrap {
    text-align: center;
    padding: 30px 20px;
    background: #000;
}

.cta-btn-main {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    transition: 0.3s;
    letter-spacing: 0.02em;
}

.cta-btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    color: white;
    padding: 70px 0 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    mix-blend-mode: screen;
    margin-bottom: 15px;
    display: block;
}

.footer-logo p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.footer-links h4, .footer-contato h4 {
    font-size: 14px;
    color: white;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 8px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a, .footer-contato a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover, .footer-contato a:hover { color: #e74c3c; }

.footer-resp {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    font-weight: 800;
    color: #f39c12;
}

.pag-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pag-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #aaa;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #444;
    font-size: 13px;
}

.copyright a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 700;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 992px) {
    .mobile-menu-toggle { display: block; }
    
    nav#nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        border-left: 1px solid #1a1a1a;
        z-index: 200;
        transition: 0.4s ease;
        padding: 100px 40px;
    }
    
    nav#nav-menu.active { right: 0; }
    
    nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    nav a { font-size: 16px; }
    
    .hero { padding-top: 100px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-image { order: -1; max-width: 300px; margin: 0 auto; }
    .hero h1 { font-size: 26px; }
    .hero-btns { justify-content: center; }
    .hero-desc { margin: 0 auto 20px; }
    .responsavel-badge { justify-content: center; }
    
    .brand-title { display: flex; flex-direction: column; align-items: center; }
    .brand-main { justify-content: center; }
    .brand-ninja-text { margin-left: 0; margin-top: -5px; text-align: center; }
    
    .categorias-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    
    .missao-grid { flex-direction: column; text-align: center; }
    .missao-content { flex-direction: column; }
    
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    
    .contato-grid { grid-template-columns: 1fr; }
    
    .cta-grid { flex-direction: column; text-align: center; }
    .cta-left { flex-direction: column; }
}

@media (max-width: 768px) {
    .logo img { height: 60px; }
    .brand-servicosninja { font-size: 8vw; }
    .brand-ninja-text { font-size: 16vw; }
    .section-title h2 { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .whatsapp-float { padding: 12px 15px; }
    .wa-label { display: none; }
    .whatsapp-float { border-radius: 50%; width: 60px; height: 60px; justify-content: center; }
    .header-btn { font-size: 10px; padding: 6px 12px; }
}

@media (max-width: 480px) {
    .logo img { height: 50px; }
    .brand-servicosninja { font-size: 9vw; }
    .brand-ninja-text { font-size: 18vw; }
    .hero h1 { font-size: 5.5vw; }
    .hero-image { max-width: 220px; }
    .btn-main, .btn-sec { width: 100%; justify-content: center; text-align: center; }
    .cta-btn-main { width: 100%; text-align: center; font-size: 15px; padding: 16px 20px; }
    .missao-text h2 { font-size: 20px; }
    .missao-sub { font-size: 15px; }
}
