/* ============================================
   ESTILOS PARA PÁGINAS INTERNAS
   Responsividade e Layout
   ============================================ */

/* Página Sobre Nós */
#inner-headline {
    background: var(--cor-primaria, #0f7a4f);
    color: white;
    padding: 40px 0;
    margin-top: 0;
}

#inner-headline .pageTitle {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

#content {
    padding: 60px 0;
}

#content .about h2 {
    color: var(--cor-primaria, #0f7a4f);
    font-size: 2rem;
    margin-bottom: 20px;
}

#content .about p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--cor-texto-claro, #666);
}

/* Página Soluções */
.service-v1 {
    margin-bottom: 40px;
}

.service-v1 img {
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-v1 h2 {
    color: var(--cor-primaria, #0f7a4f);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-v1 p {
    line-height: 1.8;
    color: var(--cor-texto-claro, #666);
}

/* Página Contato */
.contact-form {
    margin-top: 20px;
}

/* Responsividade para páginas internas */
@media (max-width: 768px) {
    #inner-headline {
        padding: 30px 0;
    }
    
    #inner-headline .pageTitle {
        font-size: 1.8rem;
    }
    
    #content {
        padding: 40px 0;
    }
    
    #content .about h2 {
        font-size: 1.6rem;
    }
    
    .service-v1 {
        margin-bottom: 30px;
    }
    
    .service-v1 h2 {
        font-size: 1.5rem;
    }
    
    .service-v1 img {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    #inner-headline .pageTitle {
        font-size: 1.5rem;
    }
    
    #content .about h2 {
        font-size: 1.4rem;
    }
    
    .service-v1 h2 {
        font-size: 1.3rem;
    }
}



