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

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

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

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

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 32, 63, 0.06);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #d2a762;
}

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

.logo-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

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

.main-nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  color: #0f213f;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.main-nav a:hover {
  background: rgba(15, 32, 63, 0.08);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fdfbf7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 32, 63, 0.85), rgba(15, 32, 63, 0.4));
}

.hero-content {
  position: relative;
  padding: 4.5rem 0 4rem;
  max-width: 640px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  margin: 0 0 0.75rem;
  color: #e5d6b6;
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  margin: 0 0 1rem;
}

.hero-text {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  max-width: 36rem;
}

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

.hero-location {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #d2a762, #f3cf8a);
  color: #1b2838;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.btn.secondary {
  background: #0f213f;
  color: #fdfbf7;
}

.btn.secondary:hover {
  background: #172c55;
}

.btn.outline {
  border-color: rgba(248, 250, 252, 0.85);
  color: #fdfbf7;
  background: transparent;
}

.btn.outline:hover {
  background: rgba(248, 250, 252, 0.12);
}

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

/* Sections */

.section {
  padding: 4rem 0;
}

.section.alt-bg {
  background: #f0eee7;
}

.section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 1rem;
  text-align: center;
  color: #0f213f;
}

.section .section-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #4b5563;
}

.highlight {
  color: #d2a762;
}

/* Layouts */

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

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

.text-col p {
  margin-top: 0;
  color: #4b5563;
}

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

.icon-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #d2a762;
  font-size: 1.1rem;
}

.image-stack {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.image-stack img {
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
}

.image-stack .overlay-img {
  position: absolute;
  width: 60%;
  bottom: -14%;
  left: -10%;
  border: 4px solid #f7f6f3;
}

.image-col img.rounded {
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.22);
}

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

.badge {
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  background: rgba(15, 32, 63, 0.06);
  color: #111827;
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fdfbf7;
  border-radius: 22px;
  padding: 1.6rem 1.6rem 1.7rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 32, 63, 0.03);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #0f213f;
}

.card p {
  margin: 0 0 0.75rem;
  color: #4b5563;
  font-size: 0.94rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

/* Gallery */

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

.gallery-item {
  border-radius: 14px;
  cursor: pointer;
  object-fit: cover;
  height: 190px;
  width: 100%;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  filter: brightness(1.05);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 80;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Video */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

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

/* Redes */

.social-embeds {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.social-card {
  background: #fdfbf7;
  border-radius: 20px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 32, 63, 0.04);
}

.social-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #0f213f;
}

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

.social-link-fallback {
  font-size: 0.85rem;
  margin-top: 0.8rem;
  color: #4b5563;
}

.social-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  color: #4b5563;
  font-size: 0.95rem;
}

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

.contact-form {
  background: #fdfbf7;
  border-radius: 22px;
  padding: 1.8rem 1.8rem 2rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 32, 63, 0.05);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.22rem;
  color: #374151;
}

.form-row input,
.form-row textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  background: #f9fafb;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #d2a762;
  box-shadow: 0 0 0 1px rgba(210, 167, 98, 0.5);
  background: #ffffff;
}

/* Footer */

.site-footer {
  background: #0f213f;
  color: #e5e7eb;
  padding: 1.8rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}

.footer-inner a {
  color: #f3cf8a;
}

/* WhatsApp button */

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 20px 36px rgba(34, 197, 94, 0.7);
  filter: brightness(1.04);
}

.wa-icon {
  font-size: 1.6rem;
}

/* Responsive */

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

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .two-cols,
  .two-cols.reverse,
  .social-embeds {
    grid-template-columns: 1fr;
  }

  .image-stack {
    margin: 0 auto;
  }

  .section h2 {
    text-align: left;
  }

  .section .section-intro {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 4rem 0 3.2rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

  .gallery-item {
    height: 170px;
  }

  .contact-form {
    padding: 1.3rem 1.2rem 1.5rem;
  }
}
