.vtc-unified-wrap {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-image: url('../images/fundo/treinamentos/treinamentos-background.webp');
    background-size: 100% 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-primary, #13284c);
}

.vtc-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vtc-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vtc-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 460;
    display: flex;
    align-items: center;
    background-color: #13284c;
    background-image: url('../images/fundo/treinamentos/hero-treinamentos.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.vtc-hero__container {
    position: relative;
    z-index: 3;
    max-width: var(--container-max-width, 1440px);
    width: 100%;
    margin: 0 auto;
    padding-inline: var(--container-padding-x, 104px);
}

.vtc-breadcrumb {
    background: #fff;
    padding: 12px 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.vtc-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vtc-breadcrumb__link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vtc-breadcrumb__link:hover {
    color: var(--color-accent, #e8621a);
}

.vtc-breadcrumb__sep {
    color: #999;
}

.vtc-breadcrumb__current {
    color: #333;
    font-weight: 500;
}

.vtc-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
    margin: 0 0 16px;
    line-height: 1.2;
}

.vtc-hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-neutral-lightest, #ffffff);
    max-width: 768px;
    line-height: 1.625;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.vtc-pilares {
    padding: 104px 80px;
}

.vtc-pilares__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 119px;
}

.vtc-pilares__col--text {
    max-width: 610px;
    flex: 1;
}

.vtc-pilares__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary, #f47726);
    font-family: 'Inter', sans-serif;
    margin: 0 0 24px;
    line-height: 1.2;
}

.vtc-pilares__text {
    font-size: 18px;
    color: var(--color-neutral-darkest, #181818);
    line-height: 1.625;
    font-family: 'Inter', sans-serif;
    margin: 0 0 16px;
}

.vtc-pilares__col--cards {
    flex-shrink: 0;
}

.vtc-pilares__cards {
    position: relative;
    width: 518px;
    min-height: 518px;
}

.vtc-pilares__card {
    position: absolute;
    width: 244px;
    height: 244px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
}

.vtc-pilares__card-icon svg {
    width: 48px;
    height: 48px;
}

.vtc-pilares__card--orange {
    background: var(--color-secondary, #f47726);
    border-radius: 17px 121px 17px 17px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.vtc-pilares__card--navy {
    background: var(--color-primary, #13284c);
    border-radius: 17px 17px 17px 121px;
    bottom: 0;
    left: 0;
}

.vtc-pilares__card--red {
    background: var(--color-secondary-dark, #ea512e);
    border-radius: 17px 17px 121px 17px;
    bottom: 0;
    right: 0;
}

.vtc-servico {
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    box-sizing: border-box;
}

.vtc-servico__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.vtc-servico--img-right .vtc-servico__col--text {
    order: 1;
}
.vtc-servico--img-right .vtc-servico__col--media {
    order: 2;
}

.vtc-servico--img-left .vtc-servico__col--media {
    order: 1;
}
.vtc-servico--img-left .vtc-servico__col--text {
    order: 2;
}

.vtc-servico__col--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 64px;
    max-width: 720px;
}

.vtc-servico--img-right .vtc-servico__col--text {
    margin-left: auto;
    padding-left: max(64px, calc((100vw - 1280px) / 2));
}

.vtc-servico--img-left .vtc-servico__col--text {
    margin-right: auto;
    padding-right: max(64px, calc((100vw - 1280px) / 2));
}

.vtc-servico__col--media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.vtc-servico--img-right .vtc-servico__col--media {
    border-radius: 0 0 0 120px;
}

.vtc-servico--img-left .vtc-servico__col--media {
    border-radius: 0 0 120px 0;
}

.vtc-servico__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.vtc-servico__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 0;
}

.vtc-servico__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary, #f47726);
    font-family: 'Inter', sans-serif;
    margin: 0 0 24px;
    line-height: 1.2;
}

.vtc-servico__text {
    font-size: 18px;
    color: var(--color-neutral-lightest, #ffffff);
    line-height: 1.625;
    max-width: 580px;
    font-family: 'Inter', sans-serif;
    margin: 0 0 24px;
}

.vtc-servico__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 32px;
}

.vtc-servico__list li {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
    line-height: 1.625;
    padding-bottom: 8px;
}

.vtc-servico__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary, #f47726);
    color: var(--color-neutral-lightest, #ffffff);
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.vtc-servico__btn:hover {
    background: var(--color-secondary-dark, #ea512e);
}

.vtc-servico__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vtc-faq {
    background: var(--color-neutral-lightest, #ffffff);
    padding: 80px 24px;
}

.vtc-faq__container {
    max-width: 896px;
    margin: 0 auto;
}

.vtc-faq__header {
    text-align: center;
    margin-bottom: 48px;
}

.vtc-faq__badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary, #f47726);
    background: rgba(255, 102, 0, 0.1);
    border-radius: 9999px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    margin: 0 auto 16px;
}

.vtc-faq__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-neutral-darkest, #181818);
    font-family: 'Inter', sans-serif;
    margin: 0 0 12px;
}

.vtc-faq__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-neutral-dark, #9d9d9d);
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.vtc-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vtc-faq__item {
    background: var(--color-neutral-lightest, #ffffff);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vtc-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-neutral-darkest, #181818);
    font-family: 'Inter', sans-serif;
    text-align: left;
    gap: 16px;
}

.vtc-faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vtc-faq__item--active .vtc-faq__chevron {
    transform: rotate(180deg);
}

.vtc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding-top 0.4s ease;
    padding-top: 0;
}

.vtc-faq__item--active .vtc-faq__answer {
    max-height: 500px;
    padding-top: 16px;
}

.vtc-faq__answer-inner {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-neutral-dark, #9d9d9d);
    font-family: 'Inter', sans-serif;
    line-height: 1.625;
}

.vtc-faq__answer-inner p {
    margin: 0;
}

.vtc-cta {
    background: linear-gradient(to right, var(--color-primary, #13284c), var(--color-primary-light, #27529d));
    padding: 80px 24px;
}

.vtc-cta__inner {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.vtc-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
    margin: 0 0 12px;
}

.vtc-cta__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
    margin: 0 0 32px;
}

.vtc-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.vtc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 20px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.vtc-cta__btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vtc-cta__btn--primary {
    background: var(--color-secondary, #f47726);
    color: var(--color-neutral-lightest, #ffffff);
}

.vtc-cta__btn--primary:hover {
    background: var(--color-secondary-dark, #ea512e);
}

.vtc-cta__btn--whatsapp {
    background: var(--color-neutral-lightest, #ffffff);
    color: var(--color-primary, #13284c);
}

.vtc-cta__btn--whatsapp:hover {
    background: var(--color-neutral-light, #f1f1f1);
}

.vtc-cta__divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 32px;
}

.vtc-cta__contacts {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-top: 41px;
    flex-wrap: wrap;
}

.vtc-cta__contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vtc-cta__contact-icon {
    margin-bottom: 8px;
}

.vtc-cta__contact-icon svg {
    width: 30px;
    height: 30px;
}

.vtc-cta__contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-neutral-lightest, #ffffff);
    font-family: 'Inter', sans-serif;
}

.vtc-cta__contact-value {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    padding-top: 4px;
}

@media (max-width: 1024px) {
    .vtc-hero__title {
        font-size: 36px;
    }

    .vtc-hero__subtitle {
        font-size: 18px;
    }

    .vtc-pilares {
        padding: 64px 40px;
    }

    .vtc-pilares__container {
        flex-direction: column;
        gap: 48px;
    }

    .vtc-pilares__col--text {
        max-width: 100%;
    }

    .vtc-pilares__col--cards {
        display: none;
    }

    .vtc-servico {
        min-height: auto;
    }

    .vtc-servico__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .vtc-servico__col--text {
        order: 2 !important;
        max-width: 100%;
        padding: 48px 40px;
        margin: 0;
    }

    .vtc-servico__col--media {
        order: 1 !important;
        min-height: 300px;
    }

    .vtc-servico__title {
        font-size: 36px;
    }

    .vtc-faq {
        padding: 64px 24px;
    }

    .vtc-cta__title {
        font-size: 28px;
    }

    .vtc-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .vtc-cta__btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .vtc-hero__title {
        font-size: 28px;
    }

    .vtc-hero__subtitle {
        font-size: 16px;
    }

    .vtc-pilares {
        padding: 48px 20px;
    }

    .vtc-pilares__title {
        font-size: 32px;
    }

    .vtc-pilares__text {
        font-size: 16px;
    }

    .vtc-servico__col--text {
        padding: 40px 20px;
    }

    .vtc-servico__col--media {
        min-height: 250px;
    }

    .vtc-servico__title {
        font-size: 28px;
    }

    .vtc-servico__text {
        font-size: 16px;
    }

    .vtc-servico__list li {
        font-size: 16px;
    }

    .vtc-servico__btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .vtc-faq {
        padding: 48px 16px;
    }

    .vtc-faq__title {
        font-size: 28px;
    }

    .vtc-faq__subtitle {
        font-size: 16px;
    }

    .vtc-faq__question {
        font-size: 16px;
    }

    .vtc-faq__item {
        padding: 20px;
    }

    .vtc-cta {
        padding: 48px 16px;
    }

    .vtc-cta__title {
        font-size: 24px;
    }

    .vtc-cta__subtitle {
        font-size: 16px;
    }

    .vtc-cta__btn {
        font-size: 16px;
        padding: 16px 32px;
        max-width: 100%;
    }

    .vtc-cta__contacts {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}
