/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c0392b;
  --red-dark: #a93226;
  --dark: #1a1a1a;
  --dark2: #242424;
  --dark3: #2e2e2e;
  --light: #f5f5f5;
  --text: #333;
  --text-muted: #666;
  --white: #fff;
  --radius: 8px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Oswald', sans-serif; line-height: 1.2; }

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-icon {
  font-size: 1.3rem;
  color: var(--red);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--red); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: rgba(255,255,255,0.85);
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { background: rgba(255,255,255,0.05); color: var(--red); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.25rem;
  max-width: 700px;
}

.hero__tag {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.stars { color: #f5c518; font-size: 1rem; letter-spacing: 0.05em; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--red);
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: currentColor;
}

.btn--outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); transform: translateY(-1px); }

/* ===== Sections ===== */
.section { padding: 5rem 0; }

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section--dark .section__desc { color: rgba(255,255,255,0.6); }

/* Label */
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.label--light { color: var(--red); }

/* ===== Two-col (Sobre) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col__text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.two-col__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.badge {
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 40px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.business-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== Hours ===== */
.hours-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.hours-table {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child { border-bottom: none; }

.hours-row:nth-child(odd) { background: var(--light); }

.hours-row--closed .hours-time { color: #aaa; font-style: italic; }

.hours-day { font-weight: 500; font-size: 0.95rem; }
.hours-time { font-weight: 600; font-size: 0.95rem; color: var(--red); }

.hours-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.note-icon { font-size: 2.5rem; }

.hours-note p { color: var(--text-muted); line-height: 1.7; }

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-card:hover { border-color: var(--red); }

.contact-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }

.contact-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.contact-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.contact-link:hover { opacity: 0.75; }

/* ===== Footer ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner { text-align: center; }

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.footer__address { font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer__copy { font-size: 0.78rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col__text { order: 1; }
  .two-col__image { order: 2; }

  .business-img { height: 260px; }

  .hours-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  .hero__title { font-size: 3rem; }

  .footer__address { font-size: 0.78rem; }
}
