:root{
  --site-bg: #0b1417;
  --site-surface: rgba(12, 18, 22, 0.76);
  --site-border: rgba(255, 255, 255, 0.12);
  --site-accent: #68c9d4;
  --site-accent-strong: #3fb6c9;
  --site-text: #eaf4f6;
  --site-muted: rgba(234, 244, 246, 0.7);
}

*{
  box-sizing: border-box;
}

body.site-body{
  margin: 0;
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(900px 500px at 90% -10%, rgba(79, 195, 214, 0.18), rgba(8, 22, 26, 0)),
    radial-gradient(800px 520px at -20% 100%, rgba(45, 139, 145, 0.18), rgba(8, 22, 26, 0)),
    var(--site-bg);
  color: var(--site-text);
  min-height: 100vh;
}

a{
  color: inherit;
}

.site-nav{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(8, 16, 20, 0.92);
  border-bottom: 1px solid var(--site-border);
  backdrop-filter: blur(16px);
}

.site-brand{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--site-text);
}

.brand-logo{
  height: 44px;
  width: auto;
  display: block;
}

.brand-name{
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85rem;
}

.site-nav .nav-link{
  color: var(--site-muted);
  font-weight: 500;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus{
  color: #ffffff;
}

.btn-login{
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--site-text);
  background: transparent;
  border-radius: 999px;
  padding: .55rem 1.4rem;
}

.btn-login:hover{
  border-color: rgba(104, 201, 212, 0.6);
}

.hero{
  padding: 3.5rem 0 2.5rem;
}

.hero-carousel{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--site-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  background: #0b1416;
}

.hero-slides{
  position: relative;
  min-height: clamp(420px, 55vh, 520px);
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
  padding: 3rem;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(7, 12, 16, 0.85) 0%, rgba(7, 12, 16, 0.35) 55%, rgba(7, 12, 16, 0) 75%);
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.hero-tag{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .7rem;
  color: var(--site-muted);
  margin-bottom: 1rem;
}

.hero-content h1{
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content p{
  color: var(--site-muted);
  margin-bottom: 1.4rem;
}

.hero-benefits{
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.8rem;
  color: var(--site-muted);
  display: grid;
  gap: .7rem;
}

.hero-benefits li{
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero-benefits i{
  color: var(--site-accent);
  font-size: 1.05rem;
}

.hero-slide.is-empty{
  background: radial-gradient(circle at 25% 20%, rgba(104, 201, 212, 0.12), transparent 55%),
    rgba(8, 16, 20, 0.9);
}

.hero-control{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 18, 22, 0.7);
  color: var(--site-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.hero-control:hover{
  background: rgba(8, 18, 22, 0.9);
}

.hero-control:focus-visible{
  outline: 2px solid var(--site-accent);
  outline-offset: 2px;
}

.hero-prev{
  left: 1.2rem;
}

.hero-next{
  right: 1.2rem;
}

.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
}

.hero-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot:focus-visible{
  outline: 2px solid var(--site-accent);
  outline-offset: 2px;
}

.hero-dot.is-active{
  background: var(--site-accent);
}
}

.hero-banner{
  background: #0b1416;
  overflow: hidden;
  height: clamp(380px, 60vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.btn-cta{
  border-radius: 999px;
  padding: .8rem 1.8rem;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #38a5ab, #5fd0d4);
  color: #041217;
}

.btn-cta-secondary{
  background: transparent;
  border: 1px solid rgba(95, 208, 212, 0.55);
  color: var(--site-text);
}

.btn-cta-secondary:hover{
  background: rgba(95, 208, 212, 0.12);
  color: #ffffff;
}

.section{
  padding: 4rem 0;
}

.section-muted{
  background: rgba(10, 18, 22, 0.6);
  border-top: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
}

.specialty-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.specialty-card{
  background: rgba(12, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

.specialty-card i{
  color: var(--site-accent);
  font-size: 1.5rem;
}

.specialty-card h3{
  margin-top: 1rem;
  font-size: 1.1rem;
}

.specialty-card p{
  margin: .4rem 0 0;
  color: var(--site-muted);
}

.diferentials{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.diferential-card{
  background: rgba(12, 18, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
}

.diferential-card i{
  color: var(--site-accent);
  font-size: 1.4rem;
}

.diferential-card h3{
  margin-top: .9rem;
  font-size: 1.1rem;
}

.diferential-card p{
  margin: .4rem 0 0;
  color: var(--site-muted);
}

.section-header h2{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.section-header p{
  color: var(--site-muted);
  max-width: 680px;
}

.specialties-text{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  color: var(--site-muted);
}

.specialties-text strong{
  color: var(--site-text);
}

.diferentials{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.diferentials h3{
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.diferentials p{
  color: var(--site-muted);
}

.cta-final{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 3rem;
  border-radius: 22px;
  background: var(--site-surface);
  border: 1px solid var(--site-border);
}

.contact-grid{
  margin-top: 1.5rem;
  display: grid;
  gap: .6rem;
  color: var(--site-muted);
}

.contact-grid i{
  color: var(--site-accent);
  margin-right: .5rem;
}

.site-footer{
  border-top: 1px solid var(--site-border);
  padding: 2.5rem 0 3rem;
  color: var(--site-muted);
}

.login-modal .modal-content{
  background: rgba(8, 16, 20, 0.96);
  border: 1px solid var(--site-border);
  border-radius: 20px;
  color: var(--site-text);
}

.login-modal .nav-link{
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--site-muted);
  font-weight: 600;
}

.login-modal .nav-link.active{
  background: linear-gradient(135deg, #38a5ab, #5fd0d4);
  color: #041217;
}

.login-modal .form-control{
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--site-text);
}

.login-modal .form-control:focus{
  border-color: rgba(104, 201, 212, 0.6);
  box-shadow: 0 0 0 .2rem rgba(104, 201, 212, 0.2);
}

.login-modal .text-muted{
  color: var(--site-muted) !important;
}


@media (max-width: 991.98px){
  .hero{
    padding-top: 2.5rem;
  }

  .hero-slide{
    padding: 2.2rem;
  }

  .cta-final{
    padding: 2rem;
  }
}

@media (max-width: 575.98px){
  .site-nav{
    backdrop-filter: none;
  }

  .hero-slides{
    min-height: clamp(520px, 75vh, 680px);
  }

  .hero-slide{
    padding: 1.8rem 1.5rem 2.4rem;
  }

  .hero-slide::before{
    background: linear-gradient(180deg, rgba(7, 12, 16, 0.7) 0%, rgba(7, 12, 16, 0.85) 80%);
  }

  .hero-control{
    width: 38px;
    height: 38px;
  }

  .cta-final{
    padding: 1.8rem 1.4rem;
  }

  .cta-final .btn-cta{
    width: 100%;
    text-align: center;
  }
}
