* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #e9fff3;
  color: #e5e7eb;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  padding: 175px 100px;
  text-align: center;
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.7)), url(./images/dev.jpg);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 20s infinite linear;
}

.section-pronto {
  width: 100%;
  max-width: 1800px;
  height: 100%;
  margin: 0;
  background-color: #e9fff3;
}

.section-pronto p {
  color: #072142;
}

.social-links,
.social-links a {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-2);
  text-decoration: none;
  display: inline-flex;
  color: #22c55e;
}

.social-linkss {
  text-decoration: none;
  color: rgb(12, 12, 145);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100px);
  }
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  }

  50% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.6);
  }

  100% {
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  }
}

section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out;

}

section:first-of-type {
  background: transparent;
  border-radius: 20px;
  padding: 70px 20px;
  margin: 50px auto;
}

section:first-of-type h2 {
  color: #0b1843;
  font-weight: 700;
  margin-bottom: 40px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #072142;
  position: relative;
  display: inline-block;
  width: 100%;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 80px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 250, 255, 0.9));
  padding: 30px;
  border-radius: 16px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #1e293b;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
  border: 2px solid #22c55e;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(240, 255, 240, 0.95));
}

section:first-of-type .card {
  background: transparent;
  ;
  color: #072142;
}

section:first-of-type .card:hover {
  border: 2px solid #22c55e;
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25);
  color: #072142;
}

.card h2 {
  margin-bottom: 10px;
  color: #053570;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #1e293b;
  font-weight: 700;
}

section:first-of-type .card h3 {
  color: #072142;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.highlight {
  background: transparent;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: #072142;
}

ul {
  list-style: none;
  margin-top: 20px;
}

ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

ul li::before {

  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

footer {
  background: #020617;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #1e293b;
}

footer p {
  font-size: 0.9rem;
  color: #94a3b8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .card {
    padding: 20px;
  }
}

.social-link span {
  margin-left: 8px;
}

.price {
  font-size: 2.9rem;
  font-weight: bold;
  color: #22c55e;
}

.pricee {
  font-size: 1.7rem;
  font-weight: bold;
  color: #22c55e;
}

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

.pricing-card ul {
  text-align: center;
  margin: 15px 0;
}

.pricing-card .btn {
  margin-top: 15px;
}

/* Footer */
footer {
  background: #0f172a;
  border-top: 1px solid #334155;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #22c55e;
  font-weight: 600;
}

.footer-section p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #22c55e;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  display: block;
}

.footer-social {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  margin-left: auto;
}

.footer-section:has(> .footer-social) h3 {
  flex-wrap: nowrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 50%;
  color: #cbd5e1;
  transition: all 0.3s ease;
  border: 1px solid #334155;
}

.footer-social a svg,
.footer-social a i {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.footer-social a:hover {
  background: #22c55e;
  color: #0f172a;
  transform: translateY(-3px);
  border-color: #22c55e;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 0;
  border-top: 1px solid #334155;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
}

.card-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.card-centered h3 {
  margin: 0;
}

.card-centered h3:first-child {
  font-size: 2rem;
  margin-bottom: 0;
}

.card-icon-large h3:first-child {
  font-size: 2rem;
}

.card-centered p {
  margin: 0;
}

@media (max-width: 768px) {
  footer {
    padding-top: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 1rem;
  }
}