/* ============================================================
   NAVALHA DE OURO — Barbearia Demo
   Estilo: Urbano intenso (preto + vermelho + dourado)
   ============================================================ */

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

:root {
    --bg:        #000;
    --bg-soft:   #0a0a0a;
    --bg-card:   #111;
    --border:    #1f1f1f;
    --text:      #f5f5f5;
    --text-soft: #a3a3a3;
    --text-dim:  #6b6b6b;
    --primary:   #ff2d2d;
    --primary-2: #d40000;
    --accent:    #d4af37;
    --wa:        #25d366;
    --radius:    4px;
    --t:         .35s cubic-bezier(.4,0,.2,1);
    --t-slow:    .7s cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: 'Anton', 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .95;
    color: #fff;
    text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.2rem; }

em {
    font-style: normal;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(255, 45, 45, .5);
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }

/* ==== TOPBAR ==== */
.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}
.topbar-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.topbar-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==== BUTTONS ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: all var(--t);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 45, 45, .5);
}
.btn-outline {
    background: transparent;
    border-color: #333;
    color: #fff;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-whatsapp {
    background: var(--wa);
    color: #fff;
}
.btn-whatsapp:hover {
    background: #1eb955;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, .5);
}
.btn-lg { padding: 17px 34px; font-size: 13px; }
.btn-sm { padding: 10px 20px; font-size: 11px; }

.btn-glow {
    box-shadow: 0 0 30px rgba(255, 45, 45, .4);
    animation: btn-glow 2.5s ease-in-out infinite;
}
@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 45, 45, .4); }
    50%      { box-shadow: 0 0 50px rgba(255, 45, 45, .7); }
}

/* ==== HEADER ==== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--t);
}
.header.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, .95);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 1.35rem;
    letter-spacing: .02em;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}
.logo-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(255, 45, 45, .6));
}
.logo-text em { color: var(--primary); }

.nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
}
.nav a {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: color var(--t);
    position: relative;
    padding: 6px 0;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--t);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.status-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.status-open .dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%      { opacity: .4; }
}
.header-cta { padding: 10px 20px; font-size: 11px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}
.menu-toggle span {
    width: 26px; height: 2px;
    background: #fff;
    transition: all var(--t);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==== HERO ==== */
.hero {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 40%, rgba(255, 45, 45, .08) 0%, transparent 55%),
        var(--bg);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text { max-width: 620px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 45, 45, .1);
    border: 1px solid rgba(255, 45, 45, .35);
    border-radius: 50px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-dot 2s infinite;
}

.hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: .95;
}
.hero-title .line-1 { display: block; color: #fff; }
.hero-title .line-2 { display: block; padding-left: 32px; }
.hero-title em {
    color: var(--primary);
    font-style: italic;
    transform: skewX(-8deg);
    display: inline-block;
    text-shadow: 0 0 40px rgba(255, 45, 45, .5);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    color: #fff;
    letter-spacing: .01em;
}
.stat span {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.stat span i { color: var(--accent); }

/* Imagem do hero */
.hero-image {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 560px;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(.95);
    position: relative;
    z-index: 1;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    right: 16px; bottom: 16px;
    border: 2px solid var(--primary);
    z-index: 0;
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.7) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-image-badge {
    position: absolute;
    bottom: 24px; left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-left: 3px solid #22c55e;
    z-index: 3;
}
.hero-image-badge .dot {
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 12px #22c55e;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}
.hero-image-badge strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}
.hero-image-badge span {
    font-size: 11px;
    color: var(--text-soft);
}
.hero-image-tag {
    position: absolute;
    top: 20px; right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    z-index: 3;
}
.hero-image-tag i { color: var(--accent); }

.hero-scroll {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 10px;
    letter-spacing: .3em;
    font-weight: 700;
    z-index: 2;
}
.hero-scroll i { animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}

/* ==== MARQUEE (faixa) ==== */
.marquee {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.marquee-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    align-items: center;
}
.marquee-track span {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em;
    flex-shrink: 0;
}
.marquee-track .dot {
    font-size: 1rem !important;
    color: rgba(255,255,255,.5) !important;
}

/* ==== SECTION HEAD ==== */
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 1.02rem; }

/* ==== SERVIÇOS ==== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}
.service-card {
    background: var(--bg);
    padding: 40px 32px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    background: #0a0a0a;
    z-index: 2;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
}
.service-card:hover .service-footer i {
    transform: translateX(6px);
    color: var(--primary);
}

.service-num {
    position: absolute;
    top: 20px; right: 20px;
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
}

.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 45, .1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 22px;
    transition: all var(--t);
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.service-card p {
    color: var(--text-soft);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.service-price {
    font-family: 'Anton', sans-serif;
    font-size: 1.7rem;
    color: #fff;
    letter-spacing: .02em;
}
.service-footer i {
    color: var(--text-dim);
    transition: all var(--t);
}

.service-card.featured {
    background: linear-gradient(180deg, rgba(255, 45, 45, .1) 0%, var(--bg) 60%);
}
.service-card.featured .service-icon {
    background: var(--primary);
    color: #fff;
}
.service-badge {
    position: absolute;
    top: 20px; left: -2px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    padding: 6px 14px 6px 20px;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

/* ==== SOBRE ==== */
.about { background: var(--bg-soft); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: contrast(1.1) saturate(.9);
    position: relative;
    z-index: 1;
}
.about-frame {
    position: absolute;
    top: 20px; left: 20px;
    right: -20px; bottom: -20px;
    border: 2px solid var(--primary);
    z-index: 0;
}
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 2;
    transform: rotate(-6deg);
    box-shadow: 0 20px 50px rgba(255, 45, 45, .4);
}
.about-badge strong {
    font-family: 'Anton', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
}
.about-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}
.about-content h2 { margin-bottom: 22px; }
.about-content p {
    color: var(--text-soft);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}
.about-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 34px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}
.about-list i {
    color: #fff;
    background: var(--primary);
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

/* ==== BARBEIROS ==== */
.team-section { background: var(--bg); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.team-card { position: relative; }
.team-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    aspect-ratio: 3/4;
    background: var(--bg-card);
}
.team-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.4) contrast(1.05);
    transition: all var(--t-slow);
}
.team-card:hover .team-img img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.1);
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 45, 45, .8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--t);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social {
    display: flex;
    gap: 10px;
    transform: translateY(20px);
    transition: transform var(--t) .1s;
}
.team-card:hover .team-social { transform: translateY(0); }
.team-social a {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 16px;
    transition: all var(--t);
}
.team-social a:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}
.team-num {
    position: absolute;
    top: 20px; left: 20px;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    background: var(--primary);
    padding: 4px 12px;
    letter-spacing: .05em;
}
.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.team-role {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ==== GALERIA ==== */
.gallery-section { background: var(--bg-soft); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--bg-card);
    height: 100%;
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
    transition: all var(--t-slow);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}
.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-label {
    position: absolute;
    bottom: 20px; left: 20px;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--t) .1s;
    pointer-events: none;
}
.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

/* ==== DEPOIMENTOS ==== */
.testimonials { background: var(--bg); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 34px 30px;
    transition: all var(--t);
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px; right: 24px;
    font-family: 'Anton', sans-serif;
    font-size: 7rem;
    color: rgba(255, 45, 45, .1);
    line-height: 1;
    pointer-events: none;
}
.testimonial:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}
.testimonial-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: .95rem;
    letter-spacing: .02em;
    flex-shrink: 0;
}
.testimonial-head strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.testimonial-head span {
    font-size: 11px;
    color: var(--text-dim);
}
.testimonial-g {
    margin-left: auto;
    color: var(--text-dim);
    font-size: 18px;
}
.stars {
    color: var(--accent);
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.testimonial p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ==== INFO ==== */
.info-section { background: var(--bg-soft); }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px 32px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--t);
}
.info-card:hover::before { transform: scaleY(1); }
.info-card:hover { border-color: var(--primary); }
.info-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 45, .12);
    color: var(--primary);
    border-radius: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}
.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    letter-spacing: .02em;
}
.hours li {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--text-soft); }
.hours li span:last-child {
    color: #fff;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
    letter-spacing: .04em;
}
.hours .closed { color: var(--text-dim) !important; }

.address {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 20px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
    font-size: 14px;
    transition: color var(--t);
}
.contact-info a:hover { color: var(--primary); }
.contact-info i {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 45, .1);
    color: var(--primary);
    border-radius: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

/* ==== CTA FINAL ==== */
.cta-final {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background: var(--bg);
    overflow: hidden;
}
.cta-final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 45, 45, .25) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, #1a0000 50%, var(--bg) 100%);
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}
.cta-final h2 {
    color: #fff;
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
}
.cta-final h2 em {
    font-style: italic;
    transform: skewX(-8deg);
    display: inline-block;
}
.cta-final p {
    color: var(--text-soft);
    font-size: 1.05rem;
    margin-bottom: 34px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final p strong { color: #fff; font-weight: 700; }
.cta-final .btn-whatsapp {
    background: #fff;
    color: #000;
}
.cta-final .btn-whatsapp:hover {
    background: var(--wa);
    color: #fff;
}

/* ==== FOOTER ==== */
.footer {
    background: #050505;
    padding: 70px 0 0;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}
.footer-brand p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.8;
    margin: 18px 0 22px;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 15px;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
    color: var(--text-soft);
    font-size: 13px;
    transition: all var(--t);
}
.footer-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: .05em;
}
.footer-bottom a {
    color: var(--primary);
    font-weight: 600;
}

/* ==== WHATSAPP FLUTUANTE ==== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wa);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, .5);
    z-index: 999;
    transition: transform var(--t);
}
.whatsapp-float:hover { transform: scale(1.1); }
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--wa);
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ==== REVEAL ==== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-figure {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: scale(.95);
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.lightbox.open .lightbox-figure { transform: scale(1); }

.lightbox-figure img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    border: 1px solid rgba(255,255,255,.1);
}

.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.lightbox-caption #lightboxLabel { color: #fff; }
.lightbox-counter {
    color: var(--text-soft);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: .15em;
    font-weight: 600;
}
.lightbox-counter #lightboxCurrent {
    color: var(--primary);
    font-family: 'Anton', sans-serif;
    font-size: 16px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all var(--t);
    z-index: 2;
}
.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--t);
    z-index: 2;
}
.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

body.lightbox-open { overflow: hidden; }

/* ==== RESPONSIVO ==== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .about-grid { gap: 50px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 2; }
}

@media (max-width: 860px) {
    .header-cta { display: none; }
    .status-open { display: none; }
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 28px;
        margin: 0;
        transition: right var(--t);
        border-left: 1px solid var(--border);
        z-index: 999;
    }
    .nav.open { right: 0; }
    .nav a { font-size: 17px; padding: 8px 0; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { max-width: 100%; }
    .hero-image {
        aspect-ratio: 4/3;
        max-height: 400px;
        order: -1;
    }
    .hero-image::before { top: -12px; left: -12px; right: 12px; bottom: 12px; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img img { aspect-ratio: 4/3; }
    .about-frame { display: none; }

    .hero-stats { gap: 30px; }
    .stat strong { font-size: 1.9rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }

    /* Lightbox */
    .lightbox { padding: 50px 20px; }
    .lightbox-nav { width: 44px; height: 44px; font-size: 16px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }
    .lightbox-figure img { max-height: calc(100vh - 140px); }
    .lightbox-caption { font-size: 1rem; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .container { padding: 0 18px; }

    .hero { padding: 50px 0 50px; min-height: auto; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero-title .line-2 { padding-left: 16px; }
    .hero-sub { font-size: .98rem; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 36px; }
    .hero-actions .btn { width: 100%; }
    .hero-image { aspect-ratio: 1; max-height: 340px; }
    .hero-stats { gap: 22px; padding-top: 22px; }
    .stat strong { font-size: 1.7rem; }
    .stat span { font-size: 10px; }

    .marquee-track span { font-size: 1.3rem; }
    .marquee { padding: 14px 0; }

    .services-grid,
    .team-grid,
    .testimonials-grid,
    .info-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(4) { grid-column: span 1; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .whatsapp-float { width: 54px; height: 54px; font-size: 26px; bottom: 16px; right: 16px; }

    .about-badge { padding: 16px 20px; bottom: -12px; right: -12px; }
    .about-badge strong { font-size: 2rem; }
}