/* Component styles — hs-solucoes */

/* ===== HeaderModel01 ===== */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-left: auto;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    color: #fff;
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #fff;
}

.navbar-toggler-icon svg {
    display: block;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    text-decoration: none;
}

body > header {
    width: 100%;
    background-color: rgba(14, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(140, 82, 255, 0.1);
    overflow: visible;
}

.site-header-nav {
    background-color: transparent !important;
    padding: 12px 0;
    min-height: 72px;
}

.site-header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1200px;
}

.site-logo {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.logo-icon {
    height: 48px;
    width: 250px;
    max-width: calc(100vw - 96px);
    aspect-ratio: 640 / 123;
    object-fit: contain;
    object-position: left center;
    display: block;
}

header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.45);
}

.site-header-collapse {
    flex-grow: 1;
}

.site-header-menu {
    align-items: center;
    gap: 2px;
}

.site-header-menu .nav-item {
    padding: 0;
}

.site-header-menu .nav-link {
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    color: var(--text-light);
    padding: 8px 10px !important;
    transition: color 0.3s ease;
}

.site-header-menu .nav-link:hover,
.site-header-menu .nav-link.active {
    color: var(--primary-purple);
}

.site-header-cta {
    display: none;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 12px;
    padding: 10px 18px !important;
    font-size: 13px !important;
}

.navbar-collapse.show {
    background-color: var(--dark-card);
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    margin-top: 10px;
}

.navbar-collapse.show .site-header-cta {
    display: inline-flex;
    margin: 12px auto 0;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .site-header-collapse {
        display: flex !important;
        flex-basis: auto;
        align-items: center;
        justify-content: flex-end;
    }

    .site-header-menu {
        margin-left: auto;
        margin-right: 0;
        flex-direction: row;
    }

    .site-header-cta {
        display: inline-flex;
    }

    .navbar-collapse.show {
        background: transparent;
        width: auto;
        padding: 0;
        margin: 0;
        border-radius: 0;
        text-align: left;
    }
}

/* ===== FooterModel01 ===== */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: auto;
    width: 160px;
    max-width: 100%;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: var(--text-light);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social .icon-svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    color: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== SectionHeroModel01 ===== */
.section-hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 40px;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.section-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--text-light);
}

.hero-content h1 .gradient-text {
    display: inline;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .white-text {
    color: var(--text-light);
    display: inline;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 800px;
}

.hero-cta {
    margin-top: 10px;
}

.hero-cta .btn {
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-banner {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    aspect-ratio: 1600 / 793;
}

.hero-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    mix-blend-mode: lighten;
    aspect-ratio: 1600 / 793;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 22px;
    }

    .hero-banner {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 56px;
    }

    .hero-content p {
        font-size: 24px;
    }
}

/* ===== SectionNumbersModel01 ===== */
.section-numbers {
    padding: 40px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.numbers-card-wrapper {
    position: relative;
    padding: 1.5px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.numbers-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    width: 100%;
    height: 100%;
}

.numbers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.numbers-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.numbers-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.numbers-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.numbers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.number-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.number-icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.number-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.number-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin: 0;
}

.number-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .numbers-card {
        padding: 60px 50px;
    }

    .numbers-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .numbers-text h2 {
        font-size: 40px;
    }

    .numbers-text p {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .numbers-text h2 {
        font-size: 48px;
    }

    .numbers-grid {
        gap: 50px;
    }

    .number-value {
        font-size: 56px;
    }

    .number-label {
        font-size: 18px;
    }
}

/* ===== SectionTimingModel01 ===== */
.section-timing {
    padding: 40px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.timing-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.timing-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.timing-content h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-light);
}

.timing-content h2 .gradient-text {
    display: inline;
    color: var(--light-blue);
}

.timing-content p {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 auto 28px;
    max-width: 820px;
}

.timing-cta {
    margin-top: 8px;
}

.timing-cta .btn {
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timing-illustration {
    margin-top: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    aspect-ratio: 1400 / 788;
}

.timing-illustration img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    mix-blend-mode: lighten;
    aspect-ratio: 1400 / 788;
}

@media (min-width: 768px) {
    .timing-content h2 {
        font-size: 40px;
    }

    .timing-content p {
        font-size: 22px;
    }

    .timing-illustration {
        margin-top: 56px;
    }
}

@media (min-width: 992px) {
    .timing-content h2 {
        font-size: 48px;
    }

    .timing-illustration {
        margin-top: 64px;
    }
}

/* ===== SectionHowItWorksModel01 ===== */
.section-how-it-works {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-title .gradient-text {
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    background: linear-gradient(135deg, rgba(21, 25, 50, 0.8) 0%, rgba(14, 10, 31, 0.8) 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(140, 82, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(140, 82, 255, 0.3);
    box-shadow: 0 20px 40px rgba(140, 82, 255, 0.1);
}

.step-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-circle.blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.step-circle.purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.step-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    border: 3px solid var(--dark-bg);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .section-subtitle {
        font-size: 20px;
    }
}

/* ===== SectionBenefitsModel01 ===== */
.section-benefits {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--text-light);
}

.section-title .gradient-text {
    color: var(--primary-purple);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-card-wrapper {
    position: relative;
    padding: 1.5px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    transition: all 0.3s ease;
}

.benefit-card-wrapper.purple-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.benefit-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1) 0%, rgba(28, 218, 255, 0.1) 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.benefit-card-wrapper.purple-gradient .benefit-card {
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
}

.benefit-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(140, 82, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.benefit-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.benefit-icon.purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: white;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.benefit-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.benefit-card-large {
    grid-column: span 3;
}

.benefit-card-large .benefit-card-wrapper {
    padding: 1.5px;
}

.benefit-card-large .benefit-card {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(140, 82, 255, 0.1) 0%, rgba(0, 150, 255, 0.1) 100%);
}

.benefit-card-large .benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-card-large .benefit-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.benefit-visual img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card-large {
        grid-column: span 1;
    }

    .benefit-card-large .benefit-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 40px;
    }

    .benefit-card-large .benefit-visual {
      display: none;
    }

    .section-title {
      font-size: 32px;
    }
  }

/* ===== SectionServicesModel01 ===== */
.section-services {
    position: relative;
    padding: 80px 0 100px;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.section-services::before {
    content: "";
    position: absolute;
    left: -8%;
    top: 10%;
    width: 42%;
    height: 80%;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(0, 150, 255, 0.55) 0%,
            rgba(28, 218, 255, 0.28) 35%,
            rgba(140, 82, 255, 0.12) 65%,
            transparent 100%);
    filter: blur(48px);
    opacity: 0.85;
}

.section-services .container {
    position: relative;
    z-index: 1;
}

.section-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-services .section-header-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-services .section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-services .section-title .gradient-text {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-services .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(21, 25, 50, 0.8) 0%, rgba(14, 10, 31, 0.8) 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(140, 82, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(140, 82, 255, 0.3);
    box-shadow: 0 20px 40px rgba(140, 82, 255, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
    font-size: 32px;
}

.service-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.service-icon.purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 15px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .section-services .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .section-services {
        padding: 60px 0 80px;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* ===== SectionPricingModel01 / Como contratar ===== */
.section-pricing {
    padding: 40px 0 80px;
    background-color: var(--dark-bg);
}

.section-pricing .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-pricing .section-header-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-pricing .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-pricing .section-title .gradient-text {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-pricing .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

.hire-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.hire-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    min-height: 100%;
    padding: 36px 32px;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(21, 25, 50, 0.95) 0%, rgba(14, 10, 31, 0.95) 100%);
    border: 1px solid rgba(140, 82, 255, 0.18);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hire-card:hover {
    transform: translateY(-6px);
    border-color: rgba(140, 82, 255, 0.45);
    box-shadow: 0 24px 48px rgba(140, 82, 255, 0.15);
}

.hire-card--featured {
    border-color: rgba(140, 82, 255, 0.55);
    background:
        linear-gradient(160deg, rgba(140, 82, 255, 0.18) 0%, rgba(21, 25, 50, 0.98) 45%, rgba(14, 10, 31, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(140, 82, 255, 0.2);
}

.hire-card--featured:hover {
    box-shadow: 0 28px 60px rgba(140, 82, 255, 0.28);
}

.hire-card-badge {
    position: absolute;
    top: -12px;
    left: 28px;
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
}

.hire-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.hire-card-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.hire-card-icon.purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
}

.hire-card-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.hire-card-lead {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 14px;
}

.hire-card-text {
    font-size: 15px;
    color: rgba(224, 224, 224, 0.78);
    line-height: 1.7;
    margin: 0;
}

.hire-card-cta {
    width: 100%;
    text-align: center;
    font-weight: 600 !important;
}

@media (min-width: 992px) {
    .hire-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        align-items: stretch;
    }

    .hire-card--featured {
        transform: translateY(-12px);
    }

    .hire-card--featured:hover {
        transform: translateY(-18px);
    }
}

@media (max-width: 991px) {
  .section-pricing .section-title {
    font-size: 32px;
  }
}

/* ===== SectionFAQModel01 ===== */
.section-faq {
    padding: 40px 0;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-color: var(--text-light);
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-color: var(--text-light);
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
}

.accordion-button {
    font-size: 18px;
    font-weight: 500;
    font-family: inherit;
    padding: 30px 0;
    width: 100%;
    text-align: left;
    background-color: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--text-light);
    box-shadow: none;
}

.accordion-button::after {
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    transform: none;
}

.accordion-body {
    padding: 0 0 30px 80px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    background-color: transparent;
}

.faq-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    min-width: 50px;
    flex-shrink: 0;
}

.faq-question {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

/* ===== SectionCTAModel01 ===== */
.section-cta {
    padding: 40px 0;
    background-color: var(--dark-bg);
    background-image: url('../img/bg_footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 10, 31, 0.7);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-purple) 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(140, 82, 255, 0.4);
    color: white;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 48px;
    }
}

@media (min-width: 992px) {
    .cta-text {
        font-size: 64px;
    }
}

/* ===== Mobile title scale ===== */
@media (max-width: 767px) {
    .section-title,
    .section-services .section-title,
    .section-pricing .section-title {
        font-size: 30px;
    }

    .hire-card-title {
        font-size: 22px;
    }

    .benefit-title,
    .service-card-title {
        font-size: 20px;
    }

    .number-value {
        font-size: 36px;
    }
}

/* ===== Layout overrides (após Bootstrap) ===== */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

header .navbar-brand {
    margin: 0;
    padding: 0;
}

header .site-header-nav {
    width: 100%;
}

.section-faq .accordion-header {
    margin: 0;
}

.section-faq .accordion-button {
    width: 100%;
}

.hero-content>p {
    margin-bottom: 0;
}