:root {
  --primary: #00b2a9;
  --bg-dark: #0b0e14;
  --text-light: #f3f4f6;
  --text-gray: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Outfit", sans-serif;
}

.text-gray {
  color: var(--text-gray);
}

.glass-navbar {
  background: rgba(11, 14, 20, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary-teal {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #0b0e14;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary-teal:hover,
.btn-primary-teal:focus {
  background: #06cfc4;
  border-color: #06cfc4;
  color: #061013;
}

.btn-outline-teal {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline-teal:hover,
.btn-outline-teal:focus {
  background: var(--primary);
  color: #0b0e14;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-light);
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--primary);
  color: var(--primary);
}

.hero {
  min-height: 100vh;
  padding: 7rem 1rem 3rem;
  background: linear-gradient(rgba(11, 14, 20, 0.8), rgba(11, 14, 20, 0.95)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop")
    center/cover no-repeat;
}

.page-header {
  padding-top: 120px !important;
  padding-bottom: 40px;
  background: linear-gradient(rgba(11, 14, 20, 0.9), rgba(11, 14, 20, 0.95)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070&auto=format&fit=crop")
    center/cover no-repeat;
}

.legal-section {
  padding-top: 120px;
}

.card-glass {
  background: rgba(11, 14, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.feature-icon-lg {
  font-size: 2.2rem;
  color: var(--primary);
}

.soft-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-highlight {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.cta-section {
  padding-bottom: 4rem;
}

.vision-section {
  padding: 1rem 0 2rem;
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 1.5rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar .nav-link {
  color: var(--text-light);
  font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary);
}

.logo-white {
  filter: brightness(0) invert(1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 14, 20, 0.9);
}

.site-footer .footer-link {
  color: var(--text-gray);
  text-decoration: none;
  margin-left: 1rem;
}

.site-footer .footer-link:hover,
.site-footer .footer-link:focus {
  color: var(--text-light);
}

.social-links a {
  color: var(--text-gray);
}

.social-links a:hover,
.social-links a:focus {
  color: var(--primary);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #25d366;
  color: #0b0e14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 1050;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #0b0e14;
  background: #35e876;
}

.placeholder-img {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(0, 178, 169, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  min-height: 250px;
  width: 100%;
}

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.hero-title {
  background: linear-gradient(180deg, #ffffff 0%, #e7eef1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-label {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}

.carousel-indicators .active {
  background-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.pricing-section .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
}

.pricing-section .features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-section .features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.pricing-recommended {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.badge-recommended {
  display: inline-block;
  background: var(--primary);
  color: #0b0e14;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
