/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #494949;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --text-color: #00164f;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-light: #f8f9ff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 22, 79, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 22, 79, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 22, 79, 0.1);
    --container-max-width: 1200px;
    --header-height: 88px;
    --transition: all 0.3s ease;
    --primary-color: #03239C;
    --gradient-primary: linear-gradient(135deg, #03239C 0%, #0032FF 100%);
    --container-padding: 1.5rem;
}

/* Utility Classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 120px 0;
}

.section__title {
    color: #03239C;
    font-size: 45px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Movido para cima */

/* Texto corrido padrão */
p, .text-content, .description {
    color: #494949;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

p strong, .text-content strong, .description strong {
    font-weight: 600;
}

/* Estilo para h3 */
h3, .section__label {
    color: #1D274A;
    font-size: 18px;
    font-weight: 600;
}

.section__label {
    margin-bottom: 5px;
}

/* Bullets menores */
ul {
    list-style-type: disc;
}

ul li::marker {
    font-size: 0.7em;
}

/* Negrito dos títulos de seção com display block */
.sobre .section__title strong {
    font-weight: 500;
    display: block;
}

/* Aplicar aos elementos de texto das seções */
.sobre__description,
.pre-requisitos__description,
.perfis__description,
.etapas__description,
.jornada__description,
.beneficios__description,
.depoimentos__description,
.chat-section__description,
.sobre-meta__description {
    color: #494949;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.sobre__description strong,
.pre-requisitos__description strong,
.perfis__description strong,
.etapas__description strong,
.jornada__description strong,
.beneficios__description strong,
.depoimentos__description strong,
.chat-section__description strong,
.sobre-meta__description strong,
.sobre__text strong,
.jornada__footer-text strong {
    font-weight: 600;
}

.main {
    padding-top: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 56px;
    background: #031A5F;
    color: #FFF;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: #031A5F;
    color: #FFF;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
    text-decoration: none;
}

/* Header Styles - Transparent (Not Fixed) */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    z-index: 1000;
    transition: var(--transition);
}


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    height: auto;
}

.nav__logo-img {
    width: auto;
    height: 35px;
    object-fit: contain;
}

.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
    height: 100%;
}

.nav__item {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__link {
    text-decoration: none;
    color: #FFF;
    font-weight: 400;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav__link:hover {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav__toggle {
    display: none;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff;
}

.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('images/hero-background-new.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero__container {
    width: 100%;
}

.hero__content {
    max-width: 49%;
    padding: 8rem 0 2rem;
}

.hero__title {
    color: #FFF;
    font-size: 96px;
    font-weight: 300;
    letter-spacing: -0.96px;
    line-height: 0.9;
    margin-bottom: 40px;
}

.hero__subtitle {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 1;
    width: 75%;
}

.hero__button {
    font-size: 16px;
    padding: 1.2rem 2.5rem;
}

/* Sobre o Programa Section */
.sobre {
    background: #fff;
}

.sobre__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.sobre__header-col {
    /* Sticky position disabled */
}

/* Removido - usando .section__label */

.sobre__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.sobre__title strong {
    color: var(--primary-color);
}

.sobre__content-col {
    /* Padding removido */
}

.sobre__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #494949;
}

.sobre__text p:last-child {
    margin-bottom: 0;
}

.sobre__list {
    list-style: disc;
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.sobre__list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #494949;
    margin-bottom: 1rem;
}

/* Removido - usando bullets padrão */

/* Pré-requisitos Section */
.pre-requisitos {
    background: #F8F8F8;
}

.pre-requisitos__header {
    text-align: center;
    margin-bottom: 80px;
}

/* Removido - usando .section__label */

.pre-requisitos__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.pre-requisitos__image {
    margin-top: 3rem;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 168px 47px 0 rgba(0, 0, 0, 0.00), 0 107px 43px 0 rgba(0, 0, 0, 0.02), 0 60px 36px 0 rgba(0, 0, 0, 0.05), 0 27px 27px 0 rgba(0, 0, 0, 0.09), 0 7px 15px 0 rgba(0, 0, 0, 0.10);
    display: block;
    line-height: 0;
}

.pre-requisitos__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.pre-requisitos__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pre-requisito-card {
    background: #F8F8F8;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #E0E0E0;
}

.pre-requisito-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pre-requisito-card__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.pre-requisito-card__icon i {
    font-size: 1.8rem;
    color: white;
}

.pre-requisito-card__text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.pre-requisito-card__text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #3A3A3A;
}

/* Perfis Section */
.perfis {
    background: url('images/perfis-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
}

.perfis__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 80px;
}

.perfis__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.perfis .section__title {
    color: #fff;
}

.perfis__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    padding-top: 1rem;
}

.perfis__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 80px;
}

.perfil-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.perfil-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.perfil-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.perfil-card__icon img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.perfil-card__content {
    flex: 1;
}

.perfil-card__title {
    font-size: 26px;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 0.75rem;
}

.perfil-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

.perfil-card__list {
    list-style: disc;
    margin: 0;
    padding-left: 1.5rem;
}

.perfil-card__list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 0;
}

.perfil-card:nth-child(1) {
    background: rgba(9, 41, 155, 0.67);
}

.perfil-card:nth-child(2) {
    background: rgba(5, 8, 20, 0.47);
}

.perfis__footer {
    text-align: center;
    max-width: 60%;
    margin: 0 auto;
}

.perfis__footer-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 24px;
}

.perfis__footer-text strong {
    color: #fff;
    font-weight: 600;
}

.perfis__button {
    font-size: 16px;
    padding: 1.2rem 2.5rem;
    background: #0132FF;
}

/* Etapas Section */
.etapas {
    background: #f8f9fa;
}

.etapas__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.etapas__content {
    padding-right: 2rem;
}

/* Removido - usando .section__label */

.etapas__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 70px;
}

.etapas .section__title {
    margin-bottom: 80px;
}

.etapas__info-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.etapas__info-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #03239C;
    margin: 0;
}

.etapas__info-box strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: -50px;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, #CCC 20%, #CCC 80%, transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 17px;
    height: 17px;
    background: #0326B9;
    border: none;
    border-radius: 50%;
    z-index: 2;
}

.timeline-marker--final {
    background: #0326B9;
    border: none;
    width: 20px;
    height: 20px;
    left: -1.625rem;
    top: 0.125rem;
}

.timeline-content {
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(4px);
}

.timeline-title {
    color: #0227B9;
    font-size: 16px;
    font-weight: 600;
}


.timeline-date {
    color: #130C0C;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}

/* Jornada de Desenvolvimento Section */
.jornada {
    background: #001E9D;
}

.jornada .section__label,
.jornada .section__title {
    color: #fff;
}

.jornada .jornada__description {
    color: #fff;
}


.jornada__header {
    text-align: left;
    margin-bottom: 4rem;
}

/* Removido - usando .section__label */

.jornada__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.jornada__title strong {
    color: #fff;
}

.jornada__content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.jornada__image-col {
    position: relative;
}

.jornada__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.jornada__cards-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.jornada__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.jornada-card {
    background: #0228CC;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(3, 35, 156, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
}

.jornada-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.jornada-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.jornada-card__icon i {
    font-size: 1.8rem;
    color: white;
}


.jornada-card__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.jornada__footer-text {
    color: #FFF;
    font-size: 24px;
    font-weight: 300;
    text-align: left;
    line-height: 1.3;
    margin: 0;
}

/* Dúvidas Section */
.duvidas-section {
    background: #ffffff;
    padding: 5rem 0;
}

.duvidas-section__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.duvidas-section__header-col {
    padding-right: 2rem;
}

.duvidas-section__description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 1rem;
}

.duvidas-section__content-col {
    display: flex;
    justify-content: center;
}

.duvidas-section__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.duvidas-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(3, 35, 156, 0.1);
}

.duvidas-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.duvidas-box__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.duvidas-box__divider {
    height: 4px;
    background: var(--gradient-primary);
}

.duvidas-box__button {
    display: block;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.duvidas-box__button--primary {
    background: var(--primary-color);
    color: white;
}

.duvidas-box__button--blue {
    background: #1877f2;
    color: white;
}

.duvidas-box__button:hover {
    opacity: 0.9;
    text-decoration: none;
    color: white;
}

/* Chat Section */
.chat-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.chat-section__layout {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.chat-section__header-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-section__header-col .section__title {
    margin-bottom: 1.5rem;
}

.chatbot-info-box {
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(3, 35, 156, 0.1);
    width: fit-content;
}

.chatbot-info-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.chatbot-info-image {
    width: 60px;
    height: 60px;
}

.chatbot-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.chatbot-info-text p {
    font-size: 16px;
    line-height: 1.4;
    color: #494949;
}

.chat-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(3, 35, 156, 0.1);
    height: 500px;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.user .message-avatar {
    background: var(--text-light);
}

.message-avatar i {
    color: white;
    font-size: 0.9rem;
}

.message-content {
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
    word-wrap: break-word;
}

.message.user .message-content {
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chat-input-container {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.chat-input {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.chat-input input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(3, 35, 156, 0.1);
}

.chat-input button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input button:hover {
    opacity: 0.9;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

/* Footer */
.footer {
    background: #fff;
    color: var(--text-color);
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer__logo-img {
    height: 40px;
    width: auto;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    display: block;
    transition: var(--transition);
}

.social__link:hover {
    transform: translateY(-2px);
}

.social__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer__bottom {
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.footer__copy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Benefícios Section */
.beneficios {
    background: #f8fafc;
}

.beneficios__header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.beneficios__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.beneficios__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #494949;
    text-align: right;
    margin: 0;
}

.beneficios__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.beneficio-card {
    background: #FFF;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}




.beneficio-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--transition);
}

.beneficio-card__icon svg {
    width: 40px;
    height: 40px;
}


.beneficio-card__icon i {
    font-size: 1.8rem;
    color: white;
}


.beneficio-card__text p {
    font-size: 18px;
    line-height: 1.6;
    color: #3A3A3A;
    margin: 0;
}

/* Depoimentos Section */
.depoimentos {
    background: white;
    padding: 5rem 0;
}

.depoimentos__container {
    max-width: none;
    margin-left: max(var(--container-padding), calc((100vw - var(--container-max-width)) / 2 + var(--container-padding)));
    margin-right: 0;
    padding: 0;
}

.depoimentos__layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 7rem;
    align-items: start;
}

.depoimentos__header-col {
    padding-right: 2rem;
}

/* Removido - usando .section__label e .section__title */

.video-carousel {
    position: relative;
    width: calc(100% + var(--container-padding));
    margin-right: calc(var(--container-padding) * -1);
    overflow: visible;
}

.video-carousel__container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-carousel__track {
    display: flex;
    transition: transform 0.3s ease;
}

.video-slide {
    flex: 0 0 58%;
    margin-right: 1rem;
}

.video-card {
    background: #FFF;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #D5D5D5;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-overlay:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-overlay:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 4px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-info {
    padding: 40px;
    text-align: left;
}

.video-name {
    font-size: 32px;
    font-weight: 400;
    color: #03239C;
    text-align: left;
    line-height: 1;
}

.video-role {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.carousel-controls {
    position: absolute;
    left: -104px;
    bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    pointer-events: none;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.carousel-btn:hover {
    background: #f8f9fa;
}

.carousel-btn svg {
    width: 9px;
    height: 18px;
}

.carousel-btn svg path {
    fill: #0132FF;
}

/* Mobile responsive for carousel controls - FORCED */
@media screen and (max-width: 768px) {
    .video-card .carousel-controls,
    .carousel-controls.carousel-controls {
        left: 0 !important;
        justify-content: start !important;
        margin-top: 0 !important;
    }
}

/* Botão Flutuante */
.floating-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(3, 35, 156, 0.1);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-chat-btn.hidden {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
}

.floating-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.floating-chat-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.floating-chat-text {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .floating-chat-btn {
        position: relative;
        width: 100%;
        margin: 0;
        border-radius: 0;
        bottom: auto;
        right: auto;
        padding: 1rem;
        display: block;
        z-index: 1;
        box-shadow: none;
    }
    
    .floating-chat-avatar {
        width: 35px;
        height: 35px;
    }
    
    .floating-chat-text {
        font-size: 0.85rem;
    }
    
    /* Container de depoimentos para mobile */
    .depoimentos__container {
        max-width: 100vw;
        margin: 0 auto;
    }
    
    /* Carrossel mobile otimizado - 1 slide por vez */
    .video-carousel {
        width: 100%;
        margin-right: 0;
        overflow: hidden;
    }
    
    .video-carousel__container {
        width: 100%;
        max-width: 100vw;
    }
    
    .video-slide {
        flex: 0 0 calc(100% - 35px);
        margin-right: 10px;
        max-width: calc(100% - 35px);
        box-sizing: border-box;
    }
    
    .video-card {
        margin: 0;
        max-width: 100%;
    }
    
    /* Habilitar vídeos no mobile */
    .video-wrapper {
        display: block;
        max-width: 100%;
    }
    
    .video-wrapper iframe {
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero mobile background */
    .hero {
        background: url('images/hero-mobile.png');
        background-size: cover;
        background-position: center;
        align-items: start;
    }
    
    /* Hero content flex layout */
    .hero__content {
        max-width: 100%;
        text-align: center;
        padding: 7rem 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100vh - 4rem);
        min-height: 500px;
    }
    
    .hero__title {
        color: #FFF;
        font-size: 32px;
        font-weight: 300;
        letter-spacing: -0.32px;
        line-height: 1.2;
    }

    .hero__subtitle {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        width: 100%;
    }
    
    /* Hero button mobile */
    .hero__button {
        background-color: #0132FF;
        margin-top: auto;
        align-self: center;
    }
    
    /* Padding mobile para todas sections exceto hero */
    .section:not(.hero) {
        padding: 40px 0;
    }
    
    .footer {
        padding: 40px 0;
    }
    
    /* Pré-requisitos mobile */
    .pre-requisitos__header {
        margin-bottom: 40px;
    }
    
    .pre-requisitos__image {
        background: url('images/pre-requisitos-mobile.png') center center / cover no-repeat;
        height: 200px;
        margin-bottom: 40px;
    }
    
    .pre-requisitos__image img {
        display: none;
    }
    
    .pre-requisitos__cards {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pre-requisito-card {
        background: none;
        padding: 0;
        box-shadow: none;
        transition: none;
        border: none;
        border-radius: 0;
        margin-bottom: 40px;
    }
    
    .pre-requisito-card:last-child {
        margin-bottom: 0;
    }
    
    /* Texto dos cards de pré-requisitos */
    .pre-requisito-card__text p {
        font-size: 16px;
        text-align: left;
    }
    
    /* Perfis section mobile */
    .perfis .section__title {
        max-width: 60%;
        margin-bottom: 16px;
    }
    
    .perfis__header {
        gap: 0 !important;
    }
    
    .perfis__description {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* Perfil cards mobile */
    .perfil-card__title {
        text-align: left;
    }
    
    .perfil-card__list {
        text-align: left;
    }
    
    .perfil-card__list li {
        line-height: 2 !important;
    }
    
    /* Perfis footer mobile */
    .perfis__footer {
        border-top: 1px solid #2650FD;
        padding-top: 40px;
    }
    
    .perfis__footer-text {
        font-size: 18px !important;
        line-height: 2 !important;
    }
    
    /* Perfis cards mobile */
    .perfis__cards {
        margin-bottom: 40px;
    }
    
    /* Etapas section mobile */
    .etapas .section__title {
        margin-bottom: 24px;
    }
    
    .etapas__info-box {
        margin-bottom: 40px;
    }
    
    .etapas__info-box p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    /* Timeline mobile */
    .timeline-content {
        width: 70%;
    }
    
    .timeline-item {
        margin-bottom: 30px;
    }
    
    /* Jornada mobile */
    .jornada-card {
        flex-direction: row;
        align-items: center;
        gap: 40px;
        padding: 24px;
    }
    
    .jornada-card__text p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    .jornada__footer-text {
        font-size: 16px;
    }
    
    /* Beneficios header mobile */
    .beneficios__header {
        text-align: left !important;
        gap: 10px !important;
        margin-bottom: 40px !important;
    }
    
    .beneficios__description {
        text-align: left !important;
    }
    
    /* Beneficio cards mobile */
    .beneficio-card__icon {
        margin-bottom: 32px !important;
    }
    
    .beneficio-card__text p {
        font-size: 16px !important;
    }
    
    /* Depoimentos header mobile */
    .depoimentos__header-col {
        text-align: left !important;
    }
    
    /* Chat section mobile */
    .chat-section {
        padding: 40px 0 !important;
    }
    
    /* Sobre a Meta mobile */
    .sobre-meta__logo svg {
        width: 149px !important;
        height: auto !important;
    }
    
    .sobre-meta__logo-col {
        gap: 30px;
    }
    
    .sobre-meta__mission {
        font-size: 18px;
    }
    
    /* Footer mobile */
    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    
    .footer__info,
    .footer__social {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__copy {
        text-align: center;
    }
    
    /* Menu mobile header */
    .nav__menu-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        background: #012ACD;
        border-bottom: 1px solid rgba(255, 255, 255, 0.20);
        z-index: 1002;
    }
    
    .nav__menu-logo svg {
        width: 90px;
        height: 24px;
    }
    
    /* Espa\u00e7o para o header do menu */
    .nav__menu .nav__list {
        margin-top: 80px;
    }
    
    /* Remove o botão de fechar original */
    .nav__close {
        position: static;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Redes sociais no menu mobile */
    .nav__menu-social {
        display: flex;
        justify-content: flex-start;
        gap: 2rem;
        padding: 2rem 24px;
        margin-top: auto;
    }
    
    .nav__social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
    }
    
    .nav__social-link:hover {
        opacity: 0.7;
    }
    
    /* Ajustar altura do menu para caber na tela */
    .nav__menu {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .nav__menu .nav__list {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin-top: 80px;
        overflow-y: auto;
    }
}

/* Ocultar elementos do menu mobile no desktop */
@media (min-width: 769px) {
    .nav__menu-header,
    .nav__menu-social {
        display: none !important;
    }
    
    .nav__list {
        gap: 20px;
    }
    
    .floating-chat-text {
        white-space: normal;
    }
}

/* Sobre a Meta Section */
.sobre-meta {
    background: url('images/sobre-bg.png') center center / cover no-repeat;
}

.sobre-meta__layout {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 8rem;
    align-items: start;
}

.sobre-meta__logo-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sobre-meta__logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.sobre-meta__logo svg {
    height: 80px;
    width: auto;
}

.sobre-meta__mission {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    margin: 0;
}

.sobre-meta__content-col {
    padding-left: 2rem;
}

.sobre-meta__text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.sobre-meta__valores {
    margin: 2.5rem 0;
}

.sobre-meta__valores h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.5rem;
}

.sobre-meta__valores ul {
    list-style: disc;
    margin: 0;
    padding-left: 1.5rem;
}

.sobre-meta__valores li {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
}


.sobre-meta__cta {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.6;
    color: #fff !important;
    text-align: left !important;
    margin: 2.5rem 0 0 0;
    width: 70%;
}


/* Responsive Design */
@media (max-width: 992px) {
    .perfis__header {
        grid-template-columns: 1fr;
    }
    
    .perfis__cards {
        grid-template-columns: 1fr;
    }
    
    .etapas__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .etapas__content {
        padding-right: 0;
    }
    
    .jornada__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .jornada__cards {
        grid-template-columns: 1fr;
    }
    
    .beneficios__header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .beneficios__description {
        text-align: center;
    }
    
    .beneficios__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .depoimentos__header-col {
        padding-right: 0;
        text-align: center;
    }
    
    .sobre-meta__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sobre-meta__content-col {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .perfis__footer {
        max-width: 100%;
        padding: 0 1rem;
    }
    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__title {
        color: #FFF;
        font-size: 32px;
        font-weight: 300;
        letter-spacing: -0.32px;
        line-height: 0.9;
    }

    .hero__subtitle {
        color: #FFF;
        font-size: 20px;
        font-weight: 400;
        width: 100%;
    }

    .sobre__layout,
    .perfis__header,
    .etapas__layout,
    .jornada__content,
    .chat-section__layout,
    .beneficios__header,
    .depoimentos__layout,
    .sobre-meta__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .depoimentos__header-col {
        padding-right: 0;
    }
    
    .beneficios__cards {
        grid-template-columns: 1fr;
    }
    
    .beneficios__title {
        font-size: 2.2rem;
    }

    .pre-requisitos__cards,
    .perfis__cards {
        grid-template-columns: 1fr;
    }

    .perfil-card {
        flex-direction: column;
        text-align: center;
    }

    .perfis__title {
        font-size: 2.2rem;
    }

    .duvidas-section__boxes {
        grid-template-columns: 1fr;
    }

    .sobre__header-col {
        position: static;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #012ACD;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 1001;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid #3455D7;
    }
    
    .nav__link {
        padding: 24px;
        width: 100%;
        text-align: left;
        justify-content: flex-start;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .section {
        padding: 80px 0;
    }

    .pre-requisitos__title,
    .sobre__title {
        font-size: 2.2rem;
    }

    .section__label {
        font-size: 16px;
    }
    
    .section__title {
        font-size: 29px;
    }
    
    /* Remover display block do strong no mobile */
    .sobre .section__title strong {
        display: inline;
    }
    
    /* Texto corrido mobile - 14px com line-height 1.2 */
    p, .sobre__text p, .sobre__list li, .perfis__description, .perfil-card__text, 
    .perfil-card__list li, .perfis__footer-text, .etapas__info-box p, 
    .jornada-card__text p, .beneficios__description, .chatbot-info-text p,
    .sobre-meta__text p {
        font-size: 14px;
        line-height: 1.2;
    }
    
    
    /* Carrossel mobile 768px - otimizado */
    .video-carousel {
        width: 100%;
        margin-right: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .video-carousel__container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .carousel-controls {
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        left: auto !important;
        bottom: auto !important;
        pointer-events: auto !important;
        order: -1 !important;
    }
    
    .video-slide {
        flex: 0 0 calc(100% - 35px);
        margin-right: 10px;
        max-width: calc(100% - 35px);
    }
    
    .video-card {
        max-width: 100%;
        margin: 0;
    }
    
    .video-wrapper {
        display: block;
        max-width: 100%;
    }
    
    .video-wrapper iframe {
        width: 100%;
        max-width: 100%;
    }
    .video-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Hero content alinhado ao topo */
    .hero__content {
        max-width: 100%;
        text-align: center;
        padding: 2rem 0;
        align-self: flex-start;
    }
    
    .hero__title {
        color: #FFF;
        font-size: 32px;
        font-weight: 300;
        letter-spacing: -0.32px;
        line-height: 1.2;
    }

    .hero__subtitle {
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        width: 100%;
    }

    .hero {
        min-height: 500px;
    }

    .chat-container {
        height: 400px;
    }
    
    /* Container de depoimentos para mobile pequeno */
    .depoimentos__container {
        max-width: 100vw;
        margin: 0 auto;
    }
    
    /* Carrossel mobile 480px - otimizado */
    .video-carousel {
        width: 100%;
        margin-right: 0;
        overflow: hidden;
    }
    
    /* Hero mobile background */
    .hero {
        background: url('images/hero-mobile.png');
        background-size: cover;
        background-position: center;
        align-items: start;
    }
    
    /* Hero content flex layout */
    .hero__content {
        max-width: 100%;
        text-align: center;
        padding: 7rem 0 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100vh - 4rem);
        min-height: 500px;
    }
    
    /* Hero button mobile */
    .hero__button {
        background-color: #0132FF;
        margin-top: auto;
        align-self: center;
    }
    
    .carousel-controls {
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
        left: auto !important;
        bottom: auto !important;
        pointer-events: auto !important;
        order: -1 !important;
    }
    
    .video-slide {
        flex: 0 0 calc(100% - 35px);
        margin-right: 10px;
        max-width: calc(100% - 35px);
    }
    
    .video-card {
        max-width: 100%;
        margin: 0;
    }
    
    .video-wrapper {
        display: block;
        max-width: 100%;
    }
    
    .video-wrapper iframe {
        width: 100%;
        max-width: 100%;
    }
    .video-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* FORÇA justify-content start no mobile para carousel-controls */
@media screen and (max-width: 768px) {
    body .carousel-controls[class*="carousel-controls"] {
        justify-content: start !important;
        left: 0 !important;
    }
}

/* ELEMENTOS OCULTOS - não removidos do código */
.floating-chat-btn {
    display: none !important;
}

a.nav__link[href="#chat"] {
    display: none !important;
}

.chat-section {
    display: none !important;
}

.etapas__info-box {
    display: none !important;
}
