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

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #050506;
  color: #f7f7f7;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top nav */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(5, 5, 6, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.25em;
  font-size: 0.95rem;
  color: #d2914b;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c3c3c3;
}

.main-menu {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-menu a {
  position: relative;
  padding-bottom: 0.2rem;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #d2914b, #f5c16b);
  transition: width 0.3s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

/* Buttons */

.btn-cta,
.btn-cta-small,
.btn-secondary {
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-cta,
.btn-cta-small {
  background: linear-gradient(135deg, #d2914b, #f5c16b);
  color: #151515;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.btn-cta:hover,
.btn-cta-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.btn-cta-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.78rem;
}

.btn-secondary {
  background: transparent;
  color: #f7f7f7;
  border: 1px solid rgba(242, 206, 146, 0.45);
}

.btn-secondary:hover {
  background: rgba(242, 206, 146, 0.07);
}

.full-width {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.2rem;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(210, 145, 75, 0.4), transparent 55%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #050506 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 4rem 1.5rem 3rem;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: #f2ce92;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 32rem;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #d7d7d7;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(242, 206, 146, 0.35);
  padding: 0.45rem 0.9rem;
  background: rgba(0, 0, 0, 0.35);
}

/* Sections */

.section {
  padding: 4.5rem 0;
  background: #050506;
}

.section.alt {
  background: radial-gradient(circle at top, rgba(210, 145, 75, 0.09), #050506 60%);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  color: #d3d3d3;
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Services */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.service-card {
  padding: 1.2rem 1.1rem;
  background: radial-gradient(circle at top left, rgba(210, 145, 75, 0.12), rgba(13, 13, 13, 0.96));
  border: 1px solid rgba(242, 206, 146, 0.18);
  border-radius: 1rem;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #f8f4ee;
}

.service-card p {
  font-size: 0.9rem;
  color: #c9c9c9;
}

.highlight-box {
  background: radial-gradient(circle at top, rgba(210, 145, 75, 0.15), rgba(10, 10, 10, 0.98));
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(242, 206, 146, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

.highlight-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-text {
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

.price-text span:first-child {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #f2ce92;
  display: block;
}

.promo-list {
  list-style: none;
  margin-bottom: 1.2rem;
}

.promo-list li {
  font-size: 0.9rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.1rem;
}

.promo-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f2ce92;
}

.small-note {
  font-size: 0.8rem;
  color: #a7a7a7;
  margin-top: 0.3rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  height: 170px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  filter: brightness(1.05);
}

/* Video */

.video-cols {
  align-items: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(242, 206, 146, 0.24);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Redes */

.social-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.social-list li {
  margin-bottom: 0.6rem;
}

.social-list a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(242, 206, 146, 0.6);
}

.fb-embed {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.85);
}

/* Contact */

.contact-cols {
  align-items: stretch;
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-row label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f2ce92;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: #101012;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.9rem;
  color: #f7f7f7;
  font-size: 0.9rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(242, 206, 146, 0.85);
  box-shadow: 0 0 0 1px rgba(242, 206, 146, 0.4);
}

.contact-info {
  background: radial-gradient(circle at top, rgba(210, 145, 75, 0.12), rgba(10, 10, 11, 0.96));
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 1rem;
}

.contact-info li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-info a {
  text-decoration: underline;
  text-decoration-color: rgba(242, 206, 146, 0.7);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0 2rem;
  background: #050506;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #a6a6a6;
}

.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-made a {
  color: #f2ce92;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox-inner {
  position: relative;
  max-width: 960px;
  width: 90%;
}

.lightbox img {
  border-radius: 1rem;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: -0.2rem;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* WhatsApp button */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  z-index: 30;
  font-size: 1.6rem;
}

/* Responsive */

@media (max-width: 960px) {
  .main-menu {
    display: none;
  }

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

  .fb-embed iframe {
    width: 100%;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

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

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item {
    height: 150px;
  }
}
