* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #070b18;
  color: #f8fafc;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

.hero-social{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:45px;
}

.hero-social span{
    color:#94a3b8;
    font-size:15px;
    margin-right:10px;
}

.hero-social a{
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    text-decoration:none;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;
}

.hero-social a:hover{
    transform:translateY(-6px);
}

.hero-social a:nth-child(2):hover{
    background:#E1306C;
    box-shadow:0 0 25px rgba(225,48,108,.5);
}

.hero-social a:nth-child(3):hover{
    background:#1877F2;
    box-shadow:0 0 25px rgba(24,119,242,.5);
}

.hero-social a:nth-child(4):hover{
    background:#0077B5;
    box-shadow:0 0 25px rgba(0,119,181,.5);
}

.hero-social a:nth-child(5):hover{
    background:#24292f;
    box-shadow:0 0 25px rgba(255,255,255,.25);
}





.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgba(7, 11, 24, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  max-width: 1250px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo,
.side-logo {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span,
.side-logo span {
  background: linear-gradient(135deg, #38bdf8, #a855f7, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.desktop-menu a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.desktop-menu a:hover {
  color: #38bdf8;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  color: #fff !important;
}

.menu-btn {
  width: 45px;
  height: 45px;
  display: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  border-radius: 10px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -360px;
  width: 330px;
  max-width: 85%;
  height: 100vh;
  background: linear-gradient(180deg, #0f172a, #020617);
  z-index: 1000;
  padding: 25px;
  transition: 0.45s ease;
  border-right: 1px solid rgba(255,255,255,0.1);
  box-shadow: 30px 0 80px rgba(0,0,0,0.45);
}

.side-menu.active {
  left: 0;
}

.side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.close-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.side-menu ul {
  list-style: none;
}

.side-menu ul li {
  margin-bottom: 12px;
}

.side-menu ul li a {
  display: block;
  padding: 15px 18px;
  color: #cbd5e1;
  text-decoration: none;
  border-radius: 14px;
  transition: 0.3s;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.side-menu ul li a:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(56,189,248,0.25), rgba(168,85,247,0.25));
  transform: translateX(6px);
}

.side-footer {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}


.hero {
  min-height: 100vh;
  position: relative;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(168,85,247,0.22), transparent 35%),
    #070b18;
}

.hero-blur {
  position: absolute;
  width: 380px;
  height: 380px;
  right: 12%;
  top: 28%;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  filter: blur(120px);
  opacity: 0.45;
}


.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(
    135deg,
    #25D366,
    #1ebe5d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

    box-shadow:
    0 0 25px rgba(37,211,102,.45),
    0 0 50px rgba(37,211,102,.25);

    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

.whatsapp-btn svg{
    width:34px;
    height:34px;
}

@keyframes pulseWhatsapp{
    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:
        0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }
}

.whatsapp-btn{
    animation:pulseWhatsapp 2.5s infinite;
}



.hero-content {
  position: relative;
  max-width: 1250px;
  margin: auto;
  width: 100%;
}

.tag,
.section-tag {
  display: inline-block;
  color: #38bdf8;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.25);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 850px;
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  max-width: 650px;
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  color: #fff;
  box-shadow: 0 15px 35px rgba(56,189,248,0.2);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.btn:hover {
  transform: translateY(-4px);
}

.section {
  max-width: 1250px;
  margin: auto;
  padding: 95px 24px;
  text-align: center;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section > p {
  max-width: 760px;
  margin: auto;
  color: #cbd5e1;
  font-size: 18px;
}

.dark {
  max-width: 100%;
  background: linear-gradient(180deg, #0b1020, #111827);
}

.dark > * {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.comment-card,
.price-card {
  position: relative;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  text-align: left;
  transition: 0.35s;
  overflow: hidden;
}

.card::before,
.price-card::before,
.comment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.13), rgba(168,85,247,0.13));
  opacity: 0;
  transition: 0.35s;
}

.card:hover::before,
.price-card:hover::before,
.comment-card:hover::before {
  opacity: 1;
}

.card:hover,
.price-card:hover,
.comment-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56,189,248,0.45);
}

.card * ,
.comment-card *,
.price-card * {
  position: relative;
  z-index: 2;
}

.card span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50px;
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #00e5ff, #8b5cf6);
  box-shadow: 
    0 0 25px rgba(56,189,248,0.35),
    inset 0 0 12px rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.18);
}
.card h3,
.price-card h3 {
  font-size: 22px;
  margin: 12px 0;
}

.card p,
.comment-card p,
.price-card p {
  color: #cbd5e1;
}

.pricing {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  text-align: center;
}

.price-card h4 {
  font-size: 36px;
  margin: 15px 0 22px;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-card p {
  margin-bottom: 12px;
}

.featured {
  border-color: rgba(56,189,248,0.65);
  transform: scale(1.04);
}

.badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  font-size: 13px;
  font-weight: 800;
}

.comment-card {
  text-align: center;
}

.comment-card p {
  font-size: 17px;
  margin-bottom: 18px;
}

.comment-card h4 {
  color: #38bdf8;
}

form {
  margin-top: 40px;
  max-width: 680px !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #38bdf8;
}

textarea {
  height: 150px;
  resize: none;
}

button[type="submit"] {
  padding: 16px;
  border: none;
  border-radius: 35px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

footer {
  padding: 28px;
  text-align: center;
  background: #020617;
  color: #94a3b8;
}

.page-hero {
  min-height: 55vh;
  padding: 150px 24px 80px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(168,85,247,0.22), transparent 35%),
    #070b18;
}

.page-hero h1 {
  font-size: 56px;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.page-hero p {
  max-width: 720px;
  margin: auto;
  color: #cbd5e1;
  font-size: 19px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 35px;
  text-align: left;
  align-items: center;
}

.about-grid h2 {
  text-align: left;
}

.about-grid p {
  color: #cbd5e1;
  margin-bottom: 18px;
  font-size: 17px;
}

.stats-box {
  display: grid;
  gap: 18px;
}

.stats-box div {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.stats-box h3 {
  font-size: 38px;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-box p {
  color: #94a3b8;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
  transition: 0.35s;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(56,189,248,0.45);
}

.project-img {
  height: 190px;
  border-radius: 20px;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(56,189,248,0.35), rgba(139,92,246,0.35)),
    #111827;
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card p {
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .about-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 48px;
  }

  .cards,
  .cards.three,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 650px) {
  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .section h2 {
    font-size: 32px;
  }

  .cards,
  .cards.three,
  .pricing {
    grid-template-columns: 1fr;
  }

  .side-menu {
    width: 300px;
  }
}

.testimonial-slider {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background: linear-gradient(to right, #070b18, transparent);
}

.testimonial-slider::after {
  right: 0;
  background: linear-gradient(to left, #070b18, transparent);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialMove 28s linear infinite;
}

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

.testimonial-card {
  width: 360px;
  min-height: 250px;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.stars {
  color: #facc15;
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 18px;
}

.testimonial-card p {
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 25px rgba(56,189,248,0.35);
}

.client h4 {
  color: #fff;
  margin-bottom: 3px;
}

.client span {
  color: #94a3b8;
  font-size: 14px;
}

@keyframes testimonialMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 650px) {
  .testimonial-card {
    width: 300px;
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 55px;
  }
}