:root {
  --primary: #e91e8c;
  --primary-dark: #c4176f;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --dark3: #16213e;
  --light: #f8f9fa;
  --gray: #6b7280;
  --gradient1: linear-gradient(135deg, #e91e8c 0%, #7c3aed 100%);
  --gradient2: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
  --gradient3: linear-gradient(135deg, #f59e0b 0%, #e91e8c 100%);
  --shadow: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header.scrolled { background: rgba(15,15,26,0.98); box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1280px; margin: 0 auto;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.6rem; font-weight: 800;
  background: var(--gradient1); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; -webkit-text-fill-color: white;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 18px; border-radius: 10px; font-size: 0.92rem;
  font-weight: 500; color: rgba(255,255,255,0.75);
  transition: var(--transition); position: relative;
}
.nav a:hover, .nav a.active {
  color: #fff; background: rgba(233,30,140,0.15);
}
.nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0;
  height: 2px; background: var(--primary); transition: var(--transition);
  transform: translateX(-50%);
}
.nav a:hover::after, .nav a.active::after { width: 60%; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px; background: rgba(255,255,255,0.05);
}
.hamburger span {
  width: 26px; height: 2.5px; background: #fff; border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,26,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-size: 1.3rem; padding: 14px 40px; border-radius: 12px;
  font-weight: 600; color: rgba(255,255,255,0.8);
}
.mobile-nav a:hover { background: rgba(233,30,140,0.15); color: #fff; }

/* HERO / BANNER */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; margin-top: 72px;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,26,0.85) 0%, rgba(15,15,26,0.5) 50%, rgba(124,58,237,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(233,30,140,0.15); border: 1px solid rgba(233,30,140,0.3);
  font-size: 0.85rem; font-weight: 600; color: var(--primary);
  margin-bottom: 24px; animation: fadeInUp 0.6s ease-out;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero h1 span {
  background: var(--gradient1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.7);
  margin-bottom: 36px; max-width: 540px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 12px; font-size: 1rem;
  font-weight: 700; cursor: pointer; border: none;
  transition: var(--transition); text-align: center;
}
.btn-primary {
  background: var(--gradient1); color: #fff;
  box-shadow: 0 8px 30px rgba(233,30,140,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(233,30,140,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
}

/* SECTION */
.section { padding: 100px 0; }
.section-dark { background: var(--dark2); }
.section-gradient {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header .badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(233,30,140,0.12); color: var(--primary);
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  margin-bottom: 16px;
}
.section-header h2 span {
  background: var(--gradient1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-header p {
  color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto;
  font-size: 1.05rem;
}

/* FEATURES GRID */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient1);
  transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--gradient1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }

/* GALLERY */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 1; background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-size: 0.85rem; font-weight: 600;
}
.gallery-zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(233,30,140,0.85); display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%,-50%) scale(1); }

/* PAGINATION */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.pagination a:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.pagination .active {
  background: var(--gradient1); color: #fff; border-color: var(--primary);
}

/* LIGHTBOX */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 85vh;
}
.lightbox-content img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: fixed; top: 24px; right: 24px;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2001;
}
.lightbox-close:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2001;
}
.lightbox-nav:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.7); padding: 8px 20px; border-radius: 50px;
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

/* FOOTER */
.footer {
  background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6); margin: 16px 0 24px;
  font-size: 0.92rem; max-width: 320px;
}
.footer h4 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 3px; background: var(--gradient1); border-radius: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6); font-size: 0.92rem;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before {
  content: '›'; color: var(--primary); font-weight: 700;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}
.footer-contact-item .icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(233,30,140,0.1); display: flex;
  align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0; font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
}

/* CONTACT FORM */
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 8px; font-weight: 600;
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); color: #fff;
  font-size: 0.95rem; font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* CONTACT GRID */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px;
  margin-bottom: 20px; transition: var(--transition);
}
.contact-info-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.contact-info-card h3 {
  font-size: 1.1rem; margin-bottom: 8px;
}
.contact-info-card p {
  color: rgba(255,255,255,0.6); font-size: 0.92rem;
}

/* STATS */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-card {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.06); }
.stat-number {
  font-size: 2.8rem; font-weight: 900;
  background: var(--gradient1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px;
}

/* CTA */
.cta-section {
  background: var(--gradient1); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; position: relative; }
.cta-section .btn { position: relative; }

/* BREADCRUMB */
.breadcrumb {
  padding: 100px 0 30px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  list-style: none; font-size: 0.88rem;
}
.breadcrumb-list a { color: rgba(255,255,255,0.5); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-list .current { color: var(--primary); font-weight: 600; }

/* PAGE HERO */
.page-hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  margin-bottom: 16px;
}
.page-hero h1 span {
  background: var(--gradient1); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* CONTENT */
.content-section { padding: 80px 0; }
.content-section .content {
  color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.85;
}
.content-section .content h2 {
  font-size: 1.5rem; font-weight: 700; margin: 32px 0 16px;
  color: var(--light);
}
.content-section .content h3 {
  font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px;
  color: var(--light);
}
.content-section .content p { margin-bottom: 16px; }
.content-section .content ul {
  margin: 12px 0 16px 20px;
}
.content-section .content ul li { margin-bottom: 8px; }

/* VISION CARDS */
.vision-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.vision-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 40px;
  transition: var(--transition);
}
.vision-card:hover {
  transform: translateY(-4px); background: rgba(255,255,255,0.07);
}
.vision-card .icon {
  width: 70px; height: 70px; border-radius: 16px;
  background: var(--gradient1); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px;
}
.vision-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.vision-card p { color: rgba(255,255,255,0.6); }

/* RELATED LINKS */
.related-links {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px; margin-top: 48px;
}
.related-links h3 {
  font-size: 1.15rem; font-weight: 700; margin-bottom: 20px;
}
.related-links-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.related-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.04); font-size: 0.88rem;
  color: rgba(255,255,255,0.7); transition: var(--transition);
}
.related-links a::before { content: '→'; color: var(--primary); }
.related-links a:hover { background: rgba(233,30,140,0.1); color: #fff; }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 24px 16px; }
  .contact-form { padding: 24px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
