/* ========== NAVIGATION COMPONENTS ========== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.brand__logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px;
  object-fit: contain;
  flex-shrink: 0;
  transition: var(--transition);
}

.brand:hover .brand__logo {
  border-color: var(--accent);
  transform: scale(1.05);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand__name {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__tag {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav__toggle:hover {
  border-color: var(--primary);
  background: var(--soft);
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines::before {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav__toggle[aria-expanded="true"] .nav__toggleLines::after {
  transform: rotate(-45deg) translate(10px, -10px);
}

.nav__toggleLines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.nav__toggleLines span {
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggleLines::before,
.nav__toggleLines::after {
  content: '';
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav__link:hover {
  background: var(--soft);
  color: var(--primary);
}

.nav__link:hover::after {
  width: calc(100% - 32px);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff !important;
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}

.nav__link--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transition: left var(--transition);
  z-index: -1;
}

.nav__link--cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow3);
}

.nav__link--cta:hover::before {
  left: 0;
}

.nav__menu.is-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 15px;
  gap: 8px;
  width: 100%;
  z-index: 40;
}

body.nav-open {
  overflow: hidden;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff !important;
  border: none;
  box-shadow: var(--shadow2);
}

.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow3);
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--ghost {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}

.btn--ghost:hover {
  background: var(--soft);
  border-color: var(--accent);
  color: var(--accent);
}

.btn--secondary {
  background: var(--accent);
  color: #fff !important;
  border: none;
  box-shadow: var(--shadow);
}

.btn--secondary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ========== CARDS ========== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  width: fit-content;
}

.pill-soft {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--muted);
}

.glassCard {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius2);
  padding: 30px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: var(--transition);
}

.glassCard:hover {
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.2);
  transform: translateY(-5px);
}

.glassCard__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.uCard {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid var(--line);
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.uCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.uCard:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.uCard:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  background: var(--soft);
  box-shadow: var(--shadow3);
}

.uCard__head {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.uCard p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.cardLink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 800;
  margin-top: 15px;
  transition: var(--transition);
}

.cardLink:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* ========== ABOUT CARDS ========== */
.aboutCard {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.aboutCard:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow3);
}

.aboutCard__icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
}

.aboutCard h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
}

.aboutCard p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 600;
}

/* ========== SERVICE CARDS ========== */
.serviceCard {
  background: #fff;
  padding: 35px 25px;
  border-radius: var(--radius2);
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.serviceCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, 0.1));
  transition: left var(--transition);
  pointer-events: none;
}

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

.serviceCard:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: var(--shadow3);
}

.serviceCard__icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  transition: var(--transition);
}

.serviceCard:hover .serviceCard__icon {
  color: var(--accent);
  transform: scale(1.2);
}

.serviceCard__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}

.serviceCard__text {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
  flex-grow: 1;
  position: relative;
}

.serviceCard__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  margin-top: 15px;
  position: relative;
  transition: var(--transition);
}

.serviceCard__link i {
  transition: var(--transition);
  font-size: 20px;
}

.serviceCard__link:hover {
  color: var(--accent);
}

.serviceCard__link:hover i {
  transform: translateX(5px);
}

/* ========== PORTFOLIO CARDS ========== */
.portfolioCard {
  background: #fff;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.portfolioCard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow3);
}

.portfolioCard__image {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.portfolioCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.portfolioCard:hover .portfolioCard__image img {
  transform: scale(1.05);
}

.portfolioCard__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 45, 77, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolioCard__overlay h3 {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.portfolioCard:hover .portfolioCard__overlay {
  opacity: 1;
}

.portfolioCard__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolioCard__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
}

.portfolioCard__text {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.portfolioCard__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
}

.portfolioCard__tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.portfolioCard__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
}

.portfolioCard__cta:hover {
  color: var(--accent);
}

/* ========== STATS ========== */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stat {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out backwards;
}

.stat:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow3);
}

.stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__txt {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

/* ========== HERO ACTIONS ========== */
.hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ========== LISTS ========== */
.list {
  margin: 20px 0;
  list-style: none;
}

.list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--soft);
  font-weight: 600;
  color: var(--ink);
}

.list__item:last-child {
  border-bottom: none;
}

/* ========== FILTERS ========== */
.sectorFilters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.seg {
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.seg:hover {
  border-color: var(--primary);
  background: var(--soft);
}

.seg.is-active {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow2);
}

/* ========== TIMELINE ========== */
.timeline__step {
  background: #fff;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.timeline__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: var(--shadow2);
}

.timeline__title {
  font-weight: 900;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 8px;
}

.timeline__text {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

/* ========== CTA COMPONENT ========== */
.cta__title {
  font-size: 1.8rem;
  font-weight: 900;
}

.cta__text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-weight: 600;
  margin: 12px 0 20px;
}

.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== TESTIMONIALS ========== */
.testimonial {
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  font-size: 4rem;
  line-height: 1;
  color: rgba(11, 45, 77, 0.08);
  top: 10px;
  right: 16px;
  font-weight: 900;
}

.testimonial__text {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.testimonial__author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--soft);
}

.testimonial__info strong {
  display: block;
  color: var(--primary);
  font-weight: 900;
}

.testimonial__info span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ========== CONTACT COMPONENTS ========== */
.contact__info {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact__list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.contactInfo {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contactInfo h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.contactCards {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.miniCard {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  transition: var(--transition);
}

.miniCard:hover {
  border-color: var(--accent);
  background: var(--soft);
  transform: translateX(-5px);
}

.miniCard__icon {
  font-size: 1.5rem;
  color: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== FORMS ========== */
.contact__form {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label,
.field__label {
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select,
.field__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.field__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 45, 77, 0.1);
  background: #fff;
}

.field__input--ta {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  min-height: 20px;
}

/* ========== SOCIAL ========== */
.uiverse-wrapper {
  position: relative;
  margin-top: 30px;
}

.social-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.social-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
}

.social-overlay p {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--primary);
  line-height: 1.2;
}

.social-card-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.social-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow3);
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* ========== FAQ ========== */
.faqContainer {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.faq__item summary {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  color: var(--primary);
  user-select: none;
  transition: var(--transition);
}

.faq__item summary:hover {
  background: var(--soft);
}

.faq__item summary i {
  transition: transform var(--transition);
  color: var(--accent);
  font-size: 24px;
}

.faq__item[open] summary i {
  transform: rotate(180deg);
}

.faq__item p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
  border-top: 1px solid var(--line);
}

/* ========== FLOATING WHATSAPP ========== */
.floatWA {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #20ba5c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow3);
  transition: var(--transition);
  z-index: 30;
}

.floatWA:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

/* ========== CUSTOM BUTTON (Legacy) ========== */
.button {
  --white: #ffe7ff;
  --purple-100: #f4b1fd;
  --purple-200: #d190ff;
  --purple-300: #c389f2;
  --purple-400: #8e26e2;
  --purple-500: #5e2b83;
  --radius: 18px;

  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  font-size: 18px;
  background: transparent;
  border: 0;
  position: relative;
  width: 200px;
  height: 64px;
}
