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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2933;
  background: #050816;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo-image {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.logo-text h1 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fafb;
}

.logo-text p {
  margin: 0;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-location {
  font-size: 0.8rem;
  color: #9ca3af;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(249, 115, 22, 0.4) 0, rgba(5, 8, 22, 0.92) 55%, #050816 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  color: #f9fafb;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 2.1rem;
  margin: 0 0 0.6rem;
  color: #fbbf24;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  max-width: 560px;
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.btn.primary {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #111827;
  box-shadow: 0 15px 35px rgba(248, 171, 48, 0.45);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 171, 48, 0.6);
}

.btn.secondary {
  background: transparent;
  color: #f9fafb;
  border-color: rgba(249, 250, 251, 0.4);
}

.btn.secondary:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn.whatsapp-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #f9fafb;
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.45);
}

.btn.whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.6);
}

.btn.full {
  width: 100%;
}

main {
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #020617 100%);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.25rem;
  color: #e5e7eb;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 1.75rem;
  margin-top: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
  color: #f9fafb;
}

.section-header p {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

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

.col-text p {
  font-size: 0.96rem;
  color: #d1d5db;
}

.col-text p + p {
  margin-top: 0.75rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #facc15);
}

.highlight {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: #fbbf24;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

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

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

.gallery-item {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0.9rem;
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  opacity: 0.96;
}

.gallery-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.86rem;
  color: #9ca3af;
}

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

.social-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
  border-radius: 1.3rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.social-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: #f9fafb;
}

.embed-wrapper {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px dashed rgba(148, 163, 184, 0.45);
}

.embed-wrapper iframe {
  width: 100%;
  min-height: 320px;
}

.ig-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1rem;
  font-weight: 500;
  font-size: 0.98rem;
  color: #f97316;
}

.social-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #fbbf24;
}

.social-link:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.contact-form {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), #020617);
  border-radius: 1.4rem;
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.96);
}

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

label {
  font-size: 0.82rem;
  color: #e5e7eb;
}

input,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.92);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: #f9fafb;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(248, 113, 22, 0.4);
  background: rgba(15, 23, 42, 0.98);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
  color: #f9fafb;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: #d1d5db;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-list a {
  color: #fbbf24;
}

.contact-note {
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin-top: 1.5rem;
  padding: 1.6rem 1.5rem 2rem;
  background: #020617;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #9ca3af;
  font-size: 0.86rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  color: #e5e7eb;
}

.footer-made-by a {
  color: #fbbf24;
}

.footer-made-by a:hover {
  text-decoration: underline;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.9);
  z-index: 40;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.9);
}

@media (max-width: 900px) {
  .two-cols,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 82vh;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .logo-image {
    width: 44px;
    height: 44px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding-inline: 1.1rem;
  }

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