:root{
  --brand-a:#0019e9;
  --brand-b:#1c35ff;
  --brand-gradient: linear-gradient(45deg, var(--brand-a), var(--brand-b));
  --brand-solid:#001b7b;
  --header-bg:#101f3c;

  --ink:#0b1220;
  --muted: rgba(11,18,32,.72);
  --muted2: rgba(11,18,32,.58);
  --line: rgba(11,18,32,.10);
  --bg:#ffffff;
  --soft:#f6f8ff;

  --r1: 12px;
  --r2: 16px;
  --r3: 22px;

  --sh1: 0 10px 26px rgba(11,18,32,.10);
  --sh2: 0 22px 60px rgba(11,18,32,.16);
}

html,body{
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body{ font-size: 18px; line-height: 1.7; }
a{ color: var(--brand-a); }

/* ====== Header ====== */
.c-header{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--header-bg);
  backdrop-filter: none;
  min-height: 67px;
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
}
.c-header--brand{
  color: rgba(255,255,255,.92);
}
.c-header__bar{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.c-header__barRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
}
.c-header__barLeft{
  display:flex;
  align-items:center;
  gap: .75rem;
  flex-wrap: wrap;
}
.c-header__barText{
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}
.c-header__barLink{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
}
.c-header__barLink:hover{ border-bottom-color: rgba(255,255,255,.65); }

.c-nav.navbar{
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  min-height: 67px;
  position: relative;
}
.c-nav.navbar > .container{
  height: 100%;
  align-items: center;
}
.c-nav__links .nav-link{
  color: rgba(255,255,255,.86) !important;
  font-weight: 650;
  font-size: .92rem;
  padding-left: .65rem !important;
  padding-right: .65rem !important;
}
.c-nav__links .nav-link:hover{ color: rgba(255,255,255,.98) !important; }
.c-nav__toggler{ border-color: rgba(255,255,255,.45); }
.c-header .navbar-toggler-icon{
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.c-brand{
  display:flex;
  align-items:center;
  gap:.55rem;
  text-decoration:none;
  color: inherit;
  position: relative;
  --logo-w: 200px;
  padding-left: 0;
  min-height: 44px;
  min-width: var(--logo-w);
}
.c-brand__mark{
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-brand__mark img{
  width: var(--logo-w);
  height: auto;
  object-fit: contain;
  display: block;
}

.c-header .c-nav__ctas .c-btn{
  padding: .42rem .72rem;
  font-size: .90rem;
}
.c-nav__toggler{
  padding: .2rem .4rem;
}

@media (max-width: 991.98px){
  .c-brand__tag{ display:none; }
}

@media (max-width: 575.98px){
  .c-brand{
    --logo-w: 180px;
    padding-left: 0;
    min-width: var(--logo-w);
  }
  .c-brand__mark img{
    width: var(--logo-w);
    height: auto;
  }
}
.c-brand__text{ display:flex; flex-direction:column; line-height: 1.05; }
.c-brand__name{ font-weight: 800; letter-spacing: -0.02em; }
.c-brand__name{ color: rgba(255,255,255,.96); }
.c-brand__tag{ color: rgba(255,255,255,.74); font-size: .86rem; }
.c-header__rule{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/* ====== Mobile hamburger menu ====== */
@media (max-width: 991.98px){
  .c-nav .navbar-collapse{
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    padding: .75rem 0 1rem;
    background: var(--header-bg);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
  }
}

/* ====== Buttons ====== */
.c-btn--brand{
  background: var(--brand-gradient);
  border: 0;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,25,233,.22);
}
.c-btn--brand:hover{
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,25,233,.28);
}
.c-header .c-btn--brand{
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: var(--header-bg);
  box-shadow: 
    0 4px 16px rgba(0,0,0,.12),
    0 0 0 1px rgba(255,255,255,.1) inset;
  border: none;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.c-header .c-btn--brand::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s ease;
}
.c-header .c-btn--brand:hover::before{
  left: 100%;
}
.c-header .c-btn--brand:hover{
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
  color: var(--header-bg);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 24px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.2) inset;
}
.c-header .c-btn--brand:active{
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(0,0,0,.12),
    0 0 0 1px rgba(255,255,255,.1) inset;
}
.c-header .c-btn--brand i{
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.c-header .c-btn--brand:hover i{
  transform: translateX(3px);
}

/* ====== Modal Solicitar ====== */
.c-modalSolicitar{
  border-radius: 20px;
  border: 0;
  overflow: hidden;
}
.c-modalSolicitar__header{
  background: var(--header-bg);
  color: #ffffff;
  border-bottom: 0;
  padding: 1.5rem 2rem;
}
.c-modalSolicitar__title{
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.c-modalSolicitar__title i{
  font-size: 1.3rem;
}
.c-modalSolicitar__close{
  filter: brightness(0) invert(1);
  opacity: .9;
}
.c-modalSolicitar__close:hover{
  opacity: 1;
}
.c-modalSolicitar__body{
  padding: 2rem;
}
.c-modalSolicitar__text{
  color: rgba(16,31,60,.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.c-modalSolicitar__form{
  margin-bottom: 1rem;
}
.c-modalSolicitar__label{
  font-weight: 800;
  color: rgba(16,31,60,.90);
  font-size: .9rem;
  margin-bottom: .5rem;
}
.c-modalSolicitar__input{
  border-radius: 12px;
  border-color: rgba(16,31,60,.14);
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: all .2s ease;
}
.c-modalSolicitar__input:focus{
  border-color: rgba(0,25,233,.35);
  box-shadow: 0 0 0 .22rem rgba(0,25,233,.12);
}
.c-modalSolicitar__fine{
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  color: rgba(16,31,60,.65);
  font-size: .85rem;
}
.c-modalSolicitar__fine i{
  color: rgba(34,197,94,.85);
  font-size: .9rem;
}

@media (max-width: 575.98px){
  .c-modalSolicitar__header{
    padding: 1.25rem 1.5rem;
  }
  .c-modalSolicitar__title{
    font-size: 1.2rem;
  }
  .c-modalSolicitar__body{
    padding: 1.5rem;
  }
}

/* ====== Hero ====== */
.c-hero{
  background: #ffffff;
  padding-bottom: 1.8rem;
  position: relative;
  overflow: hidden;
}

.c-heroMeta{
  display:flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  color: rgba(16,31,60,.68);
  font-size: .88rem;
  font-weight: 650;
  margin-bottom: 1.1rem;
}
.c-heroMeta__sep{ opacity: .6; }
@media (max-width: 991px){
  .c-heroMeta{
    flex-wrap: nowrap;
    font-size: .8rem;
    gap: .4rem;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .c-heroMeta span{
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.c-heroStage{
  position: relative;
  isolation: isolate;
  background: #f7fbff;
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: 0;
  overflow: hidden;
}
.c-heroStage::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 70%;
  background: var(--header-bg);
  z-index: 0;
}
@media (max-width: 991px){
  .c-hero .container{
    padding-left: 0;
    padding-right: 0;
  }
  .c-heroStage{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50% + 1rem);
    padding-right: calc(50vw - 50% + 1rem);
  }
  .c-heroStage::before{
    left: calc(50% - 50vw);
    width: 100vw;
  }
}
.c-heroStage > .row{
  position: relative;
  z-index: 2;
}
.c-heroStage__right{
  position: relative;
  z-index: 20;
}
.c-heroStage__left{
  color: rgba(255,255,255,.92);
}
.c-heroStage__left .c-hero__title{
  color: rgba(255,255,255,.98);
}
.c-heroStage__left .c-hero__lead{
  color: rgba(255,255,255,.78);
}
.c-heroStage__left .c-heroList li{
  color: rgba(255,255,255,.86);
}

.c-hero__title{
  margin-top: 0;
  margin-bottom: .85rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(2.15rem, 3.3vw, 3.2rem);
  color: #1f3b73;
}
.c-hero__lead{
  color: rgba(11,18,32,.70);
  max-width: 72ch;
  font-size: 1.02rem;
}
.c-heroList{
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: .55rem;
}
.c-heroList li{
  display:flex;
  align-items:flex-start;
  gap: .6rem;
  color: rgba(11,18,32,.76);
  font-weight: 650;
}
.c-heroList li::before{
  content:"";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  background: rgba(34,197,94,.95);
  -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='black' d='M9.0 16.2 4.8 12l-1.4 1.4L9.0 19 21 7l-1.4-1.4z'/%3e%3c/svg%3e") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='black' d='M9.0 16.2 4.8 12l-1.4 1.4L9.0 19 21 7l-1.4-1.4z'/%3e%3c/svg%3e") center/16px 16px no-repeat;
}

.c-heroForm{
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid rgba(20,30,60,.10);
  border-radius: 14px;
  box-shadow:
    0 26px 70px rgba(11,18,32,.16),
    0 2px 0 rgba(255,255,255,.75) inset;
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  z-index: 25;
  isolation: isolate;
  margin-left: -1px;
}
.c-heroForm__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(16,31,60,.92);
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}
.c-heroForm__grid{
  display: grid;
  gap: .85rem;
}
.c-heroForm .form-control,
.c-heroForm__input{
  border-radius: 12px;
  border-color: rgba(16,31,60,.14);
  padding: .85rem 1rem;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  transition: all .2s ease;
}
.c-heroForm .form-control::placeholder,
.c-heroForm__input::placeholder{ 
  color: rgba(16,31,60,.46); 
  font-weight: 400;
}
.c-heroForm .form-control:focus,
.c-heroForm__input:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 .22rem rgba(37,99,235,.12);
  outline: none;
}
.c-heroForm__btn{
  width: 100%;
  margin-top: .85rem;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #15a84b 0%, #0f5d2c 100%);
  color: #fff;
  border: 0;
  box-shadow:
    0 16px 40px rgba(21,128,61,.22),
    0 1px 0 rgba(255,255,255,.30) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.c-heroForm__btn:hover{
  color: #fff;
  filter: brightness(1.02);
}
.c-heroForm__btn-icon{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.c-heroForm__btn:hover .c-heroForm__btn-icon{
  transform: translateX(4px);
}
.c-heroForm__btn:disabled{
  opacity: 0.7;
  cursor: not-allowed;
}
.c-heroForm__fine{
  margin-top: .75rem;
  display:flex;
  gap: .55rem;
  align-items:flex-start;
  color: rgba(11,18,32,.62);
  font-size: .86rem;
  line-height: 1.35;
}
.c-heroForm__lock{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  opacity: .7;
}

/* ====== Eligibility ====== */
.c-section.c-eligibility{
  background: #fff;
  position: relative;
  overflow: hidden;
}
.c-eligibility .container{
  position: relative;
  z-index: 1;
}
.c-eligibilityTop{
  margin-bottom: 1.25rem;
  display:flex;
  align-items:center;
  gap: .85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(16,31,60,.92);
  font-weight: 1000;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  text-align: left;
}
.c-eligibilityTop::after{
  content: "";
  height: 1px;
  background: rgb(16 31 60);
  flex: 1 1 auto;
}
.c-eligibility__left{
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.c-eligibility__right{
  display:flex;
  overflow: visible;
}
.c-eligibilityList{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.c-eligibilityList__item{
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(16,31,60,.12);
  color: rgba(16,31,60,.86);
  font-weight: 650;
  font-size: .98rem;
  text-align: left;
}
.c-eligibilityList__item:last-child{
  border-bottom: 0;
}
.c-eligibilityList__icon{
  flex: 0 0 auto;
  color: #fff;
  font-size: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--header-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.c-eligibilityList__item span{
  display:block;
  max-width: 62ch;
  flex: 1;
  margin-left: 1rem;
}
.c-eligibilityMedia{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  isolation: isolate;
}
.c-eligibilityMedia__frame{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 30px 80px rgba(11,18,32,.18);
  z-index: 2;
}
.c-eligibilityMedia__img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 60% 20%;
  display:block;
  position: relative;
}
.c-eligibilityMedia__shape{
  position:absolute;
  pointer-events:none;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}
.c-eligibilityMedia__shape--sphereA{
  width: clamp(110px, 16vw, 170px);
  height: clamp(110px, 16vw, 170px);
  border-radius: 999px;
  right: -86px;
  top: 12px;
  background:
    radial-gradient(circle at 28% 26%,
      rgba(186,230,253,.95) 0%,
      rgba(56,189,248,.92) 26%,
      rgba(37,99,235,.90) 62%,
      rgba(30,58,138,.88) 100%);
  box-shadow:
    0 26px 70px rgba(11,18,32,.18),
    0 0 0 12px rgba(56,189,248,.06);
  opacity: .95;
}
.c-eligibilityMedia__shape--sphereB{
  width: clamp(80px, 11vw, 120px);
  height: clamp(80px, 11vw, 120px);
  border-radius: 999px;
  left: -64px;
  bottom: -52px;
  background:
    radial-gradient(circle at 30% 26%,
      rgba(224,231,255,.94) 0%,
      rgba(99,102,241,.90) 28%,
      rgba(37,99,235,.88) 70%,
      rgba(30,58,138,.86) 100%);
  box-shadow:
    0 24px 64px rgba(11,18,32,.16),
    0 0 0 10px rgba(99,102,241,.05);
  opacity: .88;
}
.c-eligibilityMedia__shape--triA{
  width: clamp(44px, 6vw, 66px);
  height: clamp(44px, 6vw, 66px);
  right: -18px;
  top: 44%;
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(56,189,248,.90), rgba(37,99,235,.82));
  transform: rotate(14deg);
  box-shadow: 0 18px 52px rgba(11,18,32,.18);
  opacity: .86;
}
.c-eligibilityMedia__shape--triB{
  width: clamp(36px, 5vw, 54px);
  height: clamp(36px, 5vw, 54px);
  left: -12px;
  top: 62%;
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(99,102,241,.86), rgba(56,189,248,.78));
  transform: rotate(-18deg);
  box-shadow: 0 16px 44px rgba(11,18,32,.16);
  opacity: .72;
}
.c-eligibilityMedia__shape--triC{
  width: clamp(30px, 4vw, 44px);
  height: clamp(30px, 4vw, 44px);
  right: 18px;
  bottom: -18px;
  clip-path: polygon(50% 0%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(56,189,248,.65), rgba(30,58,138,.55));
  transform: rotate(10deg);
  opacity: .55;
}

@media (max-width: 991.98px){
  .c-eligibilityMedia{ height: auto; }
  .c-eligibilityMedia__img{ height: 380px; min-height: 0; }
  .c-eligibilityMedia__shape--sphereA{ right: -46px; }
  .c-eligibilityMedia__shape--sphereB{ left: -34px; }
}

/* ====== Advantages (Vantagens) - DARK MODE ====== */
.c-section.c-advantages{
  background: var(--header-bg) !important;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92) !important;
  position: relative;
  overflow: visible;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ====== WAVES ONDULADAS REAIS ====== */
.c-section.c-advantages::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C180,10 360,110 540,60 C720,10 900,110 1080,60 C1260,10 1350,50 1440,40 L1440,120 L0,120 Z' fill='%23101f3c'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
  pointer-events: none;
}

.c-section.c-advantages::after{
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C180,110 360,10 540,60 C720,110 900,10 1080,60 C1260,110 1350,70 1440,80 L1440,0 L0,0 Z' fill='%23101f3c'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 10;
  pointer-events: none;
}

.c-section.c-advantages .container{
  position: relative;
  z-index: 2;
}
.c-advantages__head{
  margin-bottom: 1.1rem;
}
.c-section.c-advantages h2,
.c-section.c-advantages .c-advantages__t{
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.98) !important;
  line-height: 1.12;
}
.c-section.c-advantages p,
.c-section.c-advantages .c-advantages__s{
  margin-top: .55rem;
  color: rgba(255,255,255,.82) !important;
  max-width: 60ch;
}
.c-advantagesMedia{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}
.c-advantagesMedia__img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 55% 18%;
  display:block;
}
.c-advantagesMedia__tag{
  position:absolute;
  left: 16px;
  bottom: 16px;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(16,31,60,.82);
  color: rgba(255,255,255,.95);
  font-weight: 900;
  font-size: .9rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.20);
}
.c-advantagesGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.c-section.c-advantages .c-advItem{
  display:flex;
  gap: .85rem;
  align-items:flex-start;
  padding: 1rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.c-section.c-advantages .c-advItem__ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.95) !important;
  flex: 0 0 auto;
}
.c-section.c-advantages .c-advItem__ico i{
  font-size: 1.15rem;
  color: rgba(255,255,255,.95) !important;
}
.c-section.c-advantages .c-advItem__t{
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.98) !important;
  line-height: 1.15;
}
.c-section.c-advantages .c-advItem__d{
  margin-top: .35rem;
  color: rgba(255,255,255,.78) !important;
  font-size: .95rem;
  line-height: 1.45;
}

/* ====== Occupations (Carrossel) ====== */
.c-occupations{
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
}
.c-occupations .container{ 
  max-width: 1000px; 
  position: relative;
}
.c-occupations__head{
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.c-occupations__badge{
  display: inline-block;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(0,25,233,.1), rgba(28,53,255,.06));
  color: rgba(0,25,233,.95);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,25,233,.15);
}
.c-occupations__t{
  font-weight: 1000;
  letter-spacing: -0.04em;
  color: rgba(16,31,60,.98);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.c-occupations__s{
  color: rgba(16,31,60,.70);
  font-size: 1.1rem;
  line-height: 1.7;
}
.c-occupations__s strong{
  color: rgba(16,31,60,.90);
  font-weight: 800;
}

/* Carousel */
.c-occupationsCarousel{
  margin-bottom: 3rem;
  position: relative;
}
.c-occupationsCarousel__inner{
  padding: 0;
}
.c-occupationsCarousel .carousel-item{
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-occupationsCard{
  background: #ffffff;
  border: 2px solid rgba(16,31,60,.08);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: 
    0 10px 40px rgba(11,18,32,.08),
    0 2px 0 rgba(255,255,255,.9) inset;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.c-occupationsCard::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity .3s ease;
}
.c-occupationsCard--allow{
  border-color: rgba(34,197,94,.25);
  background: linear-gradient(180deg, rgba(34,197,94,.03) 0%, #ffffff 100%);
}
.c-occupationsCard--allow::before{
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.7), transparent);
  opacity: 1;
}
.c-occupationsCard--allow .c-occupationsCard__icon{
  background: linear-gradient(135deg, rgba(34,197,94,.15), rgba(22,163,74,.10));
  color: #16a34a;
  border-color: rgba(34,197,94,.3);
}
.c-occupationsCard--restrict{
  border-color: rgba(239,68,68,.25);
  background: linear-gradient(180deg, rgba(239,68,68,.03) 0%, #ffffff 100%);
}
.c-occupationsCard--restrict::before{
  background: linear-gradient(90deg, transparent, rgba(239,68,68,.7), transparent);
  opacity: 1;
}
.c-occupationsCard--restrict .c-occupationsCard__icon{
  background: linear-gradient(135deg, rgba(239,68,68,.15), rgba(185,28,28,.10));
  color: #dc2626;
  border-color: rgba(239,68,68,.3);
}
.c-occupationsCard--multiple{
  border-color: rgba(37,99,235,.25);
  background: linear-gradient(180deg, rgba(37,99,235,.03) 0%, #ffffff 100%);
}
.c-occupationsCard--multiple::before{
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.7), transparent);
  opacity: 1;
}
.c-occupationsCard--multiple .c-occupationsCard__icon{
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(30,64,175,.10));
  color: #2563eb;
  border-color: rgba(37,99,235,.3);
}
.c-occupationsCard--info{
  border-color: rgba(139,92,246,.25);
  background: linear-gradient(180deg, rgba(139,92,246,.03) 0%, #ffffff 100%);
}
.c-occupationsCard--info::before{
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.7), transparent);
  opacity: 1;
}
.c-occupationsCard--info .c-occupationsCard__icon{
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(109,40,217,.10));
  color: #7c3aed;
  border-color: rgba(139,92,246,.3);
}
.c-occupationsCard--examples{
  border-color: rgba(251,191,36,.25);
  background: linear-gradient(180deg, rgba(251,191,36,.03) 0%, #ffffff 100%);
}
.c-occupationsCard--examples::before{
  background: linear-gradient(90deg, transparent, rgba(251,191,36,.7), transparent);
  opacity: 1;
}
.c-occupationsCard--examples .c-occupationsCard__icon{
  background: linear-gradient(135deg, rgba(251,191,36,.15), rgba(217,119,6,.10));
  color: #d97706;
  border-color: rgba(251,191,36,.3);
}
.c-occupationsCard__icon{
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 2rem;
  border: 3px solid;
  flex-shrink: 0;
}
.c-occupationsCard__title{
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: rgba(16,31,60,.98);
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.c-occupationsCard__text{
  color: rgba(16,31,60,.75);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.c-occupationsCard__text strong{
  color: rgba(16,31,60,.95);
  font-weight: 800;
}
.c-occupationsCard__examples{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.c-occupationsCard__example{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(16,31,60,.04);
  border: 1px solid rgba(16,31,60,.1);
  transition: all .25s ease;
}
.c-occupationsCard__example:hover{
  background: rgba(16,31,60,.08);
  border-color: rgba(16,31,60,.16);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11,18,32,.08);
}
.c-occupationsCard__example i{
  color: rgba(16,31,60,.7);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.c-occupationsCard__example span{
  color: rgba(16,31,60,.9);
  font-weight: 700;
  font-size: .95rem;
}
.c-occupationsCard__highlight{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(30,64,175,.06));
  border: 1px solid rgba(37,99,235,.2);
  max-width: 500px;
  margin: 0 auto;
}
.c-occupationsCard__highlightIcon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(37,99,235,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.c-occupationsCard__highlightText{
  color: rgba(30,64,175,.95);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.4;
  text-align: left;
}
.c-occupationsCard__highlightText strong{
  color: #1e40af;
  font-weight: 1000;
}

/* Carousel Controls */
.c-occupationsCarousel__indicators{
  margin-bottom: 2rem;
  gap: .5rem;
}
.c-occupationsCarousel__indicators button{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(16,31,60,.2);
  border: 2px solid transparent;
  opacity: 1;
  transition: all .3s ease;
}
.c-occupationsCarousel__indicators button.active{
  background: var(--brand-gradient);
  border-color: rgba(0,25,233,.3);
  width: 32px;
  border-radius: 6px;
}
.c-occupationsCarousel__control{
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 2px solid rgba(16,31,60,.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(11,18,32,.1);
}
.c-occupationsCarousel__control:hover{
  background: var(--brand-gradient);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,25,233,.25);
}
.c-occupationsCarousel__control i{
  color: rgba(16,31,60,.7);
  font-size: 1.1rem;
}
.c-occupationsCarousel__control:hover i{
  color: #ffffff;
}
.c-occupationsCarousel__control.carousel-control-prev{
  left: -25px;
}
.c-occupationsCarousel__control.carousel-control-next{
  right: -25px;
}

.c-occupations__cta{
  text-align: center;
  margin-top: 2.5rem;
}
.c-occupations__cta .c-btn--solicitar{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.c-occupations__cta .c-btn--solicitar i{
  font-size: 1rem;
}

/* ====== Presence ====== */
.c-section.c-presence{
  background: var(--header-bg);
}
.c-presence__t{
  font-weight: 1000;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: rgba(255,255,255,.98);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 1rem;
}
.c-presence__s{
  margin-top: .6rem;
  color: rgba(255,255,255,.82);
  max-width: 65ch;
  font-size: 1.05rem;
  line-height: 1.7;
}
.c-presence__btn{
  margin-top: 1.5rem;
  border-radius: 12px;
  padding: .9rem 1.5rem;
  font-weight: 1000;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.94);
  border: 0;
  color: rgba(16,31,60,.95);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: all .3s ease;
  text-decoration: none;
  cursor: pointer;
}
.c-presence__btn:hover{ 
  color: rgba(16,31,60,.95); 
  filter: brightness(.98); 
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  text-decoration: none;
}
.c-presence__btn i{
  font-size: 1.1rem;
}

.c-presenceArt{
  position: relative;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(56,189,248,.16), transparent 55%),
              radial-gradient(120% 120% at 70% 80%, rgba(34,197,94,.12), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  height: 340px;
  overflow: hidden;
}
.c-presenceArt__map{
  position:absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%);
  width: 270px;
  height: 230px;
  background: linear-gradient(135deg, rgba(56,189,248,.95), rgba(34,197,94,.88));
  /* Brazil silhouette via mask */
  -webkit-mask: url("../../app/brazil-map.svg") center/contain no-repeat;
          mask: url("../../app/brazil-map.svg") center/contain no-repeat;
  box-shadow:
    0 40px 90px rgba(0,0,0,.22),
    0 0 0 14px rgba(56,189,248,.06);
}
.c-presenceArt__map::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 30% 22%, rgba(255,255,255,.35), transparent 52%),
    radial-gradient(80% 80% at 70% 78%, rgba(0,0,0,.18), transparent 55%);
  opacity: .55;
  pointer-events:none;
}
.c-presenceArt__orbit{
  position:absolute;
  left: 50%;
  top: 52%;
  width: 300px;
  height: 170px;
  border-radius: 999px;
  transform: translate(-50%,-50%) rotate(-18deg);
  border: 2px dashed rgba(255,255,255,.22);
  opacity: .9;
}
.c-presenceArt__plane{
  position:absolute;
  left: 50%;
  top: 52%;
  font-size: 22px;
  color: rgba(255,255,255,.92);
  transform-origin: 150px 0;
  transform: translate(-50%,-50%) rotate(0deg) translateX(150px) rotate(18deg);
  animation: plane-orbit 8s linear infinite;
}
@keyframes plane-orbit{
  from{ transform: translate(-50%,-50%) rotate(0deg) translateX(150px) rotate(18deg); }
  to{ transform: translate(-50%,-50%) rotate(360deg) translateX(150px) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce){
  .c-presenceArt__plane{ animation: none !important; }
}

@media (max-width: 991.98px){
  .c-presenceArt{ height: 300px; }
  .c-presenceArt__map{
    width: 220px;
    height: 190px;
  }
  .c-presenceArt__orbit{
    width: 250px;
    height: 140px;
  }
  .c-presenceArt__plane{
    font-size: 18px;
    transform-origin: 125px 0;
    transform: translate(-50%,-50%) rotate(0deg) translateX(125px) rotate(18deg);
  }
  @keyframes plane-orbit{
    from{ transform: translate(-50%,-50%) rotate(0deg) translateX(125px) rotate(18deg); }
    to{ transform: translate(-50%,-50%) rotate(360deg) translateX(125px) rotate(18deg); }
  }
}

/* ====== Process ====== */
.c-process{
  background: #fff;
  margin-top: 4rem;
}
.c-process .container{ max-width: 1160px; }
.c-process__head{
  text-align: center;
  margin-bottom: 2rem;
}
.c-process__t{
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: rgba(16,31,60,.96);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}
.c-processSteps{
  margin-top: 1.1rem;
  list-style: none;
  padding: 0;
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.c-processSteps::before{
  content:"";
  position:absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  z-index: 0;
}
.c-processSteps::after{
  content:"";
  position:absolute;
  left: 26px;
  top: 26px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37,99,235,.7), rgba(34,197,94,.7));
  height: 0%;
  z-index: 0;
  animation: progressFillVertical 4.2s ease-in-out forwards;
  box-shadow: 0 0 8px rgba(37,99,235,.4);
}
@keyframes progressFillVertical{
  0% { height: 0%; }
  19% { height: 20%; }
  38% { height: 40%; }
  57% { height: 60%; }
  76% { height: 80%; }
  100% { height: 80%; }
}
.c-processStep{
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding-left: 0.5rem;
}
.c-processStep__dot{
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,31,60,.14);
  box-shadow: 0 18px 44px rgba(11,18,32,.10);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0.6;
  transform: scale(0.9);
  animation: stepComplete 0.6s ease-out forwards;
}
.c-processStep:nth-child(1) .c-processStep__dot{
  animation-delay: 0.2s;
}
.c-processStep:nth-child(2) .c-processStep__dot{
  animation-delay: 1s;
}
.c-processStep:nth-child(3) .c-processStep__dot{
  animation-delay: 1.8s;
}
.c-processStep:nth-child(4) .c-processStep__dot{
  animation-delay: 2.6s;
}
.c-processStep:nth-child(5) .c-processStep__dot{
  animation-delay: 3.4s;
}
@keyframes stepComplete{
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.c-processStep__dot::before{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37,99,235,.18), rgba(34,197,94,.16));
  opacity: 0;
  animation: dotFill 0.6s ease-out forwards;
}
.c-processStep:nth-child(1) .c-processStep__dot::before{
  animation-delay: 0.2s;
}
.c-processStep:nth-child(2) .c-processStep__dot::before{
  animation-delay: 1s;
}
.c-processStep:nth-child(3) .c-processStep__dot::before{
  animation-delay: 1.8s;
}
.c-processStep:nth-child(4) .c-processStep__dot::before{
  animation-delay: 2.6s;
}
.c-processStep:nth-child(5) .c-processStep__dot::before{
  animation-delay: 3.4s;
}
@keyframes dotFill{
  0% {
    opacity: 0;
  }
  100% {
    opacity: .9;
  }
}
.c-processStep__n{
  position: relative;
  z-index: 1;
  font-weight: 1000;
  color: rgba(16,31,60,.92);
}
.c-processStep__v{
  font-weight: 900;
  color: rgba(16,31,60,.86);
  font-size: .95rem;
  line-height: 1.4;
  flex: 1;
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: textFadeIn 0.6s ease-out forwards;
}
.c-processStep:nth-child(1) .c-processStep__v{
  animation-delay: 0.4s;
}
.c-processStep:nth-child(2) .c-processStep__v{
  animation-delay: 1.2s;
}
.c-processStep:nth-child(3) .c-processStep__v{
  animation-delay: 2s;
}
.c-processStep:nth-child(4) .c-processStep__v{
  animation-delay: 2.8s;
}
.c-processStep:nth-child(5) .c-processStep__v{
  animation-delay: 3.6s;
}
@keyframes textFadeIn{
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Sections ====== */
.c-section{ background: #fff; }
.c-section__head{ margin-bottom: 1.6rem; }
.c-section__head--tight{ margin-bottom: 1.1rem; }
.c-section__k{
  font-weight: 900;
  color: rgba(0,25,233,.90);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .74rem;
  margin-bottom: .55rem;
}
.c-section__t{ 
  font-weight: 900; 
  letter-spacing: -0.03em; 
  color: rgba(16,31,60,.96);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}
.c-section__s{ 
  color: var(--muted); 
  max-width: 72ch; 
  font-size: 1.05rem;
}

/* ====== Buttons ====== */
.c-btn{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: .72rem 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.c-btn--solicitar{
  border-radius: 4px;
  background: linear-gradient(180deg, #138a3a 0%, #0e6c2d 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 14px 26px rgba(0,0,0,.20);
  font-weight: 900;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 0;
  transform: translateY(-2px);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, filter .14s ease;
}
.c-btn--solicitar::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 4px;
  z-index: -1;
  transform: translate(-7px, 12px);
  background:
    linear-gradient(#facc15,#facc15) left top / 3px 100% no-repeat,
    linear-gradient(#facc15,#facc15) left bottom / 100% 3px no-repeat;
  pointer-events: none;
}
.c-btn--solicitar:hover{
  color: #fff;
  filter: brightness(1.02);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(0,0,0,.22);
}
.c-btn--solicitar:active{
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

/* ====== Footer - DARK MODE ====== */
footer.bg-dark,
.c-footer{
  background: var(--header-bg) !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 4rem 0 2rem !important;
}
.c-footer h5{
  color: #ffffff !important;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.c-footer p,
.c-footer span,
.c-footer li,
.c-footer a{ 
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-footer a:hover{ 
  color: rgba(255,255,255,.9) !important; 
}
.c-footer .text-muted{
  color: rgba(255,255,255,.85) !important;
}
.c-footer__brand img{
  filter: brightness(0) invert(1);
}
.c-footer__social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #ffffff !important;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.c-footer__social a:hover{
  background: rgba(255,255,255,.2);
  color: #ffffff !important;
  transform: translateY(-2px);
}
.c-footer ul li{
  margin-bottom: 0.5rem;
}
.c-footer hr{
  border-color: rgba(255,255,255,.15);
  margin: 2rem 0 1.5rem;
}
.c-footer small{
  color: rgba(255,255,255,.85) !important;
}

/* ====== Testimonials (Depoimentos) ====== */
.c-testimonials{
  background: #f8fafc;
  padding: 3rem 0;
}
.c-testimonialsCarousel{
  position: relative;
  padding: 0 3rem;
}
.c-testimonialsCarousel__inner{
  padding: 1rem 0;
}
@media (min-width: 992px){
  .c-testimonialsCarousel__inner{
    display: flex;
    gap: 1.5rem;
    overflow: visible;
  }
  .c-testimonialsCarousel__inner .carousel-item{
    flex: 0 0 calc(33.333333% - 1rem);
    max-width: calc(33.333333% - 1rem);
    width: calc(33.333333% - 1rem);
    position: relative !important;
    margin-right: 0 !important;
  }
  .c-testimonialsCarousel__inner .carousel-item .row{
    margin: 0;
    height: 100%;
  }
  .c-testimonialsCarousel__inner .carousel-item .col-lg-4{
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .c-testimonialsCarousel__inner .carousel-item .c-testimonialCard{
    width: 100%;
    min-height: 100%;
  }
}
.c-testimonialCard{
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 10px 40px rgba(11,18,32,.08),
    0 0 0 1px rgba(16,31,60,.05);
  border-left: 4px solid var(--header-bg);
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  perspective: 1000px;
  box-sizing: border-box;
}
.c-testimonialCard:hover{
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  box-shadow: 
    0 25px 60px rgba(11,18,32,.15),
    0 0 0 1px rgba(16,31,60,.08),
    0 0 30px rgba(16,31,60,.1);
}
.c-testimonialCard__quote{
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--header-bg);
  opacity: 0.15;
  line-height: 1;
}
.c-testimonialCard__text{
  color: rgba(16,31,60,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}
.c-testimonialCard__author{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.c-testimonialCard__avatar{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(21,168,75,.2);
  background: #f0f0f0;
}
.c-testimonialCard__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-testimonialCard__info{
  flex: 1;
}
.c-testimonialCard__name{
  font-weight: 900;
  color: rgba(16,31,60,.95);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.c-testimonialCard__role{
  color: rgba(16,31,60,.65);
  font-size: 0.9rem;
}
.c-testimonialCard__rating{
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 1.1rem;
}
.c-testimonialsCarousel__control{
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  border: 2px solid rgba(16,31,60,.1);
  color: rgba(16,31,60,.7);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.c-testimonialsCarousel__control:hover{
  background: #15a84b;
  border-color: #15a84b;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}
.c-testimonialsCarousel__control i{
  font-size: 1.2rem;
}
.c-testimonialsCarousel__indicators{
  margin-top: 2rem;
  margin-bottom: 0;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  opacity: 1 !important;
  list-style: none;
  padding: 0;
  position: static !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}
.c-testimonialsCarousel__indicators button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--header-bg);
  margin: 0 !important;
  padding: 0;
  opacity: 1 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-indent: 0 !important;
  flex: 0 0 auto;
  cursor: pointer;
}
.c-testimonialsCarousel__indicators button:not(.active){
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--header-bg);
}
.c-testimonialsCarousel__indicators button::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.c-testimonialsCarousel__indicators button:hover{
  background: rgba(16,31,60,.1);
  transform: scale(1.2);
}
.c-testimonialsCarousel__indicators button.active{
  background: var(--header-bg);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--header-bg);
  transform: scale(1);
  animation: dotPulse 2s ease-in-out infinite;
}
.c-testimonialsCarousel__indicators button.active::before{
  border-color: var(--header-bg);
  opacity: 0.2;
  animation: dotRing 2s ease-in-out infinite;
}
@keyframes dotPulse{
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
@keyframes dotRing{
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.15); }
}

@media (max-width: 991px){
  .c-testimonialsCarousel{
    padding: 0 2rem;
  }
  .c-testimonialCard{
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 991px){
  .c-testimonialsCarousel .row .col-lg-4{
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px){
  .c-testimonials{
    padding: 2.5rem 0;
  }
  .c-testimonialsCarousel{
    padding: 0 1rem;
  }
  .c-testimonialsCarousel__inner{
    overflow: hidden;
  }
  .carousel-item{
    padding: 0;
  }
  .c-testimonialsCarousel .row{
    margin: 0;
    display: flex !important;
  }
  .c-testimonialsCarousel .row .col-lg-4,
  .c-testimonialsCarousel .row .col-md-6{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .c-testimonialsCarousel .row .col-lg-4:not(:first-child),
  .c-testimonialsCarousel .row .col-md-6:not(:first-child){
    display: none !important;
  }
  .c-testimonialCard{
    padding: 1.75rem 1.25rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .c-testimonialsCarousel__control{
    width: 40px;
    height: 40px;
  }
  .c-testimonialCard:hover{
    transform: translateY(-5px) rotateX(1deg);
  }
}

/* ====== Accordion ====== */
.c-accordion .accordion-item{
  border-radius: var(--r3) !important;
  border: 1px solid rgba(11,18,32,.10);
  overflow:hidden;
  background: rgba(255,255,255,.92);
  margin-bottom: .85rem;
}
.c-accordion .accordion-button{
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 1.05rem 1.1rem;
}
.c-accordion .accordion-button:not(.collapsed){
  background: rgba(0,25,233,.05);
  color: rgba(11,18,32,.95);
  box-shadow: none;
}
.c-accordion .accordion-body{ 
  color: var(--muted); 
  line-height: 1.65; 
}

/* Responsive */
/* ====== Application Form / Wizard ====== */
.c-appFlow{
  background: #f8fafc;
  min-height: 100vh;
  padding: 3rem 0;
}
.c-wizard{
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(11,18,32,.12);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.c-wizard__top{
  margin-bottom: 3rem;
}

/* Timeline Horizontal */
.c-timeline{
  position: relative;
}
.c-timeline__line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(16, 31, 60, .12);
    z-index: 0;
    margin-top: 24px;
    transform: translateY(-50%);
}
.c-timeline__line::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--header-bg), #15a84b);
  transition: width 0.4s ease;
  border-radius: 999px;
  z-index: 0;
}
.c-timeline__steps{
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.c-timeline__step{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.c-timeline__dot{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid rgba(16,31,60,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.c-timeline__number{
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(16,31,60,.6);
  transition: color 0.3s ease;
}
.c-timeline__label{
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(16,31,60,.6);
  text-align: center;
  transition: color 0.3s ease;
}
.c-timeline__step.is-active .c-timeline__dot{
  background: var(--header-bg);
  border-color: var(--header-bg);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(16,31,60,.3);
}
.c-timeline__step.is-active .c-timeline__number{
  color: #ffffff;
}
.c-timeline__step.is-active .c-timeline__label{
  color: var(--header-bg);
  font-weight: 700;
}
.c-timeline__step.is-done .c-timeline__dot{
  background: #15a84b;
  border-color: #15a84b;
}
.c-timeline__step.is-done .c-timeline__number{
  color: #ffffff;
}
.c-timeline__step.is-done .c-timeline__label{
  color: rgba(16,31,60,.8);
}

/* Material UI Inputs */
.c-wizard .form-label{
  font-weight: 600;
  color: rgba(16,31,60,.9);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}
.c-wizard .form-control,
.c-wizard .form-select{
  border: 2px solid rgba(16,31,60,.15);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  background: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,.04);
}
.c-wizard .form-control:focus,
.c-wizard .form-select:focus{
  border-color: var(--header-bg);
  box-shadow: 0 0 0 3px rgba(16,31,60,.1);
  outline: none;
  background: #ffffff;
}
.c-wizard .form-control::placeholder{
  color: rgba(16,31,60,.4);
}
.c-wizard .form-control.is-invalid,
.c-wizard .form-select.is-invalid{
  border-color: #dc3545;
}
.c-wizard .invalid-feedback{
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}
.c-wizard .form-check-input{
  width: 20px;
  height: 20px;
  border: 2px solid rgba(16,31,60,.3);
  border-radius: 4px;
  margin-top: 0.25rem;
}
.c-wizard .form-check-input:checked{
  background-color: var(--header-bg);
  border-color: var(--header-bg);
}
.c-wizard .form-check-label{
  margin-left: 0.5rem;
  color: rgba(16,31,60,.85);
  font-size: 0.95rem;
}
.c-wizardNav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16,31,60,.1);
}
.c-wizardNav__back,
.c-wizardNav__next,
.c-wizardNav__submit{
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}
.c-wizardNav__back{
  background: transparent;
  color: rgba(16,31,60,.7);
}
.c-wizardNav__back:hover:not(:disabled){
  background: rgba(16,31,60,.05);
  color: rgba(16,31,60,.9);
}
.c-wizardNav__back:disabled{
  opacity: 0.4;
  cursor: not-allowed;
}
.c-wizardNav__next,
.c-wizardNav__submit{
  background: var(--header-bg);
  color: #ffffff;
}
.c-wizardNav__next:hover:not(:disabled),
.c-wizardNav__submit:hover:not(:disabled){
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,31,60,.3);
  filter: brightness(1.05);
}
.c-wizardNav__next:disabled,
.c-wizardNav__submit:disabled{
  opacity: 0.7;
  cursor: not-allowed;
}
.c-wizardNav__icon{
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.c-wizardNav__next:hover:not(:disabled) .c-wizardNav__icon,
.c-wizardNav__submit:hover:not(:disabled) .c-wizardNav__icon{
  transform: translateX(4px);
}
.c-wizardNav__spinner{
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-wizardNav__next.is-loading,
.c-wizardNav__submit.is-loading{
  color: transparent;
  pointer-events: none;
}
.c-wizardNav__next.is-loading .c-wizardNav__spinner,
.c-wizardNav__submit.is-loading .c-wizardNav__spinner{
  display: block;
  color: #ffffff;
}
.c-wizardNav__next.is-loading .c-wizardNav__icon,
.c-wizardNav__submit.is-loading .c-wizardNav__icon{
  display: none;
}

@media (max-width: 991.98px){
  .c-heroForm{ margin-top: .25rem; }
  .c-advantagesMedia__img{ height: 340px; }
  .c-advantagesGrid{ grid-template-columns: 1fr; }
  .c-occupations{
    padding: 3.5rem 0;
  }
  .c-occupations__head{
    margin-bottom: 2.5rem;
  }
  .c-occupationsCard{
    padding: 2.5rem 2rem;
    border-radius: 24px;
  }
  .c-occupationsCard__icon{
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  .c-occupationsCard__title{
    font-size: 1.5rem;
  }
  .c-occupationsCard__examples{
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .c-occupationsCarousel__control{
    width: 40px;
    height: 40px;
  }
  .c-occupationsCarousel__control.carousel-control-prev{
    left: 10px;
  }
  .c-occupationsCarousel__control.carousel-control-next{
    right: 10px;
  }
  .c-occupationsCarousel__control i{
    font-size: .9rem;
  }
  .c-processSteps{
    gap: 1.2rem;
    max-width: 100%;
  }
  .c-processSteps::before{
    left: 23px;
  }
  .c-processSteps::after{
    left: 23px;
  }
  .c-processStep{
    gap: 1rem;
    padding-left: 0.25rem;
  }
  .c-processStep__dot{
    width: 46px;
    height: 46px;
  }
  .c-processStep__v{
    font-size: .9rem;
  }
}

@media (min-width: 992px){
  .c-heroStage__right{
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 2rem;
  }
  .c-heroStage__right .c-heroForm{
    width: 100%;
    max-width: 100%;
    z-index: 25;
  }
}
