/*
Theme Name: Filo Negro
Theme URI: https://filonegro.local
Author: OpenAI
Author URI: https://openai.com
Description: Tema elegante y profesional para barbería con estética negro y dorado.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: filo-negro
*/

:root {
  --fn-black: #0b0b0b;
  --fn-black-soft: #151515;
  --fn-gold: #c9a14a;
  --fn-gold-light: #e3c27a;
  --fn-ivory: #f5f1e8;
  --fn-gray: #999999;
  --fn-white: #ffffff;
  --fn-border: rgba(201, 161, 74, 0.18);
  --fn-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  --fn-radius: 22px;
  --fn-container: min(1180px, calc(100% - 32px));
  --fn-transition: all 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fn-black);
  color: var(--fn-ivory);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--fn-container);
  margin: 0 auto;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid var(--fn-border);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(227, 194, 122, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--fn-gold-light);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at top, rgba(227, 194, 122, 0.18), rgba(11, 11, 11, 0.1));
}

.site-title {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--fn-gold-light);
}

.site-tagline {
  margin: -6px 0 0;
  color: var(--fn-gray);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--fn-border);
  color: var(--fn-ivory);
  padding: 10px 14px;
  border-radius: 999px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.main-navigation a {
  color: var(--fn-ivory);
  font-size: 0.98rem;
  transition: var(--fn-transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--fn-gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: var(--fn-transition);
  font-weight: 600;
}

.btn-primary {
  color: var(--fn-black);
  background: linear-gradient(135deg, var(--fn-gold), var(--fn-gold-light));
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201, 161, 74, 0.28);
}

.btn-secondary {
  color: var(--fn-gold-light);
  border-color: rgba(227, 194, 122, 0.42);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--fn-gold-light);
  background: rgba(227, 194, 122, 0.08);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 161, 74, 0.14), transparent 30%),
    radial-gradient(circle at left center, rgba(201, 161, 74, 0.08), transparent 30%),
    linear-gradient(135deg, #0b0b0b 0%, #141414 48%, #090909 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  background: var(--fn-gold);
  top: -120px;
  right: -120px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: var(--fn-gold-light);
  left: -120px;
  bottom: -120px;
}

.hero-inner {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 84px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fn-gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(227, 194, 122, 0.7);
}

.hero-title,
.section-title,
.entry-title,
.archive-title,
.not-found-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
}

.hero-title {
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  margin-bottom: 18px;
}

.gold-text {
  color: var(--fn-gold-light);
}

.hero-text,
.section-lead {
  max-width: 700px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.stat-card {
  padding: 18px;
  border: 1px solid var(--fn-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.stat-number {
  display: block;
  font-size: 1.65rem;
  color: var(--fn-gold-light);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.94rem;
  color: var(--fn-gray);
}

.hero-card {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: 420px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(227, 194, 122, 0.16);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--fn-shadow);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.hero-card-title {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.hero-card-subtitle {
  margin: 0;
  color: var(--fn-gray);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--fn-black);
  background: linear-gradient(135deg, var(--fn-gold), var(--fn-gold-light));
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(245, 241, 232, 0.9);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fn-gold), var(--fn-gold-light));
  margin-top: 9px;
  flex-shrink: 0;
}

.section {
  padding: 98px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 100%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 38px;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--fn-gold-light);
}

.section-lead {
  margin: 14px 0 0;
}

.section-note {
  max-width: 290px;
  color: var(--fn-gray);
  font-size: 0.96rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  padding: 28px;
  box-shadow: var(--fn-shadow);
}

.service-card,
.value-card,
.testimonial-card,
.gallery-card {
  transition: var(--fn-transition);
}

.service-card:hover,
.value-card:hover,
.testimonial-card:hover,
.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 194, 122, 0.3);
}

.service-icon,
.value-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(227, 194, 122, 0.08);
  border: 1px solid rgba(227, 194, 122, 0.14);
  color: var(--fn-gold-light);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.38rem;
  color: var(--fn-ivory);
}

.card-text {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.price {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--fn-gold-light);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--fn-gray);
  font-size: 0.9rem;
}

.about-box {
  display: grid;
  gap: 20px;
}

.about-box p {
  margin: 0;
}

.signature {
  color: var(--fn-gold-light);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
}

.gallery-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.08), rgba(11,11,11,0.88)),
    linear-gradient(135deg, rgba(201, 161, 74, 0.22), rgba(255, 255, 255, 0.04));
}

.gallery-tag {
  color: var(--fn-gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: rgba(227, 194, 122, 0.45);
  margin-bottom: 14px;
}

.testimonial-meta {
  margin-top: 18px;
  color: var(--fn-gray);
  font-size: 0.94rem;
}

.cta-section {
  padding: 70px 0 110px;
}

.cta-box {
  border-radius: 32px;
  border: 1px solid rgba(227, 194, 122, 0.22);
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(227, 194, 122, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: var(--fn-shadow);
}

.cta-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 12px;
  color: var(--fn-gold-light);
}

.cta-text {
  max-width: 760px;
  color: rgba(245, 241, 232, 0.82);
  margin: 0 0 28px;
}

.site-footer {
  border-top: 1px solid var(--fn-border);
  background: #090909;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 58px 0 28px;
}

.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 10px;
  color: var(--fn-gold-light);
}

.footer-heading {
  margin: 0 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fn-gold-light);
}

.footer-text,
.footer-list {
  color: var(--fn-gray);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0 24px;
  color: var(--fn-gray);
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.content-area {
  padding: 72px 0 110px;
}

.entry-card,
.archive-card,
.not-found-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--fn-border);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--fn-shadow);
}

.entry-title,
.archive-title,
.not-found-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--fn-gold-light);
  margin-bottom: 16px;
}

.entry-meta {
  color: var(--fn-gray);
  margin-bottom: 22px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--fn-gold-light);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.entry-content a {
  color: var(--fn-gold-light);
}

.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}

.wp-block-button__link,
input[type='submit'],
button[type='submit'] {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fn-gold), var(--fn-gold-light));
  color: var(--fn-black);
  border: 0;
  padding: 14px 22px;
  font-weight: 700;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='number'],
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fn-ivory);
  border-radius: 16px;
  padding: 14px 16px;
}

input:focus,
textarea:focus {
  outline: 1px solid rgba(227, 194, 122, 0.5);
}

.comment-list,
.children {
  list-style: none;
  padding: 0;
}

.comment-body {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
}

.pagination,
.posts-navigation,
.post-navigation {
  margin-top: 30px;
}

@media (max-width: 1040px) {
  .hero-inner,
  .footer-main,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--fn-border);
    background: rgba(11,11,11,0.98);
    box-shadow: var(--fn-shadow);
    display: none;
  }

  .main-navigation.is-open {
    display: block;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .grid-3,
  .grid-2,
  .footer-main,
  .hero-stats,
  .section-header {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: grid;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 0 74px;
  }

  .hero-card {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .site-title {
    font-size: 1.65rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .card,
  .hero-card,
  .entry-card,
  .archive-card,
  .not-found-card {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
