:root{
  --primary:#f59e0b;
  --secondary:#22c55e;
  --dark:#020617;
  --light:#f8fafc;
  --gray:#94a3b8;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:linear-gradient(120deg,#020617,#020617);
  color:var(--light);
}

/* Animated background */
.bg-animation{
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 30%,rgba(245,158,11,.12),transparent 40%),
    radial-gradient(circle at 80% 70%,rgba(34,197,94,.12),transparent 40%);
  animation:bgMove 14s infinite alternate;
}

@keyframes bgMove{
  from{transform:scale(1);}
  to{transform:scale(1.15);}
}

/* Layout */
header{
  padding:90px 20px;
  text-align:center;
}

header h1{
  font-size:clamp(2.4rem,5vw,3.8rem);
  font-weight:700;
}

header p{
  max-width:800px;
  margin:20px auto;
  color:var(--gray);
  line-height:1.9;
}

.btn{
  display:inline-block;
  padding:14px 34px;
  background:var(--primary);
  color:#000;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  margin-top:25px;
  transition:.3s;
}

.btn:hover{
  background:var(--secondary);
  color:#fff;
}

section{
  padding:90px 20px;
  max-width:1200px;
  margin:auto;
}

section h2{
  font-size:2.3rem;
  margin-bottom:20px;
  text-align:center;
}

section p{
  max-width:950px;
  margin:auto;
  text-align:center;
  color:var(--gray);
  line-height:1.9;
}

/* Cards */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
  margin-top:50px;
}

.card{
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:32px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.08);
}

.card h3{
  color:var(--primary);
  margin-bottom:10px;
}
.card, .btn, .floating{
  will-change: transform;
}

/* Skills */
.skill{margin-bottom:16px;}
.skill span{display:block;margin-bottom:6px;}
.bar{
  background:#1e293b;
  border-radius:12px;
  overflow:hidden;
}
.bar div{
  height:10px;
  background:linear-gradient(to right,var(--primary),var(--secondary));
}

/* Footer */
footer{
  background:#020617;
  padding:50px 20px;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
}
footer p{color:var(--gray);}

/* Floating buttons */
.floating{
  position:fixed;
  z-index:999;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.whatsapp{
  bottom:68px;
  right:25px;
  background:#25d366;
}

.call{
  bottom:68px;
  left:25px;
  background:#0ea5e9;
}
.map-container{
  margin-top:40px;
  width:100%;
  height:420px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.map-container iframe{
  width:100%;
  height:100%;
  border:0;
}


.floating:hover{transform:scale(1.1);
}


/* HEADER */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
  margin-top: 10px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fa030fe0;
}


/* ==================================================
   CONVERSION CTA
================================================== */
.cta {
  background: linear-gradient(
    to right,
    rgba(0,0,0,.75),
    rgba(0,0,0,.6)
  ),
  url("assets/images/cta-bg.jpg") center / cover no-repeat;
  padding: 90px 8%;
  margin: 80px 0;
  border-radius: 24px;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  opacity: .9;
}