﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {\n  --bg: #f4f8f7;\n  --bg-soft: #eaf2f1;\n  --card: #ffffff;\n  --muted: #5c6b6d;\n  --text: #0f1f20;\n  --primary: #2aa39a;\n  --primary-dark: #1f7f78;\n  --accent: #d4872a;\n  --border: rgba(15, 31, 32, 0.12);\n  --shadow: 0 24px 60px rgba(15, 31, 32, 0.12);\n}\n* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Sora", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.75rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #1b1204;
  box-shadow: 0 12px 30px rgba(42, 163, 154, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--text);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(244, 248, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}


.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
}

.nav a {
  position: relative;
  padding-bottom: 0.3rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  color: var(--text);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(244, 248, 247, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a {
  color: var(--muted);
}

.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.7;
}

.glow-a {
  width: 520px;
  height: 520px;
  background: rgba(245, 158, 11, 0.3);
  top: 40px;
  left: -80px;
}

.glow-b {
  width: 420px;
  height: 420px;
  background: rgba(56, 189, 248, 0.25);
  bottom: -60px;
  right: -60px;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.2;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.05;
  margin: 1rem 0 1.2rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
}

.hero-metrics strong {
  font-size: 1.4rem;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-frame {
  width: min(420px, 80vw);
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: linear-gradient(160deg, #ffffff, #dfeceb);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-glass {
  position: absolute;
  inset: 24px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.12);
}

.visual-chip {
  position: absolute;
  top: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.slider {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  top: 80px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15, 31, 32, 0.12);
  background: rgba(255, 255, 255, 0.75);
}

.slider-track {
  display: flex;
  width: calc(5% * 12);
  animation: slide 36s linear infinite;
}

.slider:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  flex: 0 0 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 31, 32, 0.12);
  box-shadow: 0 12px 24px rgba(15, 31, 32, 0.12);
}

.slide img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  display: block;
}

.slide figcaption {
  padding: 0.7rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200%);
  }
}

.visual-strip {
  position: absolute;
  height: 70px;
  left: -20px;
  right: -20px;
  background: linear-gradient(90deg, rgba(245,158,11,0.7), rgba(56,189,248,0.6));
  top: 45%;
  transform: rotate(-8deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.visual-strip.two {
  top: 58%;
  opacity: 0.6;
  transform: rotate(-5deg);
}

.visual-strip.three {
  top: 35%;
  opacity: 0.4;
  transform: rotate(-12deg);
}

.trusted {
  padding: 40px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  width: 100%;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.transformation {
  padding: 90px 0;
  background: #eef6f3;
}

.transformation-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.transformation-left p,
.transformation-right p {
  color: var(--muted);
  margin: 0.8rem 0 1.4rem;
}

.transformation-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.image-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 31, 32, 0.12);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(15, 31, 32, 0.12);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-card {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 31, 32, 0.1);
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.2rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cert-card {
  background: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 31, 32, 0.1);
  display: grid;
  gap: 0.4rem;
}

.cert-card strong {
  color: var(--primary);
}

section {
  padding: 90px 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0.8rem 0 1rem;
}

.no-wrap {
  white-space: nowrap;
}

.section-head p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(42, 163, 154, 0.12), rgba(212, 135, 42, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(15, 31, 32, 0.12);
}

.card h3 {
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
}

.card ul {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card ul li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.5rem;
}

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

.about-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.about-points strong {
  display: block;
  font-size: 1.2rem;
}

.about-points span {
  color: var(--muted);
  font-size: 0.85rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  width: min(420px, 90vw);
  background: var(--card);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card h3 {
  margin-bottom: 1.5rem;
}

.meter {
  margin-bottom: 1.2rem;
}

.meter span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.bar {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar div {
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.about-cta {
  margin-top: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.portfolio-item {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tile {
  height: 180px;
  background: linear-gradient(140deg, #29303a, #12161c);
}

.tile-a { background: linear-gradient(140deg, #e9f5f3, #fdf6ea); }
.tile-b { background: linear-gradient(140deg, #e2f2f2, #f8fbfb); }
.tile-c { background: linear-gradient(140deg, #f0eef6, #e6eff0); }
.tile-d { background: linear-gradient(140deg, #eef6ef, #e5f1ec); }

.tile-info {
  padding: 1.5rem;
}

.tile-info p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  padding: 1.8rem;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step span {
  font-weight: 700;
  color: var(--primary);
}

.step p {
  color: var(--muted);
  margin-top: 0.6rem;
}

.testimonials {
  padding-top: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.testimonial-grid article {
  background: var(--card);
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-grid p {
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cta {
  background: linear-gradient(135deg, rgba(42, 163, 154, 0.12), rgba(212, 135, 42, 0.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border-color: transparent;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.faq details {
  background: var(--card);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin-top: 0.8rem;
}

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

.map-section {
  padding: 80px 0 100px;
}

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
}

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

.map-link {
  text-align: center;
  margin-top: 1rem;
}

.map-link a {
  color: var(--primary);
  font-weight: 600;
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  margin: 1rem 0 2rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-cards div {
  background: var(--card);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-cards span {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}

.address-gap {
  display: block;
  height: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(42, 163, 154, 0.12), rgba(212, 135, 42, 0.12));
  padding: 2.6rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 560px;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.captcha-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}

.contact-form .captcha-field {
  display: inline-flex;
  justify-self: start;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 70%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #f7fbfb;
  color: var(--text);
  font-family: inherit;
}

.contact-form button {
  justify-self: center;
}

.site-footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(42, 163, 154, 0.12), rgba(212, 135, 42, 0.12));
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-top h4 {
  margin-bottom: 1rem;
}

.footer-top a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 50;
  background: #25d366;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}










