:root {
  --cyan: #08aeea;
  --pink: #f00086;
  --yellow: #fff200;
  --black: #050505;
  --dark: #121218;
  --white: #ffffff;
  --gray: #f6f7fb;
  --muted: #686878;
  --line: rgba(255,255,255,.09);
  --shadow: 0 22px 60px rgba(0,0,0,.15);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  min-height: 100vh;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(8,174,234,.25), rgba(240,0,134,.15) 42%, rgba(255,242,0,.1) 100%),
    #050505;
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .9;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
.glow-1 { width: 280px; height: 280px; background: rgba(8,174,234,.35); top: 8%; left: -5%; }
.glow-2 { width: 320px; height: 320px; background: rgba(240,0,134,.30); top: 20%; right: -8%; animation-delay: .6s; }
.glow-3 { width: 250px; height: 250px; background: rgba(255,242,0,.22); bottom: 8%; left: 40%; animation-delay: 1.2s; }

@keyframes floatGlow {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(20px) translateX(10px) scale(1.08); }
}

.navbar, .hero, .section, .footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 0 0 6px rgba(255,255,255,.08);
}
.brand strong { display: block; font-size: 1rem; font-weight: 800; }
.brand small { opacity: .8; font-size: .78rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}
.nav-links a { transition: .25s ease; opacity: .92; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 12px 30px rgba(240,0,134,.25);
}
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 31px; }

.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0 90px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 900;
  font-size: .78rem;
}
.dark-text { color: var(--pink); }

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .93;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
}
.hero h1 span {
  display: block;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 8px 0 rgba(240,0,134,.75);
}
.hero-text {
  max-width: 620px;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  line-height: 1.75;
  color: rgba(255,255,255,.84);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 16px 35px rgba(240,0,134,.25);
}
.secondary {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 700px;
}
.stat-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  padding: 18px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
}
.stat-card span { color: rgba(255,255,255,.8); font-size: .92rem; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual-main {
  width: min(420px, 100%);
  aspect-ratio: 1/1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 40px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.hero-chip {
  position: absolute;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: floatChip 4.8s ease-in-out infinite;
}
.chip-cyan { top: 10%; right: 5%; background: var(--cyan); color: white; }
.chip-pink { bottom: 18%; left: 0; background: var(--pink); color: white; animation-delay: .8s; }
.chip-yellow { bottom: 8%; right: 12%; background: var(--yellow); color: var(--black); animation-delay: 1.2s; }
@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ticker-wrap {
  overflow: hidden;
  background: var(--black);
  color: white;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 0;
  animation: tickerMove 22s linear infinite;
}
.ticker span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 96px 0;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-title h2,
.catalog-copy h2,
.location-copy h2,
.cta-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.section-title p,
.catalog-copy p,
.location-copy p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  border-radius: var(--radius);
  padding: 30px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-card::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  right: -70px;
  top: -70px;
}
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { line-height: 1.65; }
.feature-card.cyan { background: linear-gradient(145deg, var(--cyan), #0370b4); color: white; }
.feature-card.pink { background: linear-gradient(145deg, var(--pink), #b00069); color: white; }
.feature-card.yellow { background: linear-gradient(145deg, var(--yellow), #f0bf00); color: var(--black); }
.feature-card.dark { background: linear-gradient(145deg, #1e1e27, #050505); color: white; }

.catalog-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.text-link { display: inline-block; margin-top: 20px; color: var(--pink); font-weight: 900; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-card {
  background: white;
  border: 1px solid #eceef5;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15,20,30,.08);
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow);
}
.product-card:nth-child(1) { border-top: 8px solid var(--cyan); }
.product-card:nth-child(2) { border-top: 8px solid var(--pink); }
.product-card:nth-child(3) { border-top: 8px solid var(--yellow); }
.product-card:nth-child(4) { border-top: 8px solid var(--black); }
.product-icon { font-size: 2.4rem; margin: 20px 0 18px; }
.product-card h3 { margin-bottom: 10px; }
.product-card p { color: var(--muted); line-height: 1.65; }
.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gray);
  font-weight: 800;
  font-size: .76rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 210px;
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 28px;
  color: white;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}
.gallery-item span {
  background: rgba(0,0,0,.35);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.large {
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(8,174,234,.8), rgba(240,0,134,.65)), url('assets/logo-fancy.jpg') center/cover;
}
.pink-bg { background: linear-gradient(145deg, #ff1594, #b70067); }
.yellow-bg { background: linear-gradient(145deg, #fff200, #ffcb05); color: var(--black); }
.yellow-bg span { background: rgba(255,255,255,.5); }
.dark-bg { grid-column: span 2; background: linear-gradient(145deg, #121218, var(--cyan)); }


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.portfolio-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eceef5;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.16);
}
.portfolio-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.portfolio-info {
  padding: 22px;
}
.portfolio-info h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}
.portfolio-info p {
  color: var(--muted);
  line-height: 1.7;
}
.portfolio-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}
.cyan-badge { background: rgba(8,174,234,.12); color: #0370b4; }
.pink-badge { background: rgba(240,0,134,.12); color: #b00069; }
.yellow-badge { background: rgba(255,242,0,.35); color: #665100; }
.dark-badge { background: rgba(5,5,5,.1); color: #050505; }


.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: white;
  border: 1px solid #eceef5;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(15,20,30,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-pill:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.category-pill span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(145deg, rgba(8,174,234,.18), rgba(240,0,134,.14));
}
.category-pill strong {
  font-size: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-card {
  background: white;
  border: 1px solid #eceef5;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15,20,30,.08);
  position: relative;
}
.timeline-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--black);
  background: linear-gradient(145deg, var(--yellow), #ffe100);
}
.timeline-card h3 { margin-bottom: 10px; }
.timeline-card p { color: var(--muted); line-height: 1.65; }

.location-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-card {
  display: block;
  padding: 20px 22px;
  border-radius: 22px;
  background: white;
  border: 1px solid #eceef5;
  box-shadow: 0 16px 34px rgba(15,20,30,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card strong { display: block; margin-bottom: 6px; }
.contact-card span { color: var(--muted); }
.facebook-card { border-left: 8px solid var(--cyan); }
.whatsapp-card { border-left: 8px solid var(--pink); }

.map-card {
  min-height: 420px;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eceef5;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 26px;
  align-items: center;
  padding: 56px;
  border-radius: 38px;
  background: linear-gradient(135deg, #09090d, #181822);
  position: relative;
  overflow: hidden;
  color: white;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: linear-gradient(var(--cyan), var(--pink), var(--yellow));
  filter: blur(60px);
  opacity: .45;
}
.cta-copy, .contact-form { position: relative; z-index: 1; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: white;
  outline: none;
  font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.62); }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand strong { display: block; }
.footer-brand p { color: var(--muted); }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}
.footer-links a:hover { color: var(--pink); }

.floating-socials {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.floating-socials a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}
.floating-socials a:first-child { background: #1877f2; }
.floating-socials a:last-child { background: linear-gradient(135deg, var(--pink), var(--cyan)); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: rgba(5,5,5,.96);
    border: 1px solid rgba(255,255,255,.09);
  }
  .nav-links.open { display: flex; }

  .hero,
  .catalog-layout,
  .location-section,
  .cta-section { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .expanded-catalog { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero-stats,
  .feature-grid,
  .product-grid,
  .timeline,
  .gallery-grid,
  .portfolio-grid,
  .categories-grid,
  .expanded-catalog,
  .testimonials-grid,
  .form-row { grid-template-columns: 1fr; }

  .gallery-item,
  .large,
  .dark-bg { grid-column: auto; grid-row: auto; }

  .hero { padding-bottom: 70px; }
  .hero-visual { min-height: auto; }
  .chip-pink { left: 10px; }
  .chip-cyan { right: 10px; }
  .cta-section { padding: 34px 22px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .navbar, .hero, .section, .footer { width: min(1180px, calc(100% - 22px)); }
  .hero h1 { letter-spacing: -1.3px; }
  .hero-actions { flex-direction: column; }
  .form-actions { flex-direction: column; }
  .btn { width: 100%; }
  .floating-socials { right: 12px; bottom: 12px; }
}


.promo-banner {
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--yellow));
  color: var(--black);
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
}
.promo-track {
  display: inline-flex;
  gap: 34px;
  padding: 12px 18px;
  min-width: 100%;
  animation: promoMove 18s linear infinite;
}
@keyframes promoMove {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}

.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.24);
}
.expanded-catalog {
  grid-template-columns: repeat(3, 1fr);
}
.mini-photo {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  margin: 16px 0 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid #eceef5;
  box-shadow: 0 14px 34px rgba(15,20,30,.08);
  padding: 28px;
}
.testimonial-card p {
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.testimonial-card strong {
  display: block;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--muted);
  font-size: .92rem;
}
.stars {
  color: #f0b400;
  margin-bottom: 14px;
  letter-spacing: 2px;
  font-size: 1rem;
}

.messenger-card { border-left: 8px solid #0084ff; }

.contact-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  color: white;
  outline: none;
  font: inherit;
  appearance: none;
}
.contact-form option { color: var(--black); }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-socials a:nth-child(1) { background: #1877f2; }
.floating-socials a:nth-child(2) { background: #0084ff; }
.floating-socials a:nth-child(3) { background: linear-gradient(135deg, var(--pink), var(--cyan)); }
