:root {
  --bg: #05070b;
  --bg-soft: #0b1018;
  --bg-deep: #03050a;
  --panel: rgba(14, 20, 30, 0.88);
  --panel-strong: #101722;
  --panel-soft: #121b28;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f7ff;
  --muted: #b8c6da;
  --muted-2: #8ea2bf;
  --primary: #1f86ff;
  --primary-strong: #57a7ff;
  --primary-dark: #0d6fe6;
  --primary-soft: rgba(31, 134, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.045);
  --white: #ffffff;
  --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 134, 255, 0.08), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(31, 134, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #05070b 0%, #0b1018 48%, #03050a 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

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

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--primary-strong);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.about-text h2,
.contact-box h2,
.cta-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-heading p,
.about-text p,
.contact-box > p,
.cta-content p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #64b5ff);
  color: #07111f;
  box-shadow: 0 18px 36px rgba(31, 134, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-strong));
  box-shadow: 0 22px 44px rgba(31, 134, 255, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(31, 134, 255, 0.22);
}

.btn-small {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #07111f;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-small:hover {
  background: var(--primary-dark);
}


.btn-oculto {
  display: none !important;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 14, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

.brand-badge {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(31, 134, 255, 0.18);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.brand-ring {
  display: none;
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  image-rendering: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-top {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.brand-bottom {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-desktop {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.nav-links a {
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #d3def0;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn-main {
  min-width: 158px;
}

/* MOBILE */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  display: none;
}

.nav-mobile-links,
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-mobile-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  font-weight: 600;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("interior2.jpeg") center center / cover no-repeat;
  overflow: hidden;
  padding: 130px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.50) 46%, rgba(0,0,0,0.26) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.64)),
    radial-gradient(circle at 78% 82%, rgba(31,134,255,0.14), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 34px;
  align-items: end;
}

.hero-copy {
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid transparent;
  max-width: 100%;
  text-align: center;
}

.status-badge.open {
  background: rgba(34, 197, 94, 0.12);
  color: #d1fae5;
  border-color: rgba(34, 197, 94, 0.22);
}

.status-badge.break {
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  border-color: rgba(245, 158, 11, 0.22);
}

.status-badge.closed {
  background: rgba(220, 38, 38, 0.12);
  color: #fecaca;
  border-color: rgba(220, 38, 38, 0.22);
}

.shop-closed-banner {
  display: none;
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #fff;
  font-weight: 600;
  max-width: 560px;
}

.shop-closed-banner.show {
  display: block;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  max-width: 760px;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
}

.hero p {
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  margin-bottom: 26px;
}

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

.hero-card {
  background:
    linear-gradient(180deg, rgba(17, 25, 38, 0.82), rgba(8, 13, 22, 0.92));
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-card-label {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(31, 134, 255, 0.18);
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 18px;
}

.hero-card-list {
  display: grid;
  gap: 14px;
}

.hero-card-item {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-card-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-card-item strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image img {
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

.about-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.point-card {
  padding: 18px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.point-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--white);
}

.point-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17,25,38,0.95), rgba(9,15,24,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 134, 255, 0.26);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.service-number,
.service-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-number {
  background: var(--primary-soft);
  color: var(--primary-strong);
  border: 1px solid rgba(31, 134, 255, 0.18);
}

.service-time {
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border: 1px solid var(--line);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  flex: 1;
  min-height: 72px;
  color: var(--muted);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.service-meta span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-strong);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-box,
.map-box {
  border-radius: 26px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(17,25,38,0.95), rgba(9,15,24,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.contact-info {
  display: grid;
  gap: 16px;
  margin: 26px 0 28px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.075);
}

.contact-item small {
  display: block;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--white);
}

.contact-item a {
  color: var(--primary-strong);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-box iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 18px;
  filter: saturate(0.9) contrast(1.05);
}

/* CTA */
.cta-section {
  padding: 86px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at center, rgba(31, 134, 255, 0.08), transparent 30%),
    radial-gradient(circle at 72% 0%, rgba(31, 134, 255, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.cta-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 34px 0;
  background: rgba(3, 5, 10, 0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.footer h3 span {
  color: var(--primary);
}

.footer p {
  color: var(--muted);
}

.footer-copy {
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-card {
    max-width: 460px;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10,14,22,0.98), rgba(7,11,18,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.42);
  }

  .nav-panel.open {
    display: flex;
  }

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

  .hero {
    min-height: auto;
    padding: 120px 0 70px;
    background-position: center 20%;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 80px 0;
  }

  .brand-text {
    display: flex;
  }

  .brand-top {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
  }

  .brand-bottom {
    font-size: 1rem;
    line-height: 1;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-card {
    max-width: 100%;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .contact-actions,
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .map-box iframe {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, 92%);
  }

  .nav {
    min-height: 76px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 58px);
  }

  .brand-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    padding: 4px;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
  }

  .brand-text {
    display: flex;
  }

  .brand-top {
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    margin-bottom: 3px;
    white-space: nowrap;
  }

  .brand-bottom {
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding: 106px 0 50px;
    background-position: center 22%;
  }

  .hero-copy,
  .hero-card {
    text-align: center;
  }

  .hero p,
  .status-badge,
  .shop-closed-banner {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card-top {
    flex-direction: column;
    align-items: center;
  }

  .section-heading h2,
  .about-text h2,
  .contact-box h2,
  .cta-content h2 {
    font-size: 2.2rem;
  }

  .about-image img {
    min-height: 320px;
  }

  .contact-box,
  .map-box {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}
