    :root {
      --primary: #0f766e;
      --primary-dark: #115e59;
      --gold: #d6a84f;
      --dark: #0f172a;
      --muted: #64748b;
      --light: #f8fafc;
      --border: #e2e8f0;
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', Arial, Helvetica, sans-serif;
      background: var(--light);
      color: var(--dark);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .navbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 900;
      min-width: 260px;
    }

    .brand-logo {
      height: 58px;
      width: auto;
      max-width: 210px;
      object-fit: contain;
      display: block;
    }

    .brand-text {
      line-height: 1.12;
      font-size: 17px;
    }

    .brand-text small {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-weight: 600;
      font-size: 12px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    nav a {
      padding: 10px 13px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      color: #334155;
      transition: 0.2s ease;
    }

    nav a:hover { background: #f1f5f9; color: var(--primary-dark); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      padding: 14px 22px;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 0 14px 32px rgba(15, 118, 110, 0.24);
      transition: 0.2s ease;
      font-family: 'Inter', Arial, sans-serif;
    }
	.send-btn{

	 width:100%;
	 max-width:500px;

	 margin:25px auto 0;

	 display:flex;

	 font-size:18px;

	 padding:20px;

	 justify-content:center;
	}

    .btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .btn.secondary {
      background: white;
      color: var(--primary-dark);
      border: 1px solid var(--border);
      box-shadow: none;
    }
    .btn.dark { background: var(--dark); }

    h1, h2, h3, h4 {
      font-family: 'Poppins', Arial, Helvetica, sans-serif;
      letter-spacing: -0.04em;
      color: #06111f;
    }

    h1 {
      font-size: clamp(40px, 6vw, 70px);
      line-height: 0.98;
      margin: 24px 0 18px;
    }

    h2 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.08;
      margin: 0 0 14px;
    }

    h3 { margin: 0 0 10px; font-size: 22px; }
    p { color: var(--muted); line-height: 1.7; }

    .hero {
      padding: 78px 0 88px;
      background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 52%, #e2e8f0 100%);
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      align-items: center;
      gap: 54px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 999px;
      background: white;
      color: var(--primary-dark);
      font-weight: 900;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
    }

    .hero p { font-size: 19px; max-width: 630px; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

    .trust {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 30px;
    }

    .trust div {
      background: white;
      border-radius: 20px;
      padding: 16px;
      font-weight: 900;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    }

    .hero-card {
      border-radius: 34px;
      background: white;
      padding: 14px;
      box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
    }

    .hero-logo {
      width: 100%;
      max-height: 170px;
      object-fit: contain;
      padding: 16px 20px 20px;
    }

    .hero-image {
      position: relative;
      min-height: 390px;
      border-radius: 28px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      background: #0f172a;
    }

    .hero-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }

    .hero-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.72));
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 34px;
      color: white;
    }

    .hero-content h2 {
      color: white;
      font-size: 34px;
      margin-bottom: 10px;
    }

    .hero-content p {
      color: #e2e8f0;
      margin: 0;
      font-size: 16px;
    }

    section { padding: 76px 0; }
    .section-head { max-width: 780px; margin-bottom: 38px; }
    .section-head p { font-size: 18px; }

    .grid { display: grid; gap: 22px; }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: 1.35fr 0.75fr; align-items: start; }

    .card {
      background: white;
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(226, 232, 240, 0.85);
    }

    .service-card {
      padding: 0;
      overflow: hidden;
      transition: 0.25s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
    }

    .service-card img {
      width: 100%;
      height: 185px;
      object-fit: cover;
      display: block;
    }

    .service-card-content { padding: 24px; }
    .service-card-content p { margin-bottom: 0; }

    .step-number {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: #ccfbf1;
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .price h2 {
      color: var(--primary-dark);
      font-size: 34px;
      margin-top: 20px;
    }

    .cta {
      margin-top: 38px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      box-shadow: 0 20px 48px rgba(15, 118, 110, 0.25);
    }

    .cta h3 { color: white; font-size: 28px; }
    .cta p { color: #ccfbf1; margin: 0; }
    .cta .btn { background: white; color: var(--primary-dark); box-shadow: none; }

    .form-card label {
      display: block;
      font-weight: 900;
      margin: 18px 0 8px;
      color: #172033;
    }

    input, select, textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 15px 16px;
      font: inherit;
      outline: none;
      background: white;
      transition: 0.2s ease;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
    }

    textarea { min-height: 130px; resize: vertical; }
    .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .choices {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }

    .choice {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 12px 14px;
      background: white;
      cursor: pointer;
      font-weight: 900;
      color: #334155;
      user-select: none;
      transition: 0.2s ease;
    }

    .choice input { display: none; }
    .choice.active {
      border-color: var(--primary);
      color: var(--primary-dark);
      background: #ecfdf5;
    }

    .upload-box {
      border: 2px dashed var(--border);
      border-radius: 24px;
      padding: 26px;
      text-align: center;
      background: #f8fafc;
    }

    .upload-box strong { display: block; margin-bottom: 6px; }

    .summary {
      background: #0f172a;
      color: white;
      position: sticky;
      top: 105px;
    }

    .summary h3 { color: white; }
    .summary p { color: #cbd5e1; }
    .summary-line {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      padding: 14px 0;
    }

    .summary-line small {
      display: block;
      color: #94a3b8;
      margin-bottom: 5px;
    }

    .alert {
      padding: 14px 16px;
      border-radius: 18px;
      margin-top: 16px;
      font-weight: 800;
      display: none;
    }

    .alert.success { background: #dcfce7; color: #166534; }
    .alert.error { background: #fee2e2; color: #991b1b; }

    .contact-card p { margin-bottom: 0; }

    footer {
      background: #020617;
      color: white;
      padding: 46px 0;
	  margin-left:auto;
    }

    footer h3 { color: white; }
    footer p { color: #cbd5e1; }

    @media (max-width: 980px) {
      nav { display: none; }
      .hero-grid, .grid-2 { grid-template-columns: 1fr; }
      .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .trust, .row { grid-template-columns: 1fr; }
      .summary { position: static; }
    }

    @media (max-width: 620px) {
      .navbar { align-items: flex-start; flex-direction: column; padding: 14px 0; }
      .brand { min-width: auto; }
      .brand-logo { height: 52px; max-width: 180px; }
      .grid-4, .grid-3 { grid-template-columns: 1fr; }
      .hero { padding: 46px 0 60px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .cta { flex-direction: column; align-items: flex-start; }
    }
	.whatsapp-float {
		position: fixed;
		bottom: 20px;
		right: 20px;
		width: 60px;
		height: 60px;
		background: #25D366;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
		z-index: 9999;
		transition: transform 0.3s ease;
	}

	.whatsapp-float img {
		width: 33px;
		height: 33px;
	}
	
	.whatsapp-float:hover {
    transform: scale(1.1);
	}

	.social-links{
		display:flex;
		justify-content:flex-start;
		align-items:center;
		gap:14px;
		margin:22px 0;
		
	}

	.social-links a{
		width:44px;
		height:44px;

		border-radius:50%;

		display:flex;
		align-items:center;
		justify-content:center;

		background:rgba(255,255,255,.10);
		border:1px solid rgba(255,255,255,.16);

		transition:.25s ease;
	
	}

	.social-links a:hover{
		transform:translateY(-2px);
		background:#d6a84f;
	}

	.social-links img{
		width:22px;
		height:22px;
		display:block;
	}
	.seo-content {
	  background: #ffffff;
	  padding: 70px 0;
	}

	.seo-content h2 {
	  max-width: 900px;
	  margin-bottom: 18px;
	}

	.seo-content p {
	  max-width: 900px;
	  font-size: 17px;
	  line-height: 1.8;
	}
	.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 99999;
  padding: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(6px);
}

.cookie-box {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  padding: 30px 40px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.25);
}

.cookie-box h3 {
  margin: 0 0 10px;
  color: #0f172a;
}

.cookie-box p {
  margin: 0;
  color: #64748b;
}

.cookie-box a {
  color: #0f766e;
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;

  justify-content: center;
  align-items: center;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn.primary {
  background: #d6a84f;
  color: white;
}

.cookie-btn.secondary {
  background: #0f172a;
  color: white;
}

.cookie-btn.ghost {
  background: #e2e8f0;
  color: #0f172a;
}

.cookie-btn.full {
  width: 100%;
  margin-top: 14px;
}

.cookie-settings {
  display: none;
  margin-top: 20px;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}

.cookie-settings.open {
  display: block;
}

.cookie-settings label {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  align-items: flex-start;
}

.cookie-settings input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.cookie-settings small {
  display: block;
  color: #64748b;
  margin-top: 4px;
}

@media (max-width: 620px) {

  .cookie-actions {
    justify-content: center;
    align-items: center;
  }

  .cookie-btn {
    min-width: 220px;
  }

}
.footer p a{
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.footer p a:hover{
    color:#d6a84f;
}