/* Swiper Container */
.banner-swiper {
    margin-top: 193px;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

/* Slides */
.swiper-slide {
    position: relative;
    z-index: 998;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Customização dos botões de navegação */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Customização da paginação */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Efeito de fade para as imagens */
.swiper-slide img {
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .banner-swiper {
        margin-top: 74px;
        height: 200px;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}



.banner-estatico {
    margin-top: 193px;
    width: 100%;
    height: 890px;
    position: relative;
    overflow: hidden;
    background: #005CCE;
}

.banner-estatico-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-estatico-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 132px;
}

.banner-estatico-content {
    max-width: 1050px;
    color: white;
    text-align: left;
}

.banner-estatico-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.banner-estatico-logo-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    opacity: 1;
}

.banner-estatico-logo-icon::before {
    content: 'M';
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.banner-estatico-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

.banner-estatico-subtitle {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-estatico-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-estatico-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.banner-estatico-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: none;
}

.banner-estatico-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.banner-estatico-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.banner-estatico-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.banner-estatico-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Efeito de partículas decorativas */
.banner-estatico::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.banner-estatico-overlay {
    z-index: 2;
}

/* Responsividade */
@media (max-width: 1200px) {
    .banner-estatico {
        height: 700px;
        margin-top: 120px;
    }

    .banner-estatico-overlay {
        padding: 0 60px;
    }

    .banner-estatico-title {
        font-size: 3.2rem;
    }

    .banner-estatico-subtitle {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .banner-estatico {
        height: 600px;
        margin-top: 80px;
    }

    .banner-estatico-overlay {
        padding: 0 30px;
        text-align: center;
        justify-content: center;
    }

    .banner-estatico-content {
        text-align: left;
        max-width: 100%;
    }

    .banner-estatico-title {
        font-size: 2.5rem;
    }

    .banner-estatico-subtitle {
        font-size: 2rem;
    }

    .banner-estatico-description p {
        font-size: 1.1rem;
    }

    .banner-estatico-cta {
        flex-direction: column;
        gap: 15px;
    }

    .banner-estatico-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-estatico {
        /* height: 500px; */
        margin-top: 70px;
    }

    .banner-estatico-overlay {
        padding: 0 20px;
    }

    .banner-estatico-title {
        font-size: 2rem;
    }

    .banner-estatico-subtitle {
        font-size: 1.6rem;
    }

    .banner-estatico-description p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .banner-estatico-logo-icon {
        width: 50px;
        height: 50px;
    }

    .banner-estatico-logo-icon::before {
        font-size: 24px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-estatico-logo {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.banner-estatico-title {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.banner-estatico-subtitle {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.banner-estatico-description p {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.banner-estatico-cta {
    animation: fadeInUp 0.8s ease 1s both;
}



.welcome-section {
    background: linear-gradient(135deg, #005CCE 0%, #005CCE 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-title {
    font-size: 90px;
    line-height: 90px;
    text-transform: none;
    font-weight: 700;
    color: #97C6FF;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.welcome-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.welcome-text-secondary {
    font-size: 1.1rem;
    color: #e8f4fd;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}


.sobre-section {
    background: linear-gradient(135deg, #184E49 0%, #184E49 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.sobre-content {
    position: relative;
    z-index: 2;
}

.sobre-title {
    font-size: 90px;
    line-height: 90px;
    text-transform: none;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.sobre-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.sobre-text-secondary {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.educar-section {
    background: linear-gradient(135deg, #005CCE 0%, #005CCE 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.educar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.educar-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.educar-title {
    font-size: 70px;
    line-height: 70px;
    text-transform: none;
    font-weight: 700;
    color: #97C6FF;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.educar-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.educar-text-secondary {
    font-size: 1.1rem;
    color: #e8f4fd;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}


.educacao-section {
    background: linear-gradient(135deg, #184E49 0%, #184E49 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.educacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.educacao-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.educacao-title {
    font-size: 70px;
    line-height: 70px;
    text-transform: none;
    font-weight: 700;
    color: #EA8936;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.educacao-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.educacao-text-secondary {
    font-size: 1.1rem;
    color: #e8f4fd;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}


.fundamental-section {
    background: linear-gradient(135deg, #EB8D41 0%, #EB8D41 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.fundamental-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.fundamental-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

.fundamental-title {
    font-size: 70px;
    line-height: 70px;
    text-transform: none;
    font-weight: 700;
    color: #B13A01;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.fundamental-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.fundamental-text-secondary {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.valores-section {
    background-color: #FE6112;
    padding: 30px 0;
    color: #fff;
}

.valores-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.valores-title span {
    color: #fff;
}

.valores-section .row.align-items-center {
    align-items: stretch;
    /* Faz as colunas ficarem com mesma altura */
}

.valores-foto {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.valor-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.valor-box h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.valor-box p {
    font-size: 1rem;
    color: #f0f0f0;
}

.valor-box:hover {
    transform: translateY(-5px);
}

/* Responsivo */
@media (max-width: 768px) {
    .valores-title {
        font-size: 2rem;
    }

    .educar-content {
        padding-right: 0;
    }

    .educacao-content {
        padding-right: 0;
    }

    .fundamental-content {
        padding-right: 0;
    }
}

.imagem-section img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .imagem-section img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
}

.conteudo-section {
    display: flex;
    align-items: center;
    position: relative;
}

.conteudo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.conteudo-content {
    position: relative;
    z-index: 2;
    padding-right: 50px;
}

/* Adicione estas regras ao seu CSS existente */
@media (min-width: 992px) {
    #dividido-fase .container .row {
        position: relative;
    }

    .conteudo-content.sticky {
        position: sticky;
        top: 250px;
        /* Ajuste conforme necessário */
        z-index: 20;
        /* Garante que fique acima do conteúdo */
        transition: top 0.3s ease;
    }

    .educacao-content.sticky {
        position: sticky;
        top: 250px;
        /* Ajuste conforme necessário */
        z-index: 20;
        /* Garante que fique acima do conteúdo */
        transition: top 0.3s ease;
    }

    .fundamental-content.sticky {
        position: sticky;
        top: 250px;
        /* Ajuste conforme necessário */
        z-index: 20;
        /* Garante que fique acima do conteúdo */
        transition: top 0.3s ease;
    }

    /* Para melhor visualização durante rolagem */
    #dividido-fase .conteudo-text p {
        max-width: 95%;
    }

    /* Ajuste para quando o título fixo chegar no final */
    #dividido-fase .col-lg-6.order-2.order-lg-2 {
        position: relative;
    }
}

.conteudo-title {
    font-size: 70px;
    line-height: 75px;
    font-weight: 700;
    color: #B13A01;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.conteudo-text p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.conteudo-text-secondary {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.etapas-section {
    background-color: #fff;
    padding: 30px 0;
    color: #B13A01;
}

.etapas-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #B13A01;
}

.etapas-title span {
    color: #B13A01;
}

.etapas-section .row.align-items-center {
    align-items: stretch;
    /* Faz as colunas ficarem com mesma altura */
}

.etapas-foto {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.etapas-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.etapas-box h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.etapas-box p {
    font-size: 1rem;
    color: #000;
}

.etapas-box:hover {
    transform: translateY(-5px);
}

/* Responsivo */
@media (max-width: 768px) {
    .etapas-title {
        font-size: 2rem;
    }

    .conteudo-content {
        padding-right: 0;
    }
}


.btn-custom {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0 10px 10px 0;
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #FE6112 0%, #CB4301 100%);
    color: white;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #FE6112 0%, #CB4301 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: #87ceeb;
    border: 2px solid #87ceeb;
}

.btn-outline-custom:hover {
    background: #87ceeb;
    color: #3d5a91;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.3);
}

.image-container {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.main-image2 {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-color: #CB4301;
    border: 10px solid;
}

img.main-image2 {
    border-color: #CB4301;
}

.main-image2:hover {
    transform: scale(1.02);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.margin-top-150 {
    margin-top: 150px;
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .welcome-text p,
    .welcome-text-secondary {
        text-align: left;
    }

    .sobre-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .sobre-text p,
    .sobre-text-secondary {
        text-align: left;
    }

    .conteudo-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .conteudo-text p,
    .conteudo-text-secondary {
        text-align: left;
    }

    .educar-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .educar-text p,
    .educar-text-secondary {
        text-align: left;
    }

    .educacao-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .educacao-text p,
    .educacao-text-secondary {
        text-align: left;
    }

    .fundamental-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .fundamental-text p,
    .fundamental-text-secondary {
        text-align: left;
    }

    .margin-top-150 {
        margin-top: 50px;
    }

    .btn-custom {
        display: block;
        margin: 10px auto;
        text-align: center;
        width: 80%;
        max-width: 300px;
    }

    .welcome-section {
        padding: 2rem 0;
    }

    .educar-section {
        padding: 2rem 0;
    }

    .educacao-section {
        padding: 2rem 0;
    }

    .fundamental-section {
        padding: 2rem 0;
    }

    .sobre-section {
        padding: 2rem 0;
    }
}


@media (max-width: 1400px) {
    .welcome-title {
        font-size: 4rem;
        line-height: 4rem;
        text-align: left;
    }

    .jeito-conhecer-select h1 {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .welcome-text p,
    .welcome-text-secondary {
        text-align: left;
    }

    .sobre-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .sobre-text p,
    .sobre-text-secondary {
        text-align: left;
    }

    .conteudo-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .conteudo-text p,
    .conteudo-text-secondary {
        text-align: left;
    }

    .educar-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .educar-text p,
    .educar-text-secondary {
        text-align: left;
    }

    .educacao-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .educacao-text p,
    .educacao-text-secondary {
        text-align: left;
    }

    .fundamental-title {
        font-size: 3rem;
        line-height: 3rem;
        text-align: left;
    }

    .fundamental-text p,
    .fundamental-text-secondary {
        text-align: left;
    }

    .margin-top-150 {
        margin-top: 50px;
    }

    .btn-custom {
        display: block;
        margin: 10px auto;
        text-align: center;
        width: 80%;
        max-width: 300px;
    }

    .welcome-section {
        padding: 2rem 0;
    }

    .educar-section {
        padding: 2rem 0;
    }

    .educacao-section {
        padding: 2rem 0;
    }

    .fundamental-section {
        padding: 2rem 0;
    }

    .sobre-section {
        padding: 2rem 0;
    }
}

/* Efeito de hover nos botões com ripple */
.btn-custom {
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-custom span {
    position: relative;
    z-index: 1;
}

/* === SEÇÃO DE VÍDEO === */
.video-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 99;
    /*top: -34px;*/
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: all 0.3s ease;
}

.video-section:hover .video-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    cursor: pointer;
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #CB4301 0%, #CB4301 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-section:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.6);
}

.video-section:hover .play-button::before {
    opacity: 1;
}

.play-button i {
    color: white;
    font-size: 2.5rem;
    margin-left: 8px;
    /* Para centralizar visualmente o ícone play */
    position: relative;
    z-index: 1;
}

.video-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: titleAppear 0.8s ease-out 0.3s forwards;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.close-video:hover {
    opacity: 0.7;
}

/* Animações */
@keyframes titleAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 140, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0);
    }
}

/* Responsividade para a seção de vídeo */
@media (max-width: 768px) {
    .video-section {
        min-height: 60vh;
    }

    .video-title {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        min-height: 50vh;
    }

    .video-title {
        font-size: 1.8rem;
    }

    .play-button {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .video-modal-content {
        width: 95%;
    }

    .close-video {
        top: -40px;
        font-size: 1.5rem;
    }
}


.menu-curve-container {
    width: 100%;
    height: 15px;
    /* Altura reduzida para apenas a curva */
    margin-top: -1px;
    z-index: 999;
    pointer-events: none;
    position: relative;
}

.menu-curve-container svg {
    position: absolute;
    top: 15px;
    /* Posiciona a curva acima do container */
    left: 0;
    width: 100%;
    /* Altura suficiente para conter a curva */
}

@media (min-width: 1200px) {
    .navbar-nav {
        height: 50px;
    }
}

.navbar.shrink .logo-desktop img {
    height: 70px !important;
    margin-top: 5px !important;
}