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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f3f4f6;
}

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

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

header {
  background: #020617;
  color: #f9fafb;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.9rem;
}

.top-bar .contact {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.logo-area img {
  width: 60px;
}

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

.logo-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.logo-text p {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #1d4ed8 0, #020617 55%, #020617 100%);
  color: #f9fafb;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.9rem;
}

.hero-badge span.highlight {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: #eab308;
  color: #111827;
  font-weight: 700;
}

.hero h2 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero h2 span.accent {
  color: #e5e7eb;
  font-weight: 300;
}

.hero h2 span.strong {
  color: #eab308;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 28rem;
  margin-bottom: 0.9rem;
  color: #e5e7eb;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}

.hero-bullets span {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, #eab308, #facc15);
  color: #111827;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.7rem 1.3rem;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.hero-note {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.4rem;
}

.hero-media {
  position: relative;
}

.hero-media-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.25rem;
  padding: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.hero-media-card img {
  border-radius: 0.9rem;
  width: 100%;
}

.hero-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 1.4rem;
  background: rgba(15, 23, 42, 0.9);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* Layout utility */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.4rem;
}

/* About */

.about-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.highlight-card {
  background: #fefce8;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid #facc15;
  font-size: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #111827;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.badge span {
  color: #facc15;
  font-weight: 700;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.list li::before {
  content: "•";
  color: #1d4ed8;
  margin-right: 0.4rem;
}

/* Programs */

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

.program-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.program-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

.program-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.program-meta {
  font-size: 0.84rem;
  color: #4b5563;
}

.program-pill {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  font-size: 0.78rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1d4ed8;
}

/* Benefits */

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

.benefit-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 0.9rem;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
}

.benefit-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #111827;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

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

.gallery-item img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "Ver";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  color: #f9fafb;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

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

.lightbox img {
  max-width: 92%;
  max-height: 90vh;
  border-radius: 0.8rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #f9fafb;
  cursor: pointer;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
}

form {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 20px rgba(148, 163, 184, 0.18);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
}

.form-field label {
  font-weight: 600;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  padding: 0.45rem 0.55rem;
  font-size: 0.85rem;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.contact-info-card {
  background: #020617;
  color: #e5e7eb;
  border-radius: 1rem;
  padding: 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-info-card h3 {
  font-size: 1.05rem;
}

.contact-info-card p,
.contact-info-card li {
  font-size: 0.9rem;
}

.contact-info-card ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

/* Facebook / Map */

.embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.3rem;
}

.embed-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem;
  border: 1px solid #e5e7eb;
}

.embed-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.embed-card iframe {
  border: none;
  width: 100%;
  min-height: 280px;
}

/* WhatsApp floating button */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #22c55e;
  color: #f9fafb;
  font-size: 1.6rem;
  box-shadow: 0 15px 25px rgba(34, 197, 94, 0.65);
}

/* Footer */

footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.2rem 1.5rem 1.5rem;
  margin-top: 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.footer-bottom {
  font-size: 0.75rem;
}

/* Buttons utility */

button {
  border: none;
}

/* Responsive */

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

  .hero-media {
    order: -1;
  }

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

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

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

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

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding-inline: 1rem;
  }

  .hero-inner {
    padding-inline: 1rem;
  }

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

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

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

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

  .hero h2 {
    font-size: 1.8rem;
  }
}
