.elementor-23 .elementor-element.elementor-element-cf744e0{--display:flex;}/* Start custom CSS *//* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: hsl(130, 50%, 32%);
  --green-glow: hsl(130, 60%, 40%);
  --green-light: hsl(130, 50%, 32%, 0.15);
  --white: #fff;
  --black: #212121;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-400: #737373;
  --gray-600: #525252;
  --dark: #212121;
  --dark-bg: #1a1a1a;
  --darker-bg: #141414;
  --radius: 0.75rem;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ===== UTILITIES ===== */
.text-white { color: var(--white) !important; }
.text-gradient {
  background: linear-gradient(135deg, var(--green), hsl(130, 60%, 45%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-bg {
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: var(--white);
}
.glow { box-shadow: 0 0 30px hsl(130, 50%, 32%, 0.3); }
.section-label {
  display: block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-top: 0; }
.section-desc { color: var(--gray-400); font-size: 1.1rem; max-width: 600px; margin: 0.75rem auto 0; line-height: 1.7; }
.section-divider {
  width: 5rem; height: 4px; background: var(--green); border-radius: 2px; margin: 1rem auto 0;
  transform: scaleX(0); transition: transform 0.6s ease 0.3s;
}
.section-divider--left { margin-left: 0; }
.section-divider.visible { transform: scaleX(1); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; transition: all var(--transition); border: 2px solid transparent;
}
.btn--primary { background: linear-gradient(135deg, var(--green), var(--green-glow)); color: var(--white); border-color: transparent; }
.btn--primary:hover { transform: scale(1.05); box-shadow: 0 0 25px hsl(130, 50%, 32%, 0.4); }
.btn--glow { box-shadow: 0 0 30px hsl(130, 50%, 32%, 0.3); }
.btn--specialist {
  background: var(--white); color: var(--green); border: 2px solid var(--white); font-weight: 700;
}
.btn--specialist:hover {
  background: transparent; color: var(--white); box-shadow: 0 0 25px hsl(0, 0%, 100%, 0.25);
  transform: scale(1.05);
}
.btn--white { background: var(--white); color: var(--black); }
.btn--white:hover { background: rgba(255,255,255,0.9); transform: scale(1.05); }
.btn--full { width: 100%; justify-content: center; }

/* ===== ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
/* Stagger with CSS custom property */
.reveal-up, .reveal-left, .reveal-right {
  transition-delay: var(--delay, 0s);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsl(130, 50%, 32%, 0.3); }
  50% { box-shadow: 0 0 40px hsl(130, 50%, 32%, 0.6); }
}
@keyframes orb {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.3); opacity: 0.6; }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.float-card { animation: float 4s ease-in-out infinite; animation-delay: var(--delay, 0s); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.header__logo img { height: 3rem; }
.header__nav { display: flex; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: var(--gray-600); transition: color var(--transition); }
.nav-link:hover { color: var(--green); }
.header__cta { display: flex; }
.header__toggle { display: none; flex-direction: column; gap: 5px; }
.header__toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: all var(--transition); }

@media (max-width: 1023px) {
  .header__nav, .header__cta { display: none; }
  .header__toggle { display: flex; }
  .header__nav.open {
    display: flex; flex-direction: column; position: absolute; top: 5rem; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 1rem 2rem 1.5rem; gap: 0.75rem;
  }
  .header__cta.open { display: flex; position: absolute; top: calc(5rem + 200px); left: 2rem; right: 2rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden;
}
.hero__slideshow { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08); transition: opacity 1.2s ease, transform 1.2s ease;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__overlay { position: absolute; inset: 0; background: rgba(20,20,20,0.8); z-index: 1; }
.hero__orb {
  position: absolute; border-radius: 50%; background: hsl(130, 50%, 32%, 0.05); filter: blur(60px); z-index: 2;
}
.hero__orb--1 { width: 16rem; height: 16rem; top: 25%; right: 10%; animation: orb 8s ease-in-out infinite; }
.hero__orb--2 { width: 12rem; height: 12rem; bottom: 25%; left: 5%; animation: orb 6s ease-in-out infinite 2s; }

.hero__content { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.hero__text { max-width: 48rem; }
.badge {
  display: inline-block; padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.badge--primary { background: linear-gradient(135deg, var(--green), var(--green-glow)); color: var(--white); }
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
}
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.7); max-width: 40rem; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 1.25rem 2rem; text-align: center; transition: all var(--transition);
}
.stat-card:hover { transform: scale(1.05); border-color: hsl(130, 50%, 32%, 0.5); }
.stat-card__value { font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 800; }
.stat-card__label { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

.hero__indicators { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 0.5rem; }
.indicator { width: 1rem; height: 0.375rem; border-radius: 9999px; background: rgba(255,255,255,0.3); transition: all 0.5s; }
.indicator.active { width: 2rem; background: var(--green); }
.indicator:hover { background: rgba(255,255,255,0.5); }

@media (max-width: 1023px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__stats { display: none; }
}

/* ===== PARTNERS ===== */
.partners { padding: 4rem 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.partners__title {
  text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gray-400); margin-bottom: 2.5rem;
}
.partners__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 4rem; }
.partner-item {
  display: flex; align-items: center; gap: 0.5rem; color: var(--gray-400);
  transition: all var(--transition); cursor: default;
}
.partner-item:hover { color: var(--green); transform: translateY(-4px) scale(1.1); }
.partner-item span { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.875rem; }
@media (max-width: 639px) { .partner-item span { display: none; } }

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: var(--gray-100); }
.about__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.about-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--gray-200); transition: all var(--transition); cursor: pointer;
}
.about-card:hover {
  transform: translateY(-8px); border-color: hsl(130, 50%, 32%, 0.3);
  box-shadow: 0 20px 40px -12px hsl(130, 50%, 32%, 0.15);
}
.about-card__icon {
  width: 3rem; height: 3rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.about-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.about-card p { color: var(--gray-400); font-size: 0.875rem; line-height: 1.6; }
.about-card__bar {
  height: 2px; background: hsl(130, 50%, 32%, 0.3); margin-top: 1rem; border-radius: 1px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.8s ease 0.5s;
}
.about-card.visible .about-card__bar { transform: scaleX(1); }
@media (max-width: 1023px) { .about__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .about__grid { grid-template-columns: 1fr; } }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: linear-gradient(180deg, hsl(0,0%,10%), hsl(0,0%,6%)); }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 64rem; margin: 0 auto; }
.service-card {
  background: var(--dark-bg); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: hsl(130, 50%, 32%, 0.3); }
.service-card__number {
  width: 3rem; height: 3rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-card > p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.service-card__items { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; border-radius: 0.5rem;
  background: rgba(20,20,20,0.5); color: rgba(255,255,255,0.8); font-size: 0.875rem;
  transition: all var(--transition); cursor: default;
}
.service-item svg { color: var(--green); flex-shrink: 0; transition: transform var(--transition); }
.service-item:hover { background: hsl(130, 50%, 32%, 0.1); }
.service-item:hover svg { transform: scale(1.15); }
@media (max-width: 767px) { .services__grid { grid-template-columns: 1fr; } }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 6rem 0; }
.steps { max-width: 56rem; margin: 0 auto; position: relative; }
.steps__line {
  display: none; position: absolute; left: 2rem; top: 0; bottom: 0; width: 1px; background: hsl(130, 50%, 32%, 0.2);
}
.steps__progress {
  display: none; position: absolute; left: 2rem; top: 0; width: 1px; background: var(--green);
  height: 0; transition: height 2s ease;
}
.steps__progress.visible { height: 100%; }
@media (min-width: 768px) { .steps__line, .steps__progress { display: block; } }

.steps { display: flex; flex-direction: column; gap: 2rem; }
.step { display: flex; gap: 1.5rem; align-items: flex-start; cursor: default; transition: transform var(--transition); }
.step:hover { transform: translateX(10px); }
.step__icon {
  position: relative; z-index: 10; width: 4rem; height: 4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transform: scale(0); transition: transform 0.5s ease;
}
.step__icon.visible { transform: scale(1); }
.step__icon:hover { transform: scale(1.15) rotate(5deg); }
.step__content { padding-top: 0.5rem; }
.step__label { font-size: 0.75rem; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; }
.step__content h3 { font-weight: 700; font-size: 1.25rem; margin: 0.25rem 0; transition: color var(--transition); }
.step:hover .step__content h3 { color: var(--green); }
.step__content p { color: var(--gray-400); }

/* ===== BLOG ===== */
.blog-preview { padding: 6rem 0; background: var(--gray-100); }
.blog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--transition); cursor: pointer;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: hsl(130, 50%, 32%, 0.3); }
.blog-card__img { height: 12rem; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card__img img { transform: scale(1.1); }
.blog-card__body { padding: 1.25rem; }
.blog-card__date { font-size: 0.75rem; color: var(--gray-400); }
.blog-card__body h3 { font-weight: 700; margin: 0.5rem 0; font-size: 1rem; line-height: 1.4; transition: color var(--transition); }
.blog-card:hover .blog-card__body h3 { color: var(--green); }
.blog-card__body p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 1023px) { .blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .blog__grid { grid-template-columns: 1fr; } }

/* ===== DIFFERENTIALS ===== */
.differentials { padding: 6rem 0; }
.differentials__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 72rem; margin: 0 auto; }
.diff-item { text-align: center; cursor: default; transition: transform var(--transition); }
.diff-item:hover { transform: translateY(-10px); }
.diff-item__icon {
  width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; transition: all var(--transition);
}
.diff-item:hover .diff-item__icon { box-shadow: 0 0 30px hsl(130, 50%, 32%, 0.3); transform: rotate(360deg) scale(1.1); }
.diff-item h3 { font-weight: 700; margin-bottom: 0.5rem; }
.diff-item p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }
@media (max-width: 1023px) { .differentials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .differentials__grid { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta {
  padding: 6rem 0; background: linear-gradient(135deg, var(--green), var(--green-glow));
  position: relative; overflow: hidden; text-align: center;
}
.cta__orb {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); filter: blur(60px);
}
.cta__orb--1 { width: 18rem; height: 18rem; top: 2rem; left: 2rem; animation: orb 10s ease-in-out infinite; }
.cta__orb--2 { width: 24rem; height: 24rem; bottom: 2rem; right: 2rem; animation: orb 8s ease-in-out infinite 2s; }
.cta__inner { position: relative; z-index: 10; }
.cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; line-height: 1.3; }
.cta p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 2.5rem; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: linear-gradient(180deg, hsl(0,0%,10%), hsl(0,0%,6%)); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 64rem; margin: 0 auto; }
.contact__info h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--white); margin-top: 0.75rem; }
.contact__info > p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.contact__methods { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.8);
  transition: all var(--transition); cursor: pointer;
}
.contact-method:hover { color: var(--green); transform: translateX(8px); }
.contact-method__icon {
  width: 3rem; height: 3rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method__icon--dark { background: var(--darker-bg); border: 1px solid rgba(255,255,255,0.1); }
.contact-method__icon--dark svg { color: var(--green); }
.contact-method strong { display: block; color: var(--white); font-size: 0.9rem; }
.contact-method span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.contact-form {
  background: rgba(20,20,20,0.5); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(4px);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem;
  background: var(--darker-bg); border: 1px solid rgba(255,255,255,0.1); color: var(--white);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; transition: border-color var(--transition); outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
@media (max-width: 1023px) { .contact__grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: var(--darker-bg); padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer__logo { height: 2.5rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__nav a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__nav a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 2rem; padding-top: 2rem; text-align: center; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-glow)); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  animation: pulse-glow 2s ease-in-out infinite;
  transform: scale(0); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.whatsapp-float.visible { transform: scale(1); }
.whatsapp-float:hover { transform: scale(1.2); }/* End custom CSS */