:root {
  --primary: #14b86a;
  --primary-dark: #0f9b59;
  --dark: #0f172a;
  --dark-soft: #111827;
  --text: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  padding-top:15px;
  padding-bottom:10px;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand h1,
.footer h3 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--dark);
}

.brand h1 span,
.footer h3 span {
  color: var(--primary);
}

.brand p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a,
.footer a {
  color: #334155;
  font-size: 0.96rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.menu a:hover,
.footer a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(20, 184, 106, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: #0b1220;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0f172a 45%, #052e24 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.hero-bg::before {
  width: 320px;
  height: 320px;
  top: 60px;
  left: -80px;
  background: rgba(20, 184, 106, 0.2);
}

.hero-bg::after {
  width: 360px;
  height: 360px;
  top: -80px;
  right: -50px;
  background: rgba(34, 211, 238, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0 100px;
}

.tag,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  color: #a7f3d0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-tag {
  background: rgba(20, 184, 106, 0.12);
  color: var(--primary-dark);
}

.tag-dark {
  background: rgba(20, 184, 106, 0.12);
  color: #a7f3d0;
}

.tag-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ecfdf5;
}

.hero-content h2 {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
  max-width: 720px;
}

.hero-content p {
  margin-top: 24px;
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-animated {
  position: relative;
  margin-top: 26px;
  min-height: 70px;
}

.live-bar {
  width: 100%;
  max-width: 380px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-bar span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b86a, #4ade80, #86efac);
  animation: loadingBar 2.2s ease-in-out infinite;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
  opacity: 0.9;
}

.orb-1 {
  width: 18px;
  height: 18px;
  top: 24px;
  right: 90px;
  background: #22c55e;
  animation: floatY 3.5s ease-in-out infinite;
}

.orb-2 {
  width: 12px;
  height: 12px;
  top: 8px;
  right: 30px;
  background: #67e8f9;
  animation: spinFloat 5s linear infinite;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.mini-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.mini-card strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.mini-card span {
  display: block;
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-top,
.footer-grid,
.contact-grid,
.about-grid,
.cta-box {
  display: grid;
}

.panel-top {
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
}

.panel-top small,
.panel-box small,
.panel-highlight small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.panel-top h3 {
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--dark);
}

.badge {
  background: #ecfdf5;
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.panel-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.panel-box,
.panel-highlight {
  border-radius: 22px;
  padding: 20px;
}

.panel-box {
  background: var(--white);
}

.panel-box.full,
.panel-highlight {
  grid-column: 1 / -1;
}

.panel-box strong,
.panel-highlight strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.panel-highlight {
  background: linear-gradient(135deg, #0f172a, #14532d);
  color: var(--white);
}

.panel-highlight small {
  color: #bbf7d0;
}

.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--light);
}

.section-head {
  max-width: 760px;
}

.section h2,
.section-head h2,
.contact-section h2,
.cta-box h2 {
  margin-top: 14px;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-head p,
.about-text,
.contact-text,
.cta-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 760px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  margin-bottom: 22px;
}

.solution-card h3 {
  font-size: 1.28rem;
  color: var(--dark);
}

.solution-card p {
  margin-top: 12px;
  color: var(--muted);
}

.about-grid {
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.benefits-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.benefit-item {
  background: var(--white);
  border-radius: 20px;
  padding: 18px 20px 18px 44px;
  position: relative;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.steps-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.steps-card h3 {
  margin-top: 16px;
  font-size: 2rem;
  line-height: 1.15;
}

.steps-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.step-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-item span {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.step-item p {
  color: #e2e8f0;
  padding-top: 8px;
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), #22c55e);
  color: var(--white);
  border-radius: 36px;
  padding: 52px;
  box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-actions {
  display: grid;
  gap: 16px;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: #334155;
}

.contact-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.contact-card h3 {
  font-size: 1.8rem;
  color: var(--dark);
}

.contact-card p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 184, 106, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

.footer {
  background: #0a5327;
  color: #cbd5e1;
  padding: 70px 0;
}

.footer .brand,
.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer p,
.footer a {
  color: #94a3b8;
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer a,
.footer p {
  display: block;
  margin-bottom: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.3);
  transition: 0.3s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

@keyframes loadingBar {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(170%);
  }
  100% {
    transform: translateX(-120%);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes spinFloat {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(180deg) translateY(-8px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .panel-card {
    max-width: 100%;
  }

  .solutions-grid,
  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .section,
  .hero-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .solutions-grid,
  .hero-cards,
  .form-row,
  .panel-boxes {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .contact-card,
  .steps-card,
  .solution-card {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo img {
    max-height: 42px;
  }

  .brand h1,
  .footer h3 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 2.3rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .advantages-section{
background:#eef3e6;
text-align:center;
}

.advantages-list{
margin-top:25px;
font-size:18px;
line-height:2;
color:#0e3b25;
}

.advantages-highlight{
margin-top:35px;
font-size:28px;
font-weight:800;
color:#0e3b25;
}
}