/* ===== GlobalEase SAS — estilos base ===== */

:root {
  --purple-900: #2e0a4f;
  --purple-700: #5b1a9e;
  --purple-600: #7a1fd6;
  --purple-500: #9333ea;
  --purple-400: #b155f0;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --green-600: #16a34a;
  --ink: #1a1a2e;
  --ink-soft: #4b4b5e;
  --bg: #ffffff;
  --bg-soft: #f7f5fc;
  --bg-alt: #f1ecfb;
  --border: #e6e1f4;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(46, 10, 79, 0.08);
  --shadow-sm: 0 4px 14px rgba(46, 10, 79, 0.06);
  --max-w: 1180px;
  --grad-brand: linear-gradient(120deg, var(--purple-700), var(--purple-400));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head p {
  margin: 0;
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(122, 31, 214, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(122, 31, 214, 0.45);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--purple-500);
  color: var(--purple-600);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--purple-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */

.hero {
  padding: 64px 0 96px;
  background: radial-gradient(circle at 85% 0%, var(--bg-alt), transparent 55%), var(--bg);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}

.hero-badge strong {
  display: block;
  font-size: 1.15rem;
  color: var(--purple-600);
}

.hero-badge span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ===== Stats bar ===== */

.stats-bar {
  background: var(--purple-900);
  color: #fff;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-grid .stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(120deg, #e5b8ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-grid .stat span {
  font-size: 0.85rem;
  color: #d9cdee;
}

/* ===== About ===== */

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-facts {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-facts li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}

.about-facts li .icon {
  color: var(--green-600);
  margin-top: 3px;
}

.about-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.legal-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  font-size: 0.92rem;
}

.legal-grid dt {
  color: var(--ink-soft);
  font-weight: 600;
}

.legal-grid dd {
  margin: 0;
  font-weight: 700;
}

/* ===== Products ===== */

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: linear-gradient(135deg, #eef0ff, #f5f0fc);
  padding: 18px;
}

.product-card .product-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.tag-green {
  background: #e7f8ee;
  color: var(--green-600);
}

.tag-blue {
  background: #e6eefe;
  color: var(--blue-700);
}

.product-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.product-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.product-list li .icon {
  flex: none;
  color: var(--purple-500);
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.product-footnote {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ===== Sectors ===== */

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sector-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 5, 40, 0.88), rgba(20, 5, 40, 0.05) 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.sector-overlay h3 {
  color: #fff;
  margin: 0;
}

.sector-overlay p {
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0 0;
  font-size: 0.88rem;
}

/* ===== Efficacy banner ===== */

.efficacy {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 24px;
  max-width: var(--max-w);
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.efficacy img {
  width: 100%;
  display: block;
}

/* ===== How it works ===== */

.how .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.how img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 22px;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.steps h4 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.steps p {
  margin: 0;
  font-size: 0.92rem;
}

/* ===== Why us ===== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.why-card .icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card .icon-wrap .icon {
  color: #fff;
}

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

.why-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Contact ===== */

.contact {
  background: var(--bg-soft);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}

.contact-list .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-list .icon-wrap .icon {
  color: var(--purple-600);
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-list a,
.contact-list span.value {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.contact-list a:hover {
  color: var(--purple-600);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ===== CTA banner ===== */

.cta-banner {
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--radius);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: #fff;
  margin: 0 0 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cta-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Footer ===== */

.site-footer {
  background: var(--ink);
  color: #cfcbe0;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #a7a2bd;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-links a {
  text-decoration: none;
  color: #cfcbe0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-legal {
  font-size: 0.85rem;
  color: #a7a2bd;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8c87a3;
}

/* ===== WhatsApp floating button ===== */

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

.wa-float .icon {
  width: 28px;
  height: 28px;
}

/* ===== Legal pages ===== */

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal-page h1 {
  font-size: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 36px;
}

.legal-page ul {
  color: var(--ink-soft);
}

.legal-updated {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===== Responsive ===== */

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .nav-actions .btn-whatsapp span {
    display: none;
  }

  .hero .container,
  .about .container,
  .how .container,
  .contact .container {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  section {
    padding: 64px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 32px;
    text-align: center;
    justify-content: center;
  }

  .hero-badge {
    left: 12px;
    bottom: -14px;
  }
}
