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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2f2f2f;
  background: #f7f5f3;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 4rem 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 243, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.25rem;
  gap: 1rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
}

.logo-text p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: #d4b59c;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 6rem 1.25rem 4rem;
  max-width: 720px;
}

.hero-content h2 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: #c49a6c;
  color: #fff;
  border-color: #c49a6c;
}

.btn-primary:hover {
  background: #b1844f;
  border-color: #b1844f;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

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

.btn-outline.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary.full {
  width: 100%;
}

.about {
  background: #fdfbf8;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images img {
  border-radius: 24px;
}

.about-images .overlay-img {
  position: absolute;
  width: 55%;
  right: -6%;
  bottom: -8%;
  border: 4px solid #f7f5f3;
}

.rounded {
  border-radius: 24px;
}

.shadow {
  box-shadow: 0 18px 45px rgba(0,0,0,0.17);
}

.icon-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.25rem;
}

.icon-list li {
  margin-bottom: 0.4rem;
}

.services {
  background: #f7f5f3;
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.gallery {
  background: #fdfbf8;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: "Ver";
  position: absolute;
  inset: auto 0 0 0;
  text-align: center;
  padding: 0.3rem 0;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.gallery-item:hover::after {
  opacity: 1;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.video-section {
  background: #f7f5f3;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.17);
}

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

.social {
  background: #fdfbf8;
}

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

.social-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.social-embed {
  margin: 0.75rem 0 1rem;
}

.contact {
  background: #f7f5f3;
}

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

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

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

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #d3c7ba;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  background: #fdfbf8;
}

input:focus,
textarea:focus {
  border-color: #c49a6c;
  box-shadow: 0 0 0 2px rgba(196,154,108,0.15);
}

textarea {
  resize: vertical;
}

.site-footer {
  background: #1f1a17;
  color: #f4eee7;
  padding: 1.75rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.site-footer a {
  color: #f4eee7;
  text-decoration: underline;
  text-decoration-color: rgba(244,238,231,0.6);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 40;
}

.whatsapp-icon {
  font-size: 1.5rem;
  color: #fff;
}

/* Responsive */

@media (max-width: 799px) {
  .header-inner {
    align-items: flex-start;
  }

  .main-nav {
    font-size: 0.8rem;
    justify-content: flex-start;
  }

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

  .about-images .overlay-img {
    position: static;
    width: 70%;
    margin: 0.75rem auto 0;
    display: block;
  }

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

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .main-nav {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1.1rem;
  }
}
