/* ========== BANNER ========== */
.page-banner-proposta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-banner-proposta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%,透明 70%);
    border-radius: 50%;
}

.banner-etiqueta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.page-banner-proposta h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner-proposta p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========== SEÇÃO 1: FUNDAMENTAÇÃO ========== */
.fundamentacao {
    padding: 80px 0;
    background: #ffffff;
}

.fundamentacao-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.fundamentacao-texto {
    flex: 1;
}

.fundamentacao-texto h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.destaque-texto {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #3498db;
}

.fundamentacao-texto p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.pratica-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pratica-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pratica-lista li:hover {
    padding-left: 10px;
    color: #2c3e50;
}

.pratica-lista li:last-child {
    border-bottom: none;
}

.fundamentacao-imagem {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.fundamentacao-imagem img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.fundamentacao-imagem:hover img {
    transform: scale(1.05);
}

/* ========== SEÇÃO 2: UNIVERSO E BIOSFERA ========== */
.universo-biosfera {
    padding: 80px 0;
    background: #f8faf9;
}

.universo-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.universo-imagem {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.universo-imagem img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.universo-icone-flutuante {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.universo-texto {
    flex: 1;
}

.etiqueta-secao {
    display: inline-block;
    background: #e8f8f5;
    color: #1abc9c;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.universo-texto h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.universo-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.universo-texto p strong {
    color: #2c3e50;
}

/* ========== SEÇÃO 3: STEAM ========== */
.steam-infancia {
    padding: 80px 0;
    background: #ffffff;
}

.steam-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.steam-texto {
    flex: 1;
}

.etiqueta-steam {
    background: #ebf5fb;
    color: #3498db;
}

.steam-texto h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.steam-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.steam-texto p strong {
    color: #2c3e50;
}

.steam-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.steam-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.steam-item:hover {
    background: #ebf5fb;
    transform: translateX(5px);
}

.steam-icone {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.steam-imagem {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.steam-imagem img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.steam-imagem:hover img {
    transform: scale(1.05);
}

/* ========== SEÇÃO 4: APRENDIZAGEM ATIVA ========== */
.aprendizagem-ativa {
    padding: 80px 0;
    background: #faf9f7;
}

.aprendizagem-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.aprendizagem-imagem {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.aprendizagem-imagem img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.aprendizagem-texto {
    flex: 1;
}

.etiqueta-learning {
    background: #fef9e7;
    color: #f39c12;
}

.aprendizagem-texto h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.destaque {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: italic;
}

.aprendizagem-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aprendizagem-texto p strong {
    color: #2c3e50;
}

.btn-proposta-pedagogica {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.btn-proposta-pedagogica:hover {
    background: transparent;
    color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-proposta-pedagogica svg {
    transition: transform 0.3s ease;
}

.btn-proposta-pedagogica:hover svg {
    transform: translateX(5px);
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .page-banner-proposta h1 {
        font-size: 2.5rem;
    }
    
    .fundamentacao-wrapper,
    .universo-wrapper,
    .steam-wrapper,
    .aprendizagem-wrapper {
        gap: 40px;
    }
    
    .fundamentacao-texto h2,
    .universo-texto h2,
    .steam-texto h2,
    .aprendizagem-texto h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-banner-proposta {
        padding: 70px 0 50px;
    }
    
    .page-banner-proposta h1 {
        font-size: 2rem;
    }
    
    .fundamentacao-wrapper,
    .steam-wrapper {
        flex-direction: column-reverse;
    }
    
    .universo-wrapper,
    .aprendizagem-wrapper {
        flex-direction: column;
    }
    
    .fundamentacao-imagem img,
    .universo-imagem img,
    .steam-imagem img,
    .aprendizagem-imagem img {
        height: 300px;
    }
    
    .universo-icone-flutuante {
        display: none;
    }
    
    .steam-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-proposta-pedagogica {
        width: 100%;
        justify-content: center;
    }
    
    .destaque-texto {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .page-banner-proposta h1 {
        font-size: 1.8rem;
    }
    
    .fundamentacao-texto h2,
    .universo-texto h2,
    .steam-texto h2,
    .aprendizagem-texto h2 {
        font-size: 1.6rem;
    }
    
    .pratica-lista li {
        font-size: 0.95rem;
    }
}