:root {
  --primary: #0b0d10;
  --primary2: #1a1f24;
  --accent: #c0c0c0;
  --text: #0e1317;
  --muted: #5d6671;
  --bg: #ffffff;
  --bg2: #f3f4f6;
  --line: rgba(14,19,23,.14);
  --shadow: 0 18px 50px rgba(0,0,0,.14);
  --shadow2: 0 10px 24px rgba(0,0,0,.10);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: var(--bg2);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,h2,h3,h4,h5 {
  margin: 0;
}

.container {
  margin: 0 auto;
}

.container-fluid {
  width: calc(100% - 24px);
  margin: 0 auto;
}

#sticky-header.prygo_nav_manu {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

#sticky-header .row { 
  min-height: 74px; 
}

.logo img {
  width: 170px;
  height: auto;
  display: block;
}

.prygo_menu ul {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.prygo_menu a {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  transition: .2s;
  border-radius: 12px;
}

.prygo_menu a:hover {
  background: rgba(0,0,0,.06);
  color: var(--primary);
}

.nav_scroll a{
  position: relative;
}

body:has(#inicio:target)        #sticky-header .nav_scroll a[href="#inicio"],
body:has(#sobre:target)         #sticky-header .nav_scroll a[href="#sobre"],
body:has(#servicos:target)      #sticky-header .nav_scroll a[href="#servicos"],
body:has(#diferenciais:target)  #sticky-header .nav_scroll a[href="#diferenciais"],
body:has(#como:target)          #sticky-header .nav_scroll a[href="#como"],
body:has(#contato:target)       #sticky-header .nav_scroll a[href="#contato"]{
  color: #;
  font-weight: 900;
}

body:has(#inicio:target)        #sticky-header .nav_scroll a[href="#inicio"]::after,
body:has(#sobre:target)         #sticky-header .nav_scroll a[href="#sobre"]::after,
body:has(#servicos:target)      #sticky-header .nav_scroll a[href="#servicos"]::after,
body:has(#diferenciais:target)  #sticky-header .nav_scroll a[href="#diferenciais"]::after,
body:has(#como:target)          #sticky-header .nav_scroll a[href="#como"]::after,
body:has(#contato:target)       #sticky-header .nav_scroll a[href="#contato"]::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 6px;
  background: currentColor;
  opacity: .9;
}

body:not(:has(:target)) #sticky-header .nav_scroll a[href="#inicio"]{
  color: #1a1f24;
  font-weight: 900;
}

body:not(:has(:target)) #sticky-header .nav_scroll a[href="#inicio"]::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 6px;
  background: currentColor;
  opacity: .9;
}

.btn.btn-primary {
  background: linear-gradient(90deg, var(--primary), #64686c);
  border: none;
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: var(--shadow2);
  color: #fff;
  font-size: 14px;
  transition: all .3s ease;
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.20);
  filter: brightness(1.05);
}

.btn.btn-primary:focus {
  outline: none;
  color: #fff;
}

.mobile-menu-area {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-menu { 
  padding: 10px 0 14px; 
}

.mobile-menu .prygo_menu ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.mobile-menu .prygo_menu a {
  width: 100%;
}

.banner-area {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-area::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.35) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

.banner-title {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.banner-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.feature-area {
  position: relative;
  margin-top: 0;
  padding: 50px 0;
}

.fcr-tp { 
  padding-top: 10px; 
}

.single-feature {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow2);
  display: flex;
  gap: 16px;
  align-items: center;
  height: 100%;
  transition: all .3s ease;
}

.single-feature:hover {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(192,192,192,.28), rgba(192,192,192,.12));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 24px;
  border: 1.5px solid rgba(0,0,0,.12);
}

.feature-title h2 {
  font-size: 17px;
  line-height: 1.2;
  color: var(--text);
  font-weight: 900;
  margin: 0;
}

.about-area {
  background: var(--bg2);
  padding: 80px 0;
}

.about-area#contato {
  background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
  padding: 80px 0;
}

#contato .row.align-items-center {
  align-items: stretch !important;
}

.about-thumb,
.choose-us-thumb,
.service-card__media {
  overflow: hidden;
  border-radius: var(--radius);
}

.about-thumb{
  height: 100%;
  display: block;
}

.about-thumb img,
.choose-us-thumb img,
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-shadow: var(--shadow);
}

.about-content .section-title h5 {
  color: gray;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .7px;
  font-size: 12px;
  margin-bottom: 10px;
}

.about-content .section-title h1 {
  font-size: 40px;
  letter-spacing: -.6px;
  color: var(--text);
}

.section-title p {
  color: var(--muted);
  line-height: 1.9;
  margin-top: 12px;
}

.shape-title {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #555;
  position: relative;
  top: -10px;
  user-select: none;
}

.about-content-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
}

.about-content-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(192,192,192,.28), rgba(192,192,192,.12));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
}

.about-content-inner-text h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.about-content-inner-text p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

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

.service-area {
  padding: 80px 0;
  background: #fff;
}

.section-title.text-center {
  text-align: center;
  margin-bottom: 26px;
}

.section-title.text-center h5 {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .7px;
  font-size: 12px;
}

.section-title.text-center h1 {
  font-size: 42px;
  margin-top: 10px;
  letter-spacing: -.7px;
  color: var(--text);
}

.service-card {
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.service-card__media {
  height: 220px;
  overflow: hidden;
}

.service-card__body {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 54px 26px 28px;
}

.service-card__icon {
  position: absolute;
  left: 50%;
  top: -28px;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: grid;
  place-items: center;
}

.service-card__icon i {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.service-card__title {
  font-size: 24px;
  font-weight: 800;
  margin: 10px 0 12px;
  color: #101828;
}

.service-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: #475467;
  margin: 0;
}

.owl-carousel .owl-stage-outer { 
  padding: 10px 0 30px; 
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(14,19,23,.18);
}

.owl-dot.active { 
  background: var(--accent); 
}

.upper-bx { 
  padding: 60px 0; 
}

.why-choose-content .section-title h5 {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .7px;
  font-size: 12px;
}

.why-choose-content .section-title h1 {
  font-size: 40px;
  margin-top: 10px;
  letter-spacing: -.7px;
  color: var(--text);
}

.icon-box {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  margin-bottom: 16px;
  height: 100%;
  transition: all .3s ease;
  align-items: center;
}

.icon-box:hover {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  transform: translateY(-4px);
}

.icon-box-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192,192,192,.28), rgba(192,192,192,.12));
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 22px;
  border: 1.5px solid rgba(0,0,0,.12);
}

.icon-box-content h2 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 900;
}

.icon-box-content p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  font-size: 13px;
}

.como-funciona-area {
  padding: 80px 0;
  background: #fff;
}

.passo-box {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow2);
  height: 100%;
  transition: all .3s ease;
}

.passo-box:hover {
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  transform: translateY(-6px);
}

.passo-box h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.passo-box h4 i {
  font-size: 20px;
  color: var(--primary);
}

.passo-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.request-form-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid var(--line);
}

.form-fields-container { 
  padding: 28px; 
}

.form-group { 
  margin-bottom: 16px; 
}

.form-group-col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group-full {
  margin-bottom: 16px;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 5px;
  border: 2px solid #d0d3d8;
  background: #fff;
  outline: none;
  font-size: 15px;
  color: var(--text);
  transition: all .3s ease;
  font-family: inherit;
}

.form-control::placeholder {
  color: #b0b5bd;
  opacity: 1;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
  background: #fafbfc;
}

.form-control:hover {
  border-color: #b8bcc4;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230b0d10' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  background-color: #fff;
}

.form-group label,
.form-group-full label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

option {
  color: var(--text);
  background-color: #fff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  margin-top: 16px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: var(--shadow2);
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.20);
  filter: brightness(1.05);
}

.btn-submit-form:active { 
  transform: translateY(0); 
}

.footer-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
  color: #fff;
  padding-top: 30px;
}

.footer-wrapper .widget_title {
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-wrapper .about-text {
  color: rgba(255,255,255,.92);
  line-height: 1.85;
  font-size: 14px;
}

.footer-wrapper .info-box_text {
  margin: 0;
  color: rgba(255,255,255,.90);
  font-size: 14px;
  font-weight: 500;
}

.footer-wrapper .info-box_link {
  color: rgba(255,255,255,.95);
  transition: .2s;
}

.footer-wrapper .info-box_link:hover {
  color: #fff;
  text-decoration: underline;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

.sub-footer {
  margin-top: 32px;
  padding: 5px;
  background: rgba(255,255,255,.06);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.10);
}

.sub-footer .font {
  color: #fff !important;
  margin: 0;
  font-size: 13px;
  opacity: .95;
}