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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #faf7f0;
  background-color: #1f2520;
  line-height: 1.6;
}

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

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

.section {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 32, 27, 0.96);
  backdrop-filter: blur(10px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.35rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-right a {
  font-weight: 500;
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d9a546;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding: 0.25rem 0.1rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d9a546, #f3e4b5);
  transition: width 0.25s ease;
}

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

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #d9a546, #f4e1af);
  color: #2b322b;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #d9a546;
  color: #f7f3e9;
}

.btn-secondary:hover {
  background: #d9a546;
  color: #2b322b;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #f5f3ee;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f5f3ee;
}

.hero {
  position: relative;
  min-height: 80vh;
  color: #fdfaf5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

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

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(241, 224, 170, 0.25), transparent 55%), linear-gradient(to bottom, rgba(6, 12, 9, 0.85), rgba(6, 12, 9, 0.95));
}

.hero-content {
  position: relative;
  padding: 6rem 1.5rem 4rem;
  max-width: 650px;
  margin-left: min(7vw, 5rem);
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f2e1b3;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero h1 span {
  color: #f6e0b2;
}

.hero-text {
  max-width: 540px;
  font-size: 1rem;
  color: #f5f0e6;
  margin-bottom: 1.5rem;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.hero-badges span {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 25, 20, 0.85);
  border: 1px solid rgba(247, 225, 167, 0.5);
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.section .subtitle {
  color: #f2e1b3;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 600px;
  margin: 0.5rem auto 2rem;
  color: #e8e1d6;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.about {
  background: radial-gradient(circle at top left, rgba(240, 221, 170, 0.07), transparent 60%), #222a24;
}

.about p {
  color: #efe7db;
}

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

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #d9a546;
  font-size: 0.9rem;
}

.about-gallery {
  display: grid;
  gap: 0.75rem;
}

.about-gallery img:first-child {
  border-radius: 1.2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.about-gallery img:last-child {
  border-radius: 1.2rem;
  opacity: 0.95;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.social-btn.fb {
  background: #1877f2;
}

.social-btn.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.services {
  background: #1b211d;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #242b25;
  padding: 1.6rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  color: #f4e4ba;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #e1d8cb;
}

.gallery {
  background: #222821;
}

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

.gallery-item {
  border-radius: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.gallery-item:hover {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

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

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

.catalogo {
  background: radial-gradient(circle at top right, rgba(244, 222, 172, 0.18), transparent 55%), #1c231e;
}

.catalogo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.catalogo-text p {
  color: #eee0cf;
  margin-bottom: 1.5rem;
}

.video {
  background: #1b211c;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

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

.cta-full {
  background: linear-gradient(135deg, #d9a546, #f3e3b3);
  color: #2b322b;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact {
  background: #171d18;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
  color: #efe4d4;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.map-placeholder {
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.contact-form {
  background: #212822;
  padding: 1.7rem 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #f3e6d8;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.38);
  color: #f7f1e6;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #d9a546;
  box-shadow: 0 0 0 1px rgba(217, 165, 70, 0.5);
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  margin-top: 0.5rem;
}

.call-button {
  position: fixed;
  bottom: 5rem;
  right: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7f1e6;
  color: #233024;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  z-index: 1500;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  z-index: 1500;
}

.main-footer {
  background: #111611;
  color: #d2c8b8;
  padding: 1.4rem 1.5rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-right a {
  color: #f4e1b0;
}

@media (max-width: 900px) {
  .two-column {
    grid-template-columns: 1fr;
  }
  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #141a15;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .btn-outline {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    min-height: 70vh;
  }
  .hero-content {
    padding-top: 5rem;
  }
  .section {
    padding: 3rem 1.2rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
