:root {
    --ink: #0d0c0b;
    --ink-2: #17140f;
    --cream: #f6f1e7;
    --cream-2: #ece3d1;
    --copper: #b8672f;
    --copper-2: #d98c4a;
    --red: #a3271e;
    --text: #2a2420;
    --muted: #8a8072;
    --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text); line-height: 1.65; background: var(--cream);
}
h1, h2, h3, .logo { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: .02em; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* faixa listrada estilo poste de barbearia */
.barber-stripe {
    height: 6px;
    background: repeating-linear-gradient(-45deg, var(--red) 0 14px, #fff 14px 28px, #1e3a5f 28px 42px);
}

/* ---------- header ---------- */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(13,12,11,.94); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(216,140,74,.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 26px; color: var(--cream); text-decoration: none; }
.logo i { color: var(--copper-2); font-size: 20px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: #cfc6b8; text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; transition: color .15s ease; }
.nav-links a:hover { color: var(--copper-2); }
.nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 20px; cursor: pointer; }

.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: var(--radius);
    font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: .04em;
    text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn-small { padding: 9px 18px; font-size: 12.5px; }
.btn-copper { background: linear-gradient(135deg, var(--copper), var(--copper-2)); color: #fff; box-shadow: 0 10px 24px -8px rgba(184,103,47,.6); }
.btn-copper:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(184,103,47,.75); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(246,241,231,.4); }
.btn-outline-light:hover { border-color: var(--copper-2); color: var(--copper-2); }

/* ---------- hero slider ---------- */
.hero { position: relative; height: 92vh; min-height: 560px; overflow: hidden; color: var(--cream); }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
    background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(13,12,11,.55) 0%, rgba(13,12,11,.55) 40%, rgba(13,12,11,.92) 100%);
}
.hero-inner {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 24px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--copper-2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 18px;
}
.hero h1 { font-size: 72px; line-height: 1.02; max-width: 820px; margin-bottom: 18px; }
.hero h1 span { color: var(--copper-2); }
.hero p { max-width: 520px; color: #e6ddc9; font-size: 16.5px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-dots { position: absolute; z-index: 2; bottom: 28px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(246,241,231,.35); border: none; cursor: pointer; transition: background .2s ease, transform .2s ease; padding: 0; }
.hero-dot.active { background: var(--copper-2); transform: scale(1.25); }

/* ---------- seções gerais ---------- */
.section { padding: 100px 0; }
.section-dark { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--copper); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.section-dark .eyebrow { color: var(--copper-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section h2 { font-size: 42px; line-height: 1.05; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 16px; }
.section-dark .section-lead { color: #b9ae9b; }

/* ---------- serviços ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
    background: #fff; border: 1px solid #e7ddc9; border-radius: var(--radius);
    padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--copper); box-shadow: 0 20px 36px -18px rgba(184,103,47,.35); }
.service-icon {
    width: 50px; height: 50px; border-radius: var(--radius); margin-bottom: 18px;
    background: linear-gradient(135deg, var(--copper), var(--copper-2)); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.service-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.service-head h3 { font-size: 22px; }
.service-price { color: var(--copper); font-weight: 800; font-size: 17px; white-space: nowrap; }
.service-card p { color: var(--muted); font-size: 14px; }

/* ---------- galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55)); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover::after { opacity: 1; }

/* ---------- sobre ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0,0,0,.5); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; }
.about-list i { color: var(--copper-2); margin-top: 3px; }

/* ---------- depoimentos ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
    background: var(--ink-2); border: 1px solid rgba(216,140,74,.2); border-radius: var(--radius);
    padding: 28px; text-align: left;
}
.testimonial .stars { color: var(--copper-2); font-size: 13px; margin-bottom: 14px; }
.testimonial p { color: #d8cfbe; font-size: 14.5px; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; font-size: 13.5px; color: var(--cream); }
.testimonial-tag { font-size: 12px; color: var(--muted); }

/* ---------- horário / contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid #e7ddc9; font-size: 14.5px; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--copper); }
.contact-card {
    background: var(--ink); color: var(--cream); border-radius: var(--radius);
    padding: 36px 32px;
}
.contact-card h3 { font-size: 26px; margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 14.5px; color: #d8cfbe; }
.contact-row i { color: var(--copper-2); margin-top: 3px; width: 16px; }
.contact-card .btn { margin-top: 12px; width: 100%; justify-content: center; }
.map-frame { grid-column: 1 / -1; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #a89d89; padding: 40px 0; border-top: 1px solid rgba(216,140,74,.18); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .logo { font-size: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(246,241,231,.06);
    display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--copper); transform: translateY(-3px); }
.footer p { width: 100%; text-align: center; font-size: 12px; margin-top: 6px; color: #6b6252; }

@media (max-width: 960px) {
    .hero h1 { font-size: 52px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-media img { aspect-ratio: 16/9; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero { height: 100vh; }
    .hero h1 { font-size: 40px; }
    .section { padding: 72px 0; }
    .section h2 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}
