:root{
  --dark:#07192c;
  --dark-2:#0b223a;
  --green:#6ac83d;
  --green-2:#8ee55f;
  --text:#1e293b;
  --muted:#64748b;
  --light:#f5f7fa;
  --white:#ffffff;
  --border:rgba(15,23,42,.10);
  --shadow:0 24px 70px rgba(2,12,27,.14);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Manrope", Arial, sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.section{
  padding:110px 0;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  padding:18px 0;
  transition:.35s ease;
}

.site-header.scrolled{
  background:rgba(7,25,44,.92);
  backdrop-filter:blur(18px);
  padding:10px 0;
  box-shadow:0 15px 45px rgba(0,0,0,.18);
}

.logo{
  max-height:48px;
  width:auto;
}

.nav-link{
  color:rgba(255,255,255,.82);
  font-weight:700;
  font-size:14px;
  margin:0 8px;
}

.nav-link:hover{
  color:var(--green);
}

.navbar-toggler{
  border:0;
  color:#fff;
  font-size:30px;
  box-shadow:none !important;
}

.btn-whatsapp,
.btn-primary-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#06210b;
  font-weight:800;
  padding:14px 24px;
  border-radius:999px;
  box-shadow:0 16px 35px rgba(106,200,61,.28);
  transition:.3s ease;
}

.btn-whatsapp:hover,
.btn-primary-custom:hover{
  transform:translateY(-3px);
  color:#06210b;
  box-shadow:0 20px 45px rgba(106,200,61,.38);
}

.btn-secondary-custom{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  transition:.3s ease;
}

.btn-secondary-custom:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
  transform:translateY(-3px);
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  padding:80px 0 40px;
  background:radial-gradient(circle at 80% 20%,rgba(106,200,61,.22),transparent 30%),
             linear-gradient(135deg,#061321,#0b223a);
  color:#fff;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,black,transparent 90%);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green);
  font-weight:800;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(42px,6vw,78px);
  line-height:1.02;
  letter-spacing:-.06em;
  font-weight:800;
  margin-bottom:24px;
}

.hero p{
  color:rgba(255,255,255,.74);
  font-size:18px;
  line-height:1.8;
  max-width:620px;
  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:44px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:50px;
}

.hero-stats div{
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  text-align:center;
}

.hero-stats strong{
  display:block;
  font-size:28px;
  font-weight:800;
  color:#fff;
  margin-bottom:6px;
  white-space:nowrap;
}

.hero-stats span{
  display:block;
  font-size:12px;
  line-height:1.4;
  color:rgba(255,255,255,.75);
}

.hero-image-card{
    position:relative;
    width:88%;
    margin-left:auto;
    margin-right:0;
    border-radius:38px;
    overflow:hidden;
    box-shadow:0 35px 90px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.12);
}

.hero-image-card img{
  width:100%;
  height:620px;
  object-fit:cover;
  object-position:center;
}

.hero-image-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(7,25,44,.65),transparent 50%);
}

.floating-card{
  position:absolute;
  left:28px;
  bottom:28px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.92);
  color:var(--text);
  padding:18px;
  border-radius:22px;
  max-width:330px;
  box-shadow:var(--shadow);
}

.floating-card i{
  width:48px;
  height:48px;
  border-radius:16px;
  background:rgba(106,200,61,.18);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.floating-card strong,
.floating-card span{
  display:block;
}

.floating-card span{
  color:var(--muted);
  font-size:13px;
}

/* HEADINGS */

.section-heading{
  max-width:820px;
  margin:0 auto 56px;
  text-align:center;
}

.section-heading h2,
.location h2,
.cta h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1.08;
  letter-spacing:-.05em;
  font-weight:800;
  color:var(--dark);
  margin-bottom:18px;
}

.section-heading p,
.location p,
.cta p{
  color:var(--muted);
  font-size:17px;
  line-height:1.8;
}

/* SERVICES */

.services,
.benefits{
  background:var(--light);
}

.service-card,
.benefit-card,
.location-card{
  height:100%;
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:34px;
  box-shadow:0 18px 50px rgba(15,23,42,.06);
  transition:.35s ease;
}

.service-card:hover,
.benefit-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow);
  border-color:rgba(106,200,61,.35);
}

.service-card i{
  width:62px;
  height:62px;
  border-radius:20px;
  background:rgba(106,200,61,.14);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:26px;
}

.service-card h3,
.segment-card h3,
.benefit-card h3{
  font-size:22px;
  font-weight:800;
  color:var(--dark);
  margin-bottom:12px;
}

.service-card p,
.segment-card p,
.benefit-card p{
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

/* SEGMENTS */

.segment-card{
  position:relative;
  height:360px;
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.segment-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s ease;
}

.segment-card:hover img{
  transform:scale(1.08);
}

.segment-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(7,25,44,.92),rgba(7,25,44,.10));
}

.segment-card div{
  position:absolute;
  left:28px;
  right:28px;
  bottom:28px;
  z-index:2;
}

.segment-card h3{
  color:#fff;
}

/* PROFESSIONALS */

.professionals{
  background:linear-gradient(135deg,var(--dark),var(--dark-2));
  color:#fff;
}

.section-heading.light h2{
  color:#fff;
}

.section-heading.light p{
  color:rgba(255,255,255,.68);
}

.professional-item{
  height:170px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  border-radius:28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  transition:.35s ease;
}

.professional-item:hover{
  background:rgba(106,200,61,.12);
  border-color:rgba(106,200,61,.35);
  transform:translateY(-8px);
}

.professional-item i{
  font-size:36px;
  color:var(--green);
}

.professional-item span{
  font-weight:800;
  text-align:center;
}

.professional-list{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:32px;
  height:100%;
  transition:.35s ease;
}

.professional-list:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.10);
  border-color:rgba(106,200,61,.35);
}

.professional-list h3{
  color:var(--green);
  font-size:22px;
  margin-bottom:22px;
  font-weight:800;
}

.professional-list ul{
  list-style:none;
  padding:0;
  margin:0;
}

.professional-list li{
  color:rgba(255,255,255,.82);
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:15px;
}

.professional-list li:last-child{
  border:none;
}

/* BENEFITS */

.benefit-card span{
  display:inline-flex;
  font-size:14px;
  font-weight:800;
  color:var(--green);
  margin-bottom:24px;
}

/* LOCATION */

.location{
  background:#fff;
}

.location-card{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-top:32px;
}

.location-card i{
  font-size:30px;
  color:var(--green);
}

.location-card strong,
.location-card span,
.location-card small{
  display:block;
}

.location-card strong{
  font-weight:800;
  color:var(--dark);
}

.location-card span{
  color:var(--muted);
  font-size:14px;
  margin:4px 0;
}

.location-card small{
  color:var(--muted);
  line-height:1.6;
}

.map-card{
  background:var(--light);
  border-radius:36px;
  padding:30px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.map-card img{
  width:100%;
  border-radius:26px;
}

/* CTA */

.cta{
  padding:110px 0;
  background:linear-gradient(135deg,#07192c,#0b223a);
}

.cta-box{
  position:relative;
  overflow:hidden;
  text-align:center;
  color:#fff;
  border-radius:42px;
  padding:78px 30px;
  background:radial-gradient(circle at top right,rgba(106,200,61,.25),transparent 35%),
             rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.cta h2{
  color:#fff;
}

.cta p{
  color:rgba(255,255,255,.72);
  max-width:720px;
  margin:0 auto 34px;
}

.cta-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.phone-link{
  color:#fff;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.phone-link:hover{
  color:var(--green);
}

/* FOOTER */

.footer{
  background:#05111f;
  color:rgba(255,255,255,.72);
  padding:80px 0 28px;
}

.footer-logo{
  max-height:52px;
  margin-bottom:24px;
}

.footer p{
  max-width:360px;
  line-height:1.8;
}

.footer h4{
  color:#fff;
  font-size:16px;
  font-weight:800;
  margin-bottom:18px;
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer li{
  margin-bottom:12px;
}

.footer a{
  color:rgba(255,255,255,.68);
  transition:.3s ease;
}

.footer a:hover{
  color:var(--green);
}

.footer i{
  color:var(--green);
  margin-right:8px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.10);
  margin-top:54px;
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:14px;
}

/* ANIMATIONS */

.fade-up{
  opacity:0;
  transform:translateY(28px);
  transition:.7s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* AJUSTES EXTRAS */

.text-green{
  color:var(--green);
  text-shadow:0 0 20px rgba(106,200,61,.35);
}

.site-header .btn-whatsapp{
  width:auto;
  min-width:190px;
  max-width:230px;
  height:46px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  white-space:nowrap;
}

.professional-list h3{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--green);
  font-size:22px;
  font-weight:800;
  margin-bottom:22px;
}

.professional-list h3 i{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(106,200,61,.15);
  color:var(--green);
  border-radius:12px;
  font-size:20px;
  flex-shrink:0;
}

/* RESPONSIVE */

@media(max-width:991px){
  .site-header{
    background:rgba(7,25,44,.96);
    padding:10px 0;
  }

  .navbar-collapse{
    background:rgba(7,25,44,.98);
    border-radius:24px;
    padding:24px;
    margin-top:14px;
  }

  .nav-link{
    margin:6px 0;
  }

  .site-header .btn-whatsapp{
    width:100%;
    max-width:none;
  }

  .hero{
    padding-top:120px;
  }

  .hero h1{
    font-size:clamp(38px,8vw,58px);
  }

  .hero-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-image-card{
    width:100%;
    margin:44px 0 0 0;
    transform:none;
  }

  .hero-image-card img{
    height:460px;
  }

  .section{
    padding:82px 0;
  }
}

@media(max-width:575px){
  .logo{
    max-height:40px;
  }

  .hero{
    padding-top:110px;
    padding-bottom:64px;
  }

  .hero h1{
    font-size:42px;
    line-height:1;
  }

  .hero p{
    font-size:16px;
  }

  .hero-actions,
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn-primary-custom,
  .btn-secondary-custom,
  .btn-whatsapp{
    width:100%;
  }

  .hero-stats{
    grid-template-columns:1fr;
    gap:12px;
    margin-top:30px;
  }

  .hero-stats div{
    padding:14px;
  }

  .hero-stats strong{
    font-size:22px;
  }

  .hero-image-card{
    width:100%;
    margin:34px 0 0 0;
    border-radius:26px;
  }

  .hero-image-card img{
    height:360px;
  }

  .floating-card{
    left:16px;
    right:16px;
    bottom:16px;
    max-width:none;
  }

  .segment-card{
    height:310px;
  }

  .service-card,
  .benefit-card,
  .professional-list{
    padding:28px;
  }

  .professional-list h3{
    font-size:20px;
  }

  .cta-box{
    padding:58px 22px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
