:root {
  --purple: #660099;
  --purple-dark: #2d003d;
  --purple-deep: #160020;
  --violet: #8f23c9;
  --pink: #e647ad;
  --white: #ffffff;
  --off-white: #f8f6fb;
  --text: #241a29;
  --muted: #6e6473;
  --border: #e7dfeb;
  --shadow: 0 20px 60px rgba(49, 0, 67, .12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

.topbar { background: var(--purple-deep); color: rgba(255,255,255,.78); font-size: 12px; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; }
.site-header { position: relative; z-index: 20; background: var(--white); }
.navbar { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav-links > a:not(.btn) { position: relative; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--purple); transition: .25s; }
.nav-links > a:hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--purple-dark); margin: 5px 0; }

.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--purple), var(--violet)); box-shadow: 0 12px 28px rgba(102,0,153,.25); }
.btn-primary:hover { box-shadow: 0 16px 35px rgba(102,0,153,.34); }
.btn-small { min-height: 42px; padding: 0 20px; font-size: 13px; }
.btn-light { background: white; color: var(--purple); }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.btn.full { width: 100%; }

.hero { position: relative; min-height: 650px; overflow: hidden; background: var(--purple-dark); }
.hero-slider { min-height: 650px; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; background-image: var(--banner), linear-gradient(120deg,#4c006e,#190025); background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(230,71,173,.3), transparent 36%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,0,39,.9) 0%, rgba(54,0,75,.74) 48%, rgba(31,0,43,.22) 100%); }
.hero-content { position: relative; z-index: 2; min-height: 650px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 30px; padding-bottom: 80px; color: white; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.purple { color: var(--purple); }
.hero h1, .hero h2 { max-width: 780px; margin: 18px 0; font-family: Manrope, sans-serif; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.04; letter-spacing: -.045em; }
.hero h2 { font-size: clamp(38px, 4.6vw, 64px); }
.hero p { max-width: 680px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-controls { position: absolute; z-index: 5; left: 50%; bottom: 36px; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; }
.slider-arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: white; font-size: 28px; line-height: 1; cursor: pointer; backdrop-filter: blur(10px); }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.42); transition: .25s; cursor: pointer; }
.slider-dots button.active { width: 28px; background: white; }
.hero-floating-card { position: absolute; right: max(20px, calc((100vw - 1180px)/2)); bottom: 34px; z-index: 6; width: min(410px, calc(100% - 40px)); display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 20px; background: white; color: var(--text); border-radius: 16px; box-shadow: var(--shadow); }
.hero-floating-card div { display: flex; flex-direction: column; }
.hero-floating-card strong { font-size: 14px; }
.hero-floating-card span { color: var(--muted); font-size: 12px; }
.hero-floating-card a { color: var(--purple); font-weight: 800; font-size: 13px; white-space: nowrap; }

.quick-benefits { position: relative; z-index: 8; margin-top: -1px; background: white; border-bottom: 1px solid var(--border); }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.benefit-grid article { display: flex; gap: 16px; padding: 30px 26px; border-right: 1px solid var(--border); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: #f1e7f7; color: var(--purple); font-weight: 800; font-size: 12px; }
.benefit-grid strong { display: block; margin-bottom: 3px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.section { padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .split-content h2, .about-copy h2, .contact-copy h2 { margin: 16px 0 18px; font-family: Manrope, sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading p, .split-content > p, .about-copy p { color: var(--muted); font-size: 17px; }
.solutions { background: var(--off-white); }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.solution-card { overflow: hidden; background: white; border: 1px solid var(--border); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.solution-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-visual { height: 220px; overflow: hidden; }
.card-visual img,
.split-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.solution-card.featured { grid-column: span 2; display: grid; grid-template-columns: 1.1fr .9fr; }
.solution-card.featured .card-visual { height: 100%; min-height: 390px; }
.card-content { padding: 28px; }
.card-tag { color: var(--purple); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.card-content h3, .cta-card h3 { margin: 12px 0; font-family: Manrope, sans-serif; font-size: 25px; line-height: 1.2; }
.card-content p { margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.card-content a, .text-link { color: var(--purple); font-weight: 800; font-size: 14px; }
.placeholder-image { position: relative; display: grid; place-items: center; overflow: hidden; min-height: 180px; background: linear-gradient(135deg, #f0e5f6, #ded0e8); color: #806b8a; }
.placeholder-image::before { content: ""; position: absolute; width: 180px; height: 180px; border: 36px solid rgba(102,0,153,.08); border-radius: 50%; }
.placeholder-image::after { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(102,0,153,.18); border-radius: 14px; }
.placeholder-image span { position: relative; z-index: 2; padding: 8px 12px; border-radius: 10px; background: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; }
.cta-card { background: linear-gradient(145deg, var(--purple), #3b0050); color: white; border: 0; }
.cta-card-inner { min-height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 34px; }
.cta-card p { color: rgba(255,255,255,.74); }

.split-section { background: white; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.placeholder-image.large, .split-image.large { min-height: 600px; border-radius: 32px; overflow: hidden; }
.check-list { margin: 30px 0; padding: 0; list-style: none; display: grid; gap: 15px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.check-list span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #f1e7f7; color: var(--purple); font-size: 13px; }

.numbers-section { padding: 55px 0; background: linear-gradient(135deg, var(--purple-deep), var(--purple)); color: white; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.numbers-grid article { padding: 16px 34px; border-right: 1px solid rgba(255,255,255,.16); }
.numbers-grid article:last-child { border-right: 0; }
.numbers-grid strong { display: block; font-family: Manrope, sans-serif; font-size: 36px; }
.numbers-grid span { color: rgba(255,255,255,.7); font-size: 13px; }

 .about-section { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(48px, 6vw, 82px); align-items: center; }
.about-copy { max-width: 560px; }
.about-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  height: 520px;
}
.about-gallery > div {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #ece4f1;
  box-shadow: 0 16px 42px rgba(49, 0, 67, .10);
}
.about-gallery .tall { grid-row: 1 / 3; }
.about-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.about-gallery .tall img { object-position: 50% 42%; }
.about-gallery > div:nth-child(2) img { object-position: 50% 35%; }
.about-gallery > div:hover img { transform: scale(1.025); }

.contact-section { color: white; background: linear-gradient(135deg, #20002b, #65008f 55%, #8c1ab8); position: relative; overflow: hidden; }
.contact-section::after { content: ""; position: absolute; width: 480px; height: 480px; right: -120px; top: -160px; border: 100px solid rgba(255,255,255,.05); border-radius: 50%; }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.contact-copy p { color: rgba(255,255,255,.72); font-size: 17px; }
.contact-details { margin-top: 35px; display: grid; gap: 18px; }
.contact-details div { display: flex; flex-direction: column; }
.contact-details small { color: rgba(255,255,255,.55); }
.lead-form { padding: 36px; background: white; color: var(--text); border-radius: 26px; box-shadow: 0 30px 80px rgba(20,0,28,.32); }
.lead-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: 13px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; background: #fcfbfd; outline: none; transition: border .2s, box-shadow .2s; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(102,0,153,.08); }
.privacy-check { grid-template-columns: auto 1fr !important; align-items: flex-start; font-weight: 500 !important; color: var(--muted); }
.privacy-check input { width: 16px; margin-top: 3px; }
.form-status { min-height: 20px; margin: 12px 0 0; text-align: center; font-size: 13px; color: var(--purple); }

.site-footer { padding: 70px 0 22px; background: #100015; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 60px; }
.footer-brand img { width: 180px; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { margin-bottom: 8px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.58); font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 12px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 30; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: white; font-weight: 800; box-shadow: 0 15px 35px rgba(0,0,0,.22); }

@media (max-width: 980px) {
  .topbar { display: none; }
  .navbar { min-height: 74px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 20px; right: 20px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: white; border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .nav-links .btn { margin-top: 8px; }
  .hero, .hero-slider, .hero-content { min-height: 600px; }
  .hero-floating-card { display: none; }
  .slider-controls { left: 20px; transform: none; }
  .benefit-grid, .numbers-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid article:nth-child(2), .numbers-grid article:nth-child(2) { border-right: 0; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card.featured { grid-column: span 2; }
  .split-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .split-image { order: 2; }
  .about-copy { max-width: none; }
  .about-gallery { height: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --container: min(100% - 28px, 1180px); }
  .brand img { width: 165px; }
  .hero, .hero-slider, .hero-content { min-height: 660px; }
  .hero-content { padding-bottom: 100px; }
  .hero h1, .hero h2 { font-size: 42px; }
  .hero p { font-size: 16px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .benefit-grid, .solution-grid, .numbers-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .numbers-grid article { border-right: 0; border-bottom: 1px solid var(--border); }
  .numbers-grid article { border-color: rgba(255,255,255,.14); }
  .solution-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .solution-card.featured .card-visual { min-height: 250px; }
  .section { padding: 78px 0; }
  .placeholder-image.large, .split-image.large { min-height: 420px; }
  .about-gallery {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
  .about-gallery > div { height: 235px; border-radius: 22px; }
  .about-gallery .tall { height: 380px; }
  .lead-form { padding: 24px; }
  .footer-bottom { flex-direction: column; }
}
